Found 29 matching messages (0.059 seconds). Page 1 of 2.
... 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
... > 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
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
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
... wrote:
> The authorship information got lost on these last two patches--both were
> originally by Meelap Shah
linux-kernel - J. Bruce Fields - Jun 21 2007 - 12:33
... 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
... 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
... 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
From: Chuck Lever
linux-kernel - NeilBrown - Feb 2 2007 - 00:40
From: J. Bruce Fields
linux-kernel - NeilBrown - Feb 12 2007 - 19:45
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
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
... 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
From: "J. Bruce Fields"
linux-kernel - NeilBrown - Jun 21 2007 - 00:31
The authorship information got lost on these last two patches--both were
originally by Meelap Shah
linux-kernel - J. Bruce Fields - Jun 21 2007 - 12:28
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
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
From: Rusty Russell
linux-kernel - Avi Kivity - Sep 17 2007 - 04:30
... 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
... 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
linux-usb-devel - Greg Kroah-Hartman - Oct 12 2007 - 18:17