login
Login
/
Register
Search
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
September
»
19
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
view
thread
!MAILaRCHIVE_VOTE_RePLACE
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From:
Peter Zijlstra <a.p.zijlstra@...>
To: Hugh Dickins <hugh@...>
Cc: Andy Whitcroft <apw@...>, Andrew Morton <akpm@...>, <linux-kernel@...>, Fengguang Wu <wfg@...>, <spamtrap@...>
Subject:
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
Date: Wednesday, September 19, 2007 - 4:44 pm
On Wed, 19 Sep 2007 21:03:19 +0100 (BST) Hugh Dickins <hugh@veritas.com> wrote:
quoted text
> On Wed, 19 Sep 2007, Andy Whitcroft wrote: > > Seems I have a case of a largish i386 NUMA (NUMA-Q) which has a mkfs > > stuck in a 'D' wait: > > > > ======================= > > mkfs.ext2 D c10220f4 0 6233 6222 > > [<c12194da>] io_schedule_timeout+0x1e/0x28 > > [<c10454b4>] congestion_wait+0x62/0x7a > > [<c10402af>] get_dirty_limits+0x16a/0x172 > > [<c104040b>] balance_dirty_pages+0x154/0x1be > > [<c103bda3>] generic_perform_write+0x168/0x18a > > [<c103be38>] generic_file_buffered_write+0x73/0x107 > > [<c103c346>] __generic_file_aio_write_nolock+0x47a/0x4a5 > > [<c103c3b9>] generic_file_aio_write_nolock+0x48/0x9b > > [<c105d2d6>] do_sync_write+0xbf/0xfc > > [<c105d3a0>] vfs_write+0x8d/0x108 > > [<c105d4c3>] sys_write+0x41/0x67 > > [<c100260a>] syscall_call+0x7/0xb > > ======================= > > [edited out some bogus lines from stale stack] > > > This machine and others have run numerous test runs on this kernel and > > this is the first time I've see a hang like this. > > I've been seeing something like that on 4-way PPC64: in my case I've > shells hanging in D state trying to append to kernel build log on ext3 > (the builds themselves going on elsewhere, in tmpfs): one of the shells > holding i_mutex and stuck doing congestion_waits from balance_dirty_pages. > > > I wonder if this is the ultimate cause of the couple of mainline hangs > > which were seen, but not diagnosed. > > My *guess* is that this is peculiar to 2.6.23-rc6-mm1, and from Peter's > mm-per-device-dirty-threshold.patch. printks showed bdi_nr_reclaimable > 0, bdi_nr_writeback 24, bdi_thresh 1 in balance_dirty_pages (though I've > not done enough to check if those really correlate with the hangs), > and I'm wondering if the bdi_stat_sum business is needed on the > !nr_reclaimable path.
FWIW my tired brain seems to think it the !nr_reclaimable path needs it just the same. So this change seems to make sense for now :-)
quoted text
> So I'm running now with the patch below, good so far, but can't judge > until tomorrow whether it has actually addressed the problem seen. > > Not-yet-Signed-off-by: Hugh Dickins <hugh@veritas.com> > --- > mm/page-writeback.c | 53 +++++++++++++++++++----------------------- > 1 file changed, 24 insertions(+), 29 deletions(-) > > --- 2.6.23-rc6-mm1/mm/page-writeback.c 2007-09-18 12:28:25.000000000 +0100 > +++ linux/mm/page-writeback.c 2007-09-19 20:00:46.000000000 +0100 > @@ -379,7 +379,7 @@ static void balance_dirty_pages(struct a > bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE); > bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK); > if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh) > - break; > + break; > > if (!bdi->dirty_exceeded) > bdi->dirty_exceeded = 1; > @@ -392,39 +392,34 @@ static void balance_dirty_pages(struct a > */ > if (bdi_nr_reclaimable) { > writeback_inodes(&wbc); > - > + pages_written += write_chunk - wbc.nr_to_write; > get_dirty_limits(&background_thresh, &dirty_thresh, > &bdi_thresh, bdi); > + } > > - /* > - * In order to avoid the stacked BDI deadlock we need > - * to ensure we accurately count the 'dirty' pages when > - * the threshold is low. > - * > - * Otherwise it would be possible to get thresh+n pages > - * reported dirty, even though there are thresh-m pages > - * actually dirty; with m+n sitting in the percpu > - * deltas. > - */ > - if (bdi_thresh < 2*bdi_stat_error(bdi)) { > - bdi_nr_reclaimable = > - bdi_stat_sum(bdi, BDI_RECLAIMABLE); > - bdi_nr_writeback = > - bdi_stat_sum(bdi, BDI_WRITEBACK); > - } else { > - bdi_nr_reclaimable = > - bdi_stat(bdi, BDI_RECLAIMABLE); > - bdi_nr_writeback = > - bdi_stat(bdi, BDI_WRITEBACK); > - } > + /* > + * In order to avoid the stacked BDI deadlock we need > + * to ensure we accurately count the 'dirty' pages when > + * the threshold is low. > + * > + * Otherwise it would be possible to get thresh+n pages > + * reported dirty, even though there are thresh-m pages > + * actually dirty; with m+n sitting in the percpu > + * deltas. > + */ > + if (bdi_thresh < 2*bdi_stat_error(bdi)) { > + bdi_nr_reclaimable = bdi_stat_sum(bdi, BDI_RECLAIMABLE); > + bdi_nr_writeback = bdi_stat_sum(bdi, BDI_WRITEBACK); > + } else if (bdi_nr_reclaimable) { > + bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE); > + bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK); > + } > > - if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh) > - break; > + if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh) > + break; > + if (pages_written >= write_chunk) > + break; /* We've done our duty */ > > - pages_written += write_chunk - wbc.nr_to_write; > - if (pages_written >= write_chunk) > - break; /* We've done our duty */ > - } > congestion_wait(WRITE, HZ/10); > } >
-
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 4:18 am)
[-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_input...
, WANG Cong
, (Sat Sep 22, 11:01 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, roel
, (Sun Sep 23, 6:13 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, Marcel Holtmann
, (Mon Sep 24, 3:09 am)
[Resend][-mm Patch] net/bluetooth/hidp/core.c: Make hidp_set...
, WANG Cong
, (Sun Sep 23, 10:50 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, WANG Cong
, (Sun Sep 23, 10:38 pm)
[BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sat Sep 22, 9:42 pm)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Andrew Morton
, (Sun Sep 23, 12:22 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sun Sep 23, 1:30 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Andrew Morton
, (Sun Sep 23, 1:35 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sun Sep 23, 1:53 am)
[PATCH -mm] iseries_veth: Kill unused variable
, Satyam Sharma
, (Sat Sep 22, 3:55 am)
[PATCH -mm] mv643xx_eth: Remove redundant multiple initializ...
, Satyam Sharma
, (Sat Sep 22, 3:54 am)
[PATCH] Remove broken netfilter binary sysctls from bridging...
, Joseph Fannin
, (Thu Sep 20, 10:05 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Fri Sep 21, 12:21 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Mon Sep 24, 12:55 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Tue Sep 25, 10:03 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 10:26 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Tue Sep 25, 12:38 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Stephen Hemminger
, (Mon Sep 24, 4:14 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 12:07 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Stephen Hemminger
, (Tue Sep 25, 12:12 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 12:22 pm)
Build failure on ppc64 drivers/block/ps3disk.c
, Mel Gorman
, (Thu Sep 20, 9:25 am)
2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Thu Sep 20, 9:37 am)
[PATCH -mm] pasemi_mac: Build fix after recent netdev stats ...
, Satyam Sharma
, (Sat Sep 22, 3:40 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 3:25 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:54 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Mel Gorman
, (Mon Sep 24, 7:12 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:51 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:50 am)
Re: Build failure on ppc64 drivers/block/ps3disk.c
, Jens Axboe
, (Thu Sep 20, 9:32 am)
2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_scc.c
, Mel Gorman
, (Thu Sep 20, 9:13 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Alan Cox
, (Thu Sep 20, 10:09 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Satyam Sharma
, (Fri Sep 21, 10:50 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Jeff Garzik
, (Tue Sep 25, 11:39 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Mel Gorman
, (Mon Sep 24, 7:01 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Kamalesh Babulal
, (Thu Sep 20, 11:45 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Mel Gorman
, (Thu Sep 20, 11:14 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 4:41 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Pavel Emelyanov
, (Thu Sep 20, 4:59 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 5:12 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 1:08 pm)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Serge E. Hallyn
, (Mon Sep 24, 12:00 am)
Re: 2.6.23-rc6-mm1
, Joseph Fannin
, (Wed Sep 19, 7:58 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 8:09 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Wed Sep 19, 7:02 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 3:20 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Thu Sep 20, 4:25 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 8:53 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 7:24 pm)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Wed Sep 19, 7:44 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 8:06 pm)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 12:43 am)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Thu Sep 20, 2:11 am)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 1:36 pm)
Re: 2.6.23-rc6-mm1
, Alessandro Zummo
, (Thu Sep 20, 4:51 am)
Re: 2.6.23-rc6-mm1
, Kay Sievers
, (Thu Sep 20, 3:54 am)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 12:15 pm)
Re: 2.6.23-rc6-mm1
, Chuck Ebbert
, (Wed Sep 19, 7:28 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Wed Sep 19, 7:55 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 3:10 pm)
2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Andy Whitcroft
, (Wed Sep 19, 12:43 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Hugh Dickins
, (Wed Sep 19, 4:03 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Wed Sep 19, 4:44 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Hugh Dickins
, (Thu Sep 20, 7:31 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Fri Sep 21, 9:55 pm)
Re: 2.6.23-rc6-mm1 -- ipg.c don't compile on i386 with CONFI...
, trem
, (Sun Sep 23, 10:19 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Sat Sep 22, 9:16 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Sat Sep 22, 9:20 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Sun Sep 23, 9:02 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Sun Sep 23, 11:01 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Mon Sep 24, 3:35 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Mon Sep 24, 4:12 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Thu Sep 20, 8:15 am)
X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 7:43 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 7:53 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 10:59 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 3:10 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Wed Sep 19, 3:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 9:42 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Matt Mackall
, (Thu Sep 20, 6:06 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:16 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 1:30 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 3:33 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:38 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:43 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Sun Sep 23, 11:25 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Mon Sep 24, 2:06 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Mon Sep 24, 3:37 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Mon Sep 24, 4:10 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:54 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Thu Sep 20, 7:03 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Matt Mackall
, (Thu Sep 20, 7:31 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:07 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Thu Sep 20, 7:44 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:18 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 10:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 3:19 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 8:18 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 3:46 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Wed Sep 19, 3:54 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 3:57 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 9:51 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 3:24 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Thu Sep 20, 3:33 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Zhenyu Wang
, (Thu Sep 20, 5:24 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 6:10 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Zhenyu Wang
, (Thu Sep 20, 9:27 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Wed Sep 19, 4:32 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 4:47 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Thu Sep 20, 9:17 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Thu Sep 20, 6:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 4:01 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 5:42 pm)
2.6.23-rc6-mm1 -- powerpc pSeries_log_error panic in rtas_ca...
, Andy Whitcroft
, (Wed Sep 19, 5:36 am)
2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Wed Sep 19, 5:28 am)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Sam Ravnborg
, (Wed Sep 19, 1:44 pm)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Tue Sep 25, 9:40 am)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Segher Boessenkool
, (Wed Sep 19, 12:36 pm)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Wed Sep 19, 12:52 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Tue Sep 18, 5:45 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Wed Sep 19, 4:27 am)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Wed Sep 19, 12:43 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Wed Sep 19, 2:02 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Thu Sep 20, 9:35 am)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Thu Sep 20, 1:27 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Pierre Ossman
, (Thu Sep 20, 12:30 pm)
kobject: Temporarily save k_name on cleanup for debug message.
, Cornelia Huck
, (Thu Sep 20, 3:43 am)
Re: kobject: Temporarily save k_name on cleanup for debug me...
, Mariusz Kozlowski
, (Thu Sep 20, 1:26 pm)
kobject: Temporarily save k_name on cleanup for debug message.
, Cornelia Huck
, (Thu Sep 20, 3:42 am)
Re: 2.6.23-rc6-mm1 sparc build error
, Mathieu Desnoyers
, (Tue Sep 18, 4:54 pm)
Re: 2.6.23-rc6-mm1 sparc build error
, Andrew Morton
, (Tue Sep 18, 5:05 pm)
Re: 2.6.23-rc6-mm1 sparc build error
, Guennadi Liakhovetski
, (Thu Sep 20, 8:53 am)
Re: 2.6.23-rc6-mm1 sparc build error
, Mathieu Desnoyers
, (Fri Sep 21, 9:51 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325
, Rafael J. Wysocki
, (Tue Sep 18, 4:21 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325
, Rafael J. Wysocki
, (Tue Sep 18, 4:54 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Tue Sep 18, 5:37 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Wed Sep 19, 3:06 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Wed Sep 19, 1:44 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Wed Sep 19, 3:21 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Wed Sep 19, 8:06 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 2:18 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 9:29 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 9:43 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 10:12 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 4:42 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 9:53 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 10:47 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 10:50 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 11:49 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 4:39 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 5:08 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Linus Torvalds
, (Thu Sep 20, 5:35 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Linus Torvalds
, (Thu Sep 20, 5:55 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Paul Mackerras
, (Fri Sep 21, 12:51 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 4:06 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Pavel Machek
, (Thu Oct 11, 5:19 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Len Brown
, (Thu Sep 20, 7:35 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 3:56 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 5:25 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 6:05 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 6:30 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 8:59 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 10:20 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 12:27 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 3:20 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 3:16 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 3:37 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 5:54 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 6:01 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 5:45 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 5:53 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 5:24 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 6:35 pm)
2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Tue Sep 18, 3:32 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Tue Sep 18, 4:32 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Tue Sep 18, 6:03 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Wed Sep 19, 3:34 am)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Wed Sep 19, 11:53 am)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Wed Sep 19, 1:39 pm)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Tue Sep 18, 1:44 pm)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Sat Sep 22, 4:41 am)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Mon Sep 24, 7:14 am)
2.6.23-rc6-mm1: kgdb support on ppc64 utterly broken
, Mel Gorman
, (Wed Sep 19, 12:29 pm)
Re: 2.6.23-rc6-mm1 (watchdog)
, Randy Dunlap
, (Tue Sep 18, 1:18 pm)
Re: 2.6.23-rc6-mm1 (watchdog)
, Randy Dunlap
, (Tue Sep 18, 1:41 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 1:20 pm)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Tue Sep 18, 2:05 pm)
2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/ehea...
, Mel Gorman
, (Tue Sep 18, 12:20 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/...
, David Miller
, (Tue Sep 18, 3:08 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/...
, Mel Gorman
, (Tue Sep 18, 12:41 pm)
modpost errors ( Re: 2.6.23-rc6-mm1)
, Gabriel C
, (Tue Sep 18, 11:43 am)
Re: modpost errors ( Re: 2.6.23-rc6-mm1)
, Sam Ravnborg
, (Tue Sep 18, 11:56 am)
Re: [v4l-dvb-maintainer] modpost errors ( Re: 2.6.23-rc6-mm1)
,
, (Tue Sep 18, 12:37 pm)
Re: [v4l-dvb-maintainer] modpost errors ( Re: 2.6.23-rc6-mm1)
, Mauro Carvalho Chehab
, (Tue Sep 18, 6:06 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 11:27 am)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 3:17 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 3:42 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 4:26 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Tue Sep 18, 6:38 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 2:48 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Tue Sep 18, 6:48 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 3:33 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Wed Sep 19, 4:36 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 4:43 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 11:52 am)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 11:39 am)
Re: 2.6.23-rc6-mm1
,
, (Tue Sep 18, 11:07 am)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 11:50 am)
Re: 2.6.23-rc6-mm1
, Kamalesh Babulal
, (Tue Sep 18, 5:13 am)
Re: 2.6.23-rc6-mm1
, Andy Whitcroft
, (Tue Sep 18, 5:34 am)
Re: 2.6.23-rc6-mm1
, Benjamin Herrenschmidt
, (Tue Sep 18, 6:02 am)
Re: 2.6.23-rc6-mm1
, Kamalesh Babulal
, (Tue Sep 18, 8:07 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 18, 3:16 pm)
Re: 2.6.23-rc6-mm1
, Benjamin Herrenschmidt
, (Tue Sep 18, 5:35 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 12:53 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 5:27 am)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Tue Sep 18, 5:34 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 18, 3:17 pm)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Sat Sep 22, 5:21 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 25, 1:35 am)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 4:24 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
david
Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3
Parag Warudkar
BUG: soft lockup - CPU#1 stuck for 15s! [swapper:0]
Greg KH
[GIT PATCH] driver core patches against 2.6.24
Heiko Carstens
Re: -mm merge plans for 2.6.23 -- sys_fallocate
git
:
openbsd-misc
:
linux-netdev
:
Gerrit Renker
[PATCH 0/37] dccp: Feature negotiation - last call for comments
David Miller
Re: [GIT]: Networking
Jarek Poplawski
[PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
David Miller
Re: iptables very slow after commit784544739a25c30637397ace5489eeb6e15d7d49
Colocation donated by:
Who's online
There are currently
6 users
and
1019 guests
online.
Online users
backtolife88
sreejithc
growstra09
pivotpointsc
formacioncont
bridgewayestate
Syndicate