search for: 0900

Displaying 20 results from an estimated 1619 matches for "0900".

Did you mean: 0800
2013 Jan 07
2
plot x-axis DateTime NOT evenly spaced
R-64 latest Hi. I am trying to plot a set of csv data, which looks like > head(interval) date inteval 1 2012-07-01 00:57:54 +0900 156 2 2012-07-01 01:07:41 +0900 587 3 2012-07-01 01:09:31 +0900 110 4 2012-07-01 01:18:42 +0900 551 5 2012-07-01 01:39:01 +0900 1219 6 2012-07-01 01:40:40 +0900 99 as you can see, more than one event happens each day, and they are not evenly spaced. Obviously hours, minute...
2005 Jan 04
0
[PATCH] BUG on error handlings in Ext3 under I/O failure condition
...e above problem was solved. Please consider applying this patch to the mainline kernels. Signed-off-by: Hisashi Hifumi <hifumi.hisashi at lab.ntt.co.jp> diff -Nru linux-2.6.10-bk6/fs/buffer.c linux-2.6.10-bk6_fix/fs/buffer.c --- linux-2.6.10-bk6/fs/buffer.c 2004-12-25 06:34:58.000000000 +0900 +++ linux-2.6.10-bk6_fix/fs/buffer.c 2005-01-04 19:58:48.000000000 +0900 @@ -311,10 +311,10 @@ { struct inode * inode = dentry->d_inode; struct super_block * sb; - int ret; + int ret, err; /* sync the inode to buffers */ - write_inode_now(inode, 0); + ret = write_inode_now(inode, 0);...
2011 Mar 23
0
[PATCH] Btrfs: cleanup some BUG_ON()
...| 6 ++++-- fs/btrfs/transaction.c | 12 +++++++++--- fs/btrfs/tree-log.c | 15 +++++++++------ 9 files changed, 54 insertions(+), 23 deletions(-) diff -urNp linux-2.6.38/fs/btrfs/ctree.c linux-2.6.38.new/fs/btrfs/ctree.c --- linux-2.6.38/fs/btrfs/ctree.c 2011-03-15 10:20:32.000000000 +0900 +++ linux-2.6.38.new/fs/btrfs/ctree.c 2011-03-23 11:28:09.000000000 +0900 @@ -3840,7 +3840,8 @@ int btrfs_insert_item(struct btrfs_trans unsigned long ptr; path = btrfs_alloc_path(); - BUG_ON(!path); + if (!path) + return -ENOMEM; ret = btrfs_insert_empty_item(trans, root, path, cpu_key, d...
2007 Sep 20
2
Re: [PATCH] kexec/kdump: statically allocate xen_phys_cpus
You posted to xen-ia64-devel & xen-ia64 (deleted the wrong word?) rather than xen-devel so I added that to the CC. On Thu, 2007-09-20 at 13:38 +0900, Simon Horman wrote: > On IA64 alloc_bootmem_low() can''t be called this early. > > Before alloc_bootmem_low() can be called init_bootmem(), which is called in > find_memory(). However xen_machine_kexec_setup_resources() is indirectly > called earlier on in find_memory(). C...
2008 Mar 31
3
[PATCH 3/4] extract vmcoreinfo from /proc/vmcore for Xen
This patch is for kexec-tools-testing-20080324. --- kexec/crashdump.c.org 2008-03-25 11:51:51.000000000 +0900 +++ kexec/crashdump.c 2008-03-26 09:29:20.000000000 +0900 @@ -110,10 +110,8 @@ return 0; } -/* Returns the physical address of start of crash notes buffer for a kernel. */ -int get_kernel_vmcoreinfo(uint64_t *addr, uint64_t *len) +static int get_vmcoreinfo(char *kdump_info, uint64_t *addr, uin...
2005 Sep 09
7
[PATCH 0/6] jbd cleanup
The following 6 patches cleanup the jbd code and kill about 200 lines. First of 4 patches can apply to 2.6.13-git8 and 2.6.13-mm2. The rest of them can apply to 2.6.13-mm2. fs/jbd/checkpoint.c | 179 +++++++++++-------------------------------- fs/jbd/commit.c | 101 ++++++++++-------------- fs/jbd/journal.c | 11 +- fs/jbd/revoke.c | 158
2006 Mar 16
1
Patch: patches for smbmount opton documentation ( smbmount.8.xml )
...ve using mount.cifs is right way on latest Linux. But one of the implementation smb_clients tools take this lazy option. Is it right way to change of man page of smbmount(8)? or What should I do? thanks -nagata --- samba-3.0.0/docs/docbook/manpages/smbmount.8.xml 2003-08-16 05:39:28.000000000 +0900 +++ samba-3.0.0.new/docs/docbook/manpages/smbmount.8.xml 2006-03-16 17:52:21.000000000 +0900 @@ -228,6 +228,15 @@ </para></listitem> </varlistentry> + <varlistentry> + <term>unicode</term> + <listitem><para>use unicode when communicating with server...
2008 Dec 25
0
[PATCH 2/4] dom0 linux: Add "guestdev=" boot parameter.
...o reassign page-aligned memory resource and bind PCI back driver. Thanks, -- Yuji Shimada. Signed-off-by: Yuji Shimada <shimada-yxb@necst.nec.co.jp> diff -r 4769a6db78f5 -r fcefb8852878 Documentation/kernel-parameters.txt --- a/Documentation/kernel-parameters.txt Thu Dec 25 10:37:52 2008 +0900 +++ b/Documentation/kernel-parameters.txt Thu Dec 25 10:43:34 2008 +0900 @@ -1240,6 +1240,16 @@ bootloader. This is currently used on IXP2000 systems where the bus has to be configured a certain way for adjunct CPUs. + reassign_resources + Use guestdev parameter to reassign devic...
2007 Aug 28
6
[PATCH] Make XEN_DOMCTL_destroydomain hypercall continuable.
...able Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Keir Fraser <keir@xensource.com> diff -r 58d131f1fb35 -r 2c9db26f1d0e tools/libxc/xc_domain.c --- a/tools/libxc/xc_domain.c Fri Aug 24 16:32:56 2007 +0100 +++ b/tools/libxc/xc_domain.c Tue Aug 28 13:06:41 2007 +0900 @@ -55,10 +55,17 @@ int xc_domain_destroy(int xc_handle, int xc_domain_destroy(int xc_handle, uint32_t domid) { + int ret; DECLARE_DOMCTL; domctl.cmd = XEN_DOMCTL_destroydomain; domctl.domain = (domid_t)domid; - return do_domctl(xc_handle, &domctl);...
2015 Oct 28
2
[PATCH v3 0/3] virtio DMA API core stuff
On Wed, Oct 28, 2015 at 05:36:53PM +0900, Benjamin Herrenschmidt wrote: > On Wed, 2015-10-28 at 16:40 +0900, Christian Borntraeger wrote: > > We have discussed that at kernel summit. I will try to implement a dummy dma_ops for > > s390 that does 1:1 mapping and Ben will look into doing some quirk to handle "old" &...
2010 Nov 27
0
CEBA-2010:0900 CentOS 5 i386 thunderbird Update
CentOS Errata and Bugfix Advisory 2010:0900 Upstream details at : https://rhn.redhat.com/errata/RHBA-2010-0900.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 5c69a7bc16453026ec7caa85216f0c9d thunderbird-2.0.0.24-12.el5.centos.i386.rpm Source: 32e3dae9627ae0b4caa...
2010 Nov 27
0
CEBA-2010:0900 CentOS 5 x86_64 thunderbird Update
CentOS Errata and Bugfix Advisory 2010:0900 Upstream details at : https://rhn.redhat.com/errata/RHBA-2010-0900.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: 11960f6689f559620bcedc18beae46a3 thunderbird-2.0.0.24-12.el5.centos.x86_64.rpm Source: 32e3dae9627ae0b...
2011 Jun 28
0
CEBA-2011:0900 CentOS 5 i386 cman Update
CentOS Errata and Bugfix Advisory 2011:0900 Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0900.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 1de9a4f046080fcd05d4f228c3fec615 cman-2.0.115-68.el5_6.4.i386.rpm 19c77bd0034d381df97ff1317e209514 cman-...
2011 Jun 28
0
CEBA-2011:0900 CentOS 5 x86_64 cman Update
CentOS Errata and Bugfix Advisory 2011:0900 Upstream details at : https://rhn.redhat.com/errata/RHBA-2011-0900.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: 3f9194ddbeaac054e367e874d3170038 cman-2.0.115-68.el5_6.4.x86_64.rpm 9fcc6ca0ca092a28f9311064ec527831 c...
2012 Feb 26
0
Served asset /application.css - 304 Not Modified
...- 304 Not Modified”. How can I fix something if I change the settings? I''ve run that is less than server: rails new myapp cd myapp rake db:migrate rails s client: http://localhost:3000/books warning: Started GET "/assets/books.css?body=1" for 127.0.0.1 at 2012-02-26 14:48:35 +0900 Served asset /books.css - 304 Not Modified (5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-26 14:48:35 +0900 Served asset /application.css - 304 Not Modified (4ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2012-02-26 14:48:35 +09...
2013 Jun 06
0
CEBA-2013:0900 CentOS 6 kexec-tools Update
CentOS Errata and Bugfix Advisory 2013:0900 Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-0900.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 7cbe680d3847a124a70ce2c9a459ccde40c8186d1824830d5b361697b8672871 kexec-tools-2.0.0-258.el6_4.2.i686.rp...
2015 Oct 28
2
[PATCH v3 0/3] virtio DMA API core stuff
On Wed, Oct 28, 2015 at 05:36:53PM +0900, Benjamin Herrenschmidt wrote: > On Wed, 2015-10-28 at 16:40 +0900, Christian Borntraeger wrote: > > We have discussed that at kernel summit. I will try to implement a dummy dma_ops for > > s390 that does 1:1 mapping and Ben will look into doing some quirk to handle "old" &...
2003 Sep 05
1
new option suggestion '--backup-only'
...r convinience. How about merging it? Regards, ----------------------- Takeru Komoriya komoriya@paken.org http://www.paken.org/ =================================================================== diff -ur rsync/backup.c rsync-backuponly/backup.c --- rsync/backup.c 2003-08-22 09:30:46.000000000 +0900 +++ rsync-backuponly/backup.c 2003-09-02 15:29:03.000000000 +0900 @@ -25,6 +25,7 @@ extern int backup_dir_len; extern char *backup_suffix; extern char *backup_dir; +extern int backup_only; extern int am_root; extern int preserve_devices; @@ -133,21 +134,26 @@ int keep_trying = 4; int kee...
2007 Jun 11
5
[PATCH][Linux] gnttab: make dma address conversion logic of gnttab dma arch specific.
...ready existing x86 logic. PATCHNAME: make_dma_address_conversion_logic_of_gnttab_dma_arch_specific diff -r d5e0eb7dd069 -r 69e2dd4e06c4 arch/i386/kernel/pci-dma-xen.c --- a/arch/i386/kernel/pci-dma-xen.c Sun Jun 10 19:50:32 2007 +0100 +++ b/arch/i386/kernel/pci-dma-xen.c Mon Jun 11 16:13:06 2007 +0900 @@ -19,6 +19,7 @@ #include <asm/swiotlb.h> #include <asm/tlbflush.h> #include <asm-i386/mach-xen/asm/swiotlb.h> +#include <asm-i386/mach-xen/asm/gnttab_dma.h> #include <asm/bug.h> #ifdef __x86_64__ @@ -58,6 +59,12 @@ static int __init pci_iommu_init(void) /* Mu...
2015 May 28
0
X-UID in mail header is removed?
...6 . RETR 1 +OK 786 octets Return-Path: <root at localhost.localdomain> Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.13.1/8.13.1) with ESMTP id t4S4dBcu006057 for <test at localhost.localdomain>; Thu, 28 May 2015 13:39:11 +0900 Received: (from root at localhost) by localhost.localdomain (8.13.1/8.13.1/Submit) id t4S4dB6u006056 for test; Thu, 28 May 2015 13:39:11 +0900 Date: Thu, 28 May 2015 13:39:11 +0900 From: root <root at localhost.localdomain> Message-Id: <201505280439.t4S4dB6u006056 at localhost.lo...