login
Header Space

 
 

Mailing list archives

Search results

Found 29 matching messages (0.059 seconds). Page 1 of 2.

Re: FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync.

... PM > To: Andrew Morton > Cc: linux-raid@vger.kernel.org; linux-kernel@vger.kernel.org; K.Tanaka > Subject: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read > error during resync. > > diff . ...

linux-kernel - John Z. - Mar 24 2008 - 14:49

Re: FW: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read error during resync.

... > To: Andrew Morton > > Cc: linux-raid@vger.kernel.org; linux-kernel@vger.kernel.org; K.Tanaka > > Subject: [PATCH 008 of 9] md: Fix possible raid1/raid10 deadlock on read > > error during resync. > > > ...

linux-kernel - Neil Brown - Mar 24 2008 - 23:41

[RFC:Patch: 008/008](memory hotplug) remove_pgdat() function

remove_pgdat() is main code for pgdat removing. remove_pgdat() should be called for node-hotremove, but nothing calls it. Sysfs interface (or anything else?) will be necessary. And current offline_pages() has to be update zonelist and N_HIGH_MEMORY

linux-kernel - Yasunori Goto - Jul 31 2008 - 08:04

Re: [RFC:Patch: 008/008](memory hotplug) remove_pgdat() function

On Thu, 2008-07-31 at 21:04 +0900, Yasunori Goto wrote: > +int remove_pgdat(int nid) > +{ > + struct pglist_data *pgdat = NODE_DATA(nid); > + > + if (cpus_busy_on_node(nid)) > + return -EBUSY; > + > + if (sections_busy_on_node(pgdat)) > +

linux-kernel - Peter Zijlstra - Sep 6 2008 - 10:21

Re: [PATCH 008 of 8] knfsd: nfsd4: don't delegate files that have had conflicts

... wrote: > The authorship information got lost on these last two patches--both were > originally by Meelap Shah . > ... line?) Hm, no, actually I think the same happened to patch 1 (from Marc Eshel) and 4 (from Benny Halevy), neither ...

linux-kernel - J. Bruce Fields - Jun 21 2007 - 12:33

[PATCH 008 of 20] knfsd: nfsd: set rq_client to ip-address-determined-domain

... the rq_client field. After the preceding patch that stored the pseudoflavor in ... mountd. In fact, for this first patch, we always use the "gss/ ... the auth_gss case, and this patch on its own makes no ... will be left to later patches. Note on idmap: I'm ...

linux-kernel - NeilBrown - Jul 9 2007 - 22:24

Re: [PATCH 008 of 29] md: Close race in md_probe

... name in use\n", > disk->disk_name); Even with this patch, md_probe() calls mddev_find() without holding the disks_mutex. Is this OK? If it isn't, something like the patch below might be necessary. Andre --- =46rom: Andre Noll ...

linux-kernel - Andre Noll - Jun 27 2008 - 08:21

Re: [PATCH 008 of 29] md: Close race in md_probe

... children to it. ... > > Even with this patch, md_probe() calls mddev_find() without holding > ... it isn't, something like the patch > below might be necessary. Thanks for ... this and asking. No, the below patch is not necessary. mddev_find gets a ...

linux-kernel - Neil Brown - Jun 27 2008 - 19:38

[PATCH 008 of 14] knfsd: SUNRPC: Provide room in svc_rqst for larger addresses

From: Chuck Lever Expand the rq_addr field to allow it to contain larger addresses. Specifically, we replace a 'sockaddr_in' with a 'sockaddr_storage', then everywhere the 'sockaddr_in' was referenced, we use instead an

linux-kernel - NeilBrown - Feb 2 2007 - 00:40

[PATCH 008 of 9] knfsd: nfsd4: acls: avoid unnecessary denies

From: J. Bruce Fields We're inserting deny's between some ACEs in order to enforce posix draft acl semantics which prevent permissions from accumulating across entries in an acl. That's fine, but we're doing that by

linux-kernel - NeilBrown - Feb 12 2007 - 19:45

[patch 008/101] ide: fix drive side 80c cable check

eighty_ninty_three() had word 93 validitity check but not the 80c bit test itself (bit 12). This increases the chance of incorrect wire detection especially because host side cable detection is often unreliable and we sometimes soley depend on drive

linux-kernel - Greg KH - Mar 7 2007 - 13:10

[PATCH 008 of 8] knfsd: Avoid Oops if buggy userspace performs confusing filehandle->dentry mapping.

When a lookup request arrives, nfsd uses information provided by userspace (mountd) to find the right filesystem. It then assumes that the same filehandle type as the incoming filehandle can be used to create an outgoing filehandle. However if

linux-kernel - NeilBrown - May 6 2007 - 20:36

[PATCH 008 of 8] knfsd: exportfs: split out reconnecting a dentry from find_exported_dentry.

... dentry tree in find_exported_dentry, that can be called both for the dentry we're looking for or it's parent directory. This patch splits the subfunctionality out into a separate helper to make the code more readable and document it's intent. As a ...

linux-kernel - NeilBrown - May 15 2007 - 03:16

[PATCH 008 of 8] knfsd: nfsd4: don't delegate files that have had conflicts

From: "J. Bruce Fields" One more incremental delegation policy improvement: don't give out a delegation on a file if conflicting access has previously required that a delegation be revoked on that file. (In practice we'll

linux-kernel - NeilBrown - Jun 21 2007 - 00:31

Re: [PATCH 008 of 8] knfsd: nfsd4: don't delegate files that have had conflicts

The authorship information got lost on these last two patches--both were originally by Meelap Shah . (The problem may have been that I had a From: line for him but not a Signed-off-by: line?) --b. - To unsubscribe from this list ...

linux-kernel - J. Bruce Fields - Jun 21 2007 - 12:28

[PATCH 008 of 35] Introduce bi_iocnt to count requests sharing the one bio.

This count is currently only used by raid5 (which used to use bi_phys_segments), but it will be used more widely in future. generic_make_request sets the count to 1, and bio_endio decrements it and calls bi_end_io only when it hits zero. A

linux-kernel - NeilBrown - Jul 30 2007 - 22:16

Re: [PATCH 008 of 35] Introduce bi_iocnt to count requests sharing the one bio.

Hello, On Tue, Jul 31, 2007 at 12:16:29PM +1000, NeilBrown wrote: > static int ordered_bio_endio(struct request *rq, struct bio *bio, > int error) > { > struct request_queue *q = rq->q; > - bio_end_io_t *endio; > - void *private; >

linux-kernel - Tejun Heo - Aug 1 2007 - 11:49

[PATCH 008/104] KVM: Trivial: Comment spelling may escape grep

From: Rusty Russell Speling error in comment. Signed-off-by: Rusty Russell Signed-off-by: Avi Kivity --- drivers/kvm/x86_emulate.c | 2 +- 1 files changed, 1 insertions(+), 1

linux-kernel - Avi Kivity - Sep 17 2007 - 04:30

[PATCH 008/149] USB: r8a66597-hcd: host controller driver for R8A66597

... a USB device more than 10. Then this device is not compatible with EHCI and/or OHCI, I wrote driver support patch based on sl811 code. This driver has the following unique specifications: - Implement transfer timeout to share one pipe with plural ...

linux-usb-devel - Greg Kroah-Hartman - Jul 12 2007 - 19:40

[PATCH 008/142] USB: Storage: usbat_check_status(): fix check-after-use

... checker spotted that we have already oops'ed if "us" was NULL. Since "us" can't be NULL in the only caller this patch removes the NULL check. Signed-off-by: Adrian Bunk Signed-off-by: Matthew Dharm ...

linux-usb-devel - Greg Kroah-Hartman - Oct 12 2007 - 18:17

speck-geostationary