[PATCH] mm/page-writeback - highmem_is_dirtyable option (replaces dirty_highmem patch)

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Andrew Morton <akpm@...>, Linus Torvalds <torvalds@...>, Peter Zijlstra <a.p.zijlstra@...>, Christian Kujau <lists@...>, Linux Kernel Mailing List <linux-kernel@...>, Rob Mueller <robm@...>
Date: Tuesday, November 27, 2007 - 9:06 am

On Tue, Nov 27, 2007 at 11:10:28PM +1100, Bron Gondwana wrote:

Well, it was quick enough to just do - here's the patch.  I've
also updated the documentation a bit to clarify the intention and
the reasons why you might want to use it (based in part on the 
comments to the original change that made highmem uncountable for
dirtyness purposes)

Tested and applied against 2.6.23.9 (our build script makes Debian
packages from a clean unpack of kernel major plus patch minor plus
svn checkout of out quilt series and apply regardless, so it was
just as easy to bump the version number while I was at it).

Builds, boots, passes a quick run of the test program I used last
time around.

Bron.

Add vm.highmem_is_dirtyable toggle

A 32 bit machine with HIGHMEM64 enabled running DCC has an MMAPed file
of approximately 2Gb size which contains a hash format that is written
randomly by the dbclean process.  On 2.6.16 this process took a few
minutes.  With lowmem only accounting of dirty ratios, this takes about
12 hours of 100% disk IO, all random writes.

This patch includes some code cleanup from Linus and a toggle in
/proc/sys/vm/highmem_is_dirtyable which can be set to 1 to add the 
highmem back to the total available memory count.

Signed-off-by: Bron Gondwana <brong@fastmail.fm>
Index: linux-2.6.23.8-reiserfix-fai-vmdirty/mm/page-writeback.c
===================================================================
--- linux-2.6.23.8-reiserfix-fai-vmdirty.orig/mm/page-writeback.c	2007-11-21 21:58:20.000000000 -0500
+++ linux-2.6.23.8-reiserfix-fai-vmdirty/mm/page-writeback.c	2007-11-27 07:27:51.000000000 -0500
@@ -70,6 +70,12 @@
 int dirty_background_ratio = 5;
 
 /*
+ * free highmem will not be subtracted from the total free memory
+ * for calculating free ratios if vm_highmem_is_dirtyable is true
+ */
+int vm_highmem_is_dirtyable;
+
+/*
  * The generator of dirty data starts writeback at this percentage
  */
 int vm_dirty_ratio = 10;
@@ -153,7 +159,10 @@
 	x = global_page_state(NR_FREE_PAGES)
 		+ global_page_state(NR_INACTIVE)
 		+ global_page_state(NR_ACTIVE);
-	x -= highmem_dirtyable_memory(x);
+
+	if (!vm_highmem_is_dirtyable)
+		x -= highmem_dirtyable_memory(x);
+
 	return x + 1;	/* Ensure that we never return 0 */
 }
 
@@ -163,20 +172,12 @@
 {
 	int background_ratio;		/* Percentages */
 	int dirty_ratio;
-	int unmapped_ratio;
 	long background;
 	long dirty;
 	unsigned long available_memory = determine_dirtyable_memory();
 	struct task_struct *tsk;
 
-	unmapped_ratio = 100 - ((global_page_state(NR_FILE_MAPPED) +
-				global_page_state(NR_ANON_PAGES)) * 100) /
-					available_memory;
-
 	dirty_ratio = vm_dirty_ratio;
-	if (dirty_ratio > unmapped_ratio / 2)
-		dirty_ratio = unmapped_ratio / 2;
-
 	if (dirty_ratio < 5)
 		dirty_ratio = 5;
 
Index: linux-2.6.23.8-reiserfix-fai-vmdirty/include/linux/writeback.h
===================================================================
--- linux-2.6.23.8-reiserfix-fai-vmdirty.orig/include/linux/writeback.h	2007-10-09 16:31:38.000000000 -0400
+++ linux-2.6.23.8-reiserfix-fai-vmdirty/include/linux/writeback.h	2007-11-27 07:22:17.000000000 -0500
@@ -95,6 +95,7 @@
 extern int vm_dirty_ratio;
 extern int dirty_writeback_interval;
 extern int dirty_expire_interval;
+extern int vm_highmem_is_dirtyable;
 extern int block_dump;
 extern int laptop_mode;
 
Index: linux-2.6.23.8-reiserfix-fai-vmdirty/kernel/sysctl.c
===================================================================
--- linux-2.6.23.8-reiserfix-fai-vmdirty.orig/kernel/sysctl.c	2007-10-09 16:31:38.000000000 -0400
+++ linux-2.6.23.8-reiserfix-fai-vmdirty/kernel/sysctl.c	2007-11-27 07:26:43.000000000 -0500
@@ -776,6 +776,7 @@
 /* Constants for minimum and maximum testing in vm_table.
    We use these as one-element integer vectors. */
 static int zero;
+static int one = 1;
 static int two = 2;
 static int one_hundred = 100;
 
@@ -1066,6 +1067,19 @@
 		.extra1		= &zero,
 	},
 #endif
+#ifdef CONFIG_HIGHMEM
+	{
+		.ctl_name	= CTL_UNNUMBERED,
+		.procname	= "highmem_is_dirtyable",
+		.data		= &vm_highmem_is_dirtyable,
+		.maxlen		= sizeof(vm_highmem_is_dirtyable),
+		.mode		= 0644,
+		.proc_handler	= &proc_dointvec_minmax,
+		.strategy	= &sysctl_intvec,
+		.extra1		= &zero,
+		.extra2		= &one,
+	},
+#endif
 /*
  * NOTE: do not add new entries to this table unless you have read
  * Documentation/sysctl/ctl_unnumbered.txt
Index: linux-2.6.23.8-reiserfix-fai-vmdirty/Documentation/filesystems/proc.txt
===================================================================
--- linux-2.6.23.8-reiserfix-fai-vmdirty.orig/Documentation/filesystems/proc.txt	2007-10-09 16:31:38.000000000 -0400
+++ linux-2.6.23.8-reiserfix-fai-vmdirty/Documentation/filesystems/proc.txt	2007-11-27 07:21:22.000000000 -0500
@@ -1253,6 +1253,21 @@
 Data which has been dirty in-memory for longer than this interval will be
 written out next time a pdflush daemon wakes up.
 
+highmem_is_dirtyable
+--------------------
+
+Only present if CONFIG_HIGHMEM is set.
+
+This defaults to 0 (false), meaning that the ratios set above are calculated
+as a percentage of lowmem only.  This protects against excessive scanning
+in page reclaim, swapping and general VM distress.
+
+Setting this to 1 can be useful on 32 bit machines where you want to make
+random changes within an MMAPed file that is larger than your available
+lowmem without causing large quantities of random IO.  Is is safe if the
+behavior of all programs running on the machine is known and memory will
+not be otherwise stressed.
+
 legacy_va_layout
 ----------------
 
Index: linux-2.6.23.8-reiserfix-fai-vmdirty/Documentation/sysctl/vm.txt
===================================================================
--- linux-2.6.23.8-reiserfix-fai-vmdirty.orig/Documentation/sysctl/vm.txt	2007-10-09 16:31:38.000000000 -0400
+++ linux-2.6.23.8-reiserfix-fai-vmdirty/Documentation/sysctl/vm.txt	2007-11-27 07:13:30.000000000 -0500
@@ -22,6 +22,7 @@
 - dirty_background_ratio
 - dirty_expire_centisecs
 - dirty_writeback_centisecs
+- highmem_is_dirtyable   (only if CONFIG_HIGHMEM set)
 - max_map_count
 - min_free_kbytes
 - laptop_mode
@@ -36,10 +37,10 @@
 
 ==============================================================
 
-dirty_ratio, dirty_background_ratio, dirty_expire_centisecs,
-dirty_writeback_centisecs, vfs_cache_pressure, laptop_mode,
-block_dump, swap_token_timeout, drop-caches,
-hugepages_treat_as_movable:
+dirty_ratio, dirty_background_ratio, dirty_expire_centisecs, 
+dirty_writeback_centisecs, highmem_is_dirtyable,
+vfs_cache_pressure, laptop_mode, block_dump, swap_token_timeout,
+drop-caches, hugepages_treat_as_movable:
 
 See Documentation/filesystems/proc.txt
 
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[BUG] New Kernel Bugs, Natalie Protasevich, (Tue Nov 13, 2:42 am)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 7:15 am)
Re: [BUG] New Kernel Bugs, Jiri Kosina, (Wed Nov 14, 8:46 am)
Re: [BUG] New Kernel Bugs, Bartlomiej Zolnierkiewicz..., (Tue Nov 13, 11:21 am)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 9:58 am)
Re: [BUG] New Kernel Bugs, Thomas Gleixner, (Tue Nov 13, 12:07 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 1:54 pm)
Re: [BUG] New Kernel Bugs, Thomas Gleixner, (Tue Nov 13, 6:46 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 7:37 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 1:47 pm)
[BUG] Strange 1-second pauses during Resume-from-RAM, Mark Lord, (Thu Nov 15, 12:32 pm)
Re: [BUG] Strange 1-second pauses during Resume-from-RAM, Rafael J. Wysocki, (Thu Nov 15, 4:27 pm)
Re: [BUG] Strange 1-second pauses during Resume-from-RAM, Mike Galbraith, (Fri Nov 16, 7:53 am)
[patch] snd hda suspend latency: shorten codec read, Ingo Molnar, (Fri Nov 16, 8:58 am)
Re: [patch] snd hda suspend latency: shorten codec read, Takashi Iwai, (Fri Nov 16, 10:21 am)
Re: [patch] snd hda suspend latency: shorten codec read, Rafael J. Wysocki, (Fri Nov 16, 9:31 am)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 2:10 pm)
Re: [BUG] New Kernel Bugs, Alan Cox, (Tue Nov 13, 2:25 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 6:34 pm)
Re: [BUG] New Kernel Bugs, Ben Dooks, (Thu Nov 15, 4:16 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 10:18 am)
Re: [BUG] New Kernel Bugs, Thomas Gleixner, (Tue Nov 13, 12:08 pm)
Re: [BUG] New Kernel Bugs, Pavel Machek, (Wed Nov 14, 9:24 am)
Re: [BUG] New Kernel Bugs, Fabio Comolli, (Wed Nov 14, 10:14 am)
Re: [BUG] New Kernel Bugs, Russell King, (Wed Nov 14, 3:52 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 2:04 pm)
Re: [BUG] New Kernel Bugs, Jan Kara, (Tue Nov 13, 1:49 pm)
Re: [BUG] New Kernel Bugs, Alan Cox, (Tue Nov 13, 11:36 am)
Re: [BUG] New Kernel Bugs, Jarek Poplawski, (Tue Nov 13, 7:47 am)
Re: [BUG] New Kernel Bugs, Evgeniy Polyakov, (Tue Nov 13, 7:33 am)
Re: [BUG] New Kernel Bugs, Jens Axboe, (Tue Nov 13, 7:24 am)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 7:39 am)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 7:49 am)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 7:58 am)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 8:12 am)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Tue Nov 13, 9:40 am)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 10:08 am)
Re: [BUG] New Kernel Bugs, Giacomo A. Catenazzi, (Tue Nov 13, 11:24 am)
Re: [BUG] New Kernel Bugs, Ray Lee, (Tue Nov 13, 11:57 am)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 1:01 pm)
Re: [BUG] New Kernel Bugs, Romano Giannetti, (Tue Nov 13, 1:50 pm)
Re: [BUG] New Kernel Bugs, Frans Pop, (Tue Nov 13, 6:03 pm)
Re: [BUG] New Kernel Bugs, Benoit Boissinot, (Tue Nov 13, 11:52 am)
Re: [BUG] New Kernel Bugs, Theodore Tso, (Tue Nov 13, 1:13 pm)
Re: [BUG] New Kernel Bugs, Daniel Barkalow, (Wed Nov 14, 7:23 pm)
Re: [BUG] New Kernel Bugs, Theodore Tso, (Thu Nov 15, 11:30 am)
Re: [BUG] New Kernel Bugs, Daniel Barkalow, (Thu Nov 15, 12:19 pm)
Re: [BUG] New Kernel Bugs, Romano Giannetti, (Fri Nov 16, 4:20 am)
Re: [BUG] New Kernel Bugs, Daniel Barkalow, (Fri Nov 16, 2:20 pm)
Re: [BUG] New Kernel Bugs, Theodore Tso, (Fri Nov 16, 3:46 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Sat Nov 17, 8:20 am)
Re: [BUG] New Kernel Bugs, Theodore Tso, (Sun Nov 18, 2:01 pm)
Re: [BUG] New Kernel Bugs, Larry Finger, (Tue Nov 13, 1:33 pm)
Re: [BUG] New Kernel Bugs, Theodore Tso, (Tue Nov 13, 2:55 pm)
Re: [BUG] New Kernel Bugs, Larry Finger, (Tue Nov 13, 4:07 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 1:56 pm)
Re: [BUG] New Kernel Bugs, Jan Evert van Grootheest, (Wed Nov 14, 12:55 pm)
Re: [BUG] New Kernel Bugs, Gabriel C, (Tue Nov 13, 2:57 pm)
Re: [BUG] New Kernel Bugs, Denys Vlasenko, (Tue Nov 13, 8:41 pm)
Re: [BUG] New Kernel Bugs, Denys Vlasenko, (Tue Nov 13, 8:39 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Wed Nov 14, 3:27 am)
Re: [BUG] New Kernel Bugs, Denys Vlasenko, (Wed Nov 14, 3:46 am)
Re: [BUG] New Kernel Bugs, Kok, Auke, (Wed Nov 14, 2:27 pm)
Re: [BUG] New Kernel Bugs, Matthew Wilcox, (Wed Nov 14, 9:30 am)
Re: [BUG] New Kernel Bugs, Hannes Reinecke, (Wed Nov 14, 9:35 am)
Re: [BUG] New Kernel Bugs, Denys Vlasenko, (Wed Nov 14, 5:39 pm)
Re: [BUG] New Kernel Bugs, Gabriel C, (Wed Nov 14, 5:58 pm)
Re: [BUG] New Kernel Bugs, Alan Cox, (Tue Nov 13, 1:30 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Tue Nov 13, 12:49 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 3:37 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 4:18 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 7:40 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 9:56 pm)
Re: [BUG] New Kernel Bugs, Jörn, (Tue Nov 13, 5:33 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 6:29 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 5:56 pm)
Re: [BUG] New Kernel Bugs, Jörn, (Tue Nov 13, 6:24 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 6:43 pm)
Re: [BUG] New Kernel Bugs, Denys Vlasenko, (Tue Nov 13, 8:34 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Tue Nov 13, 12:46 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 1:50 pm)
size of git repository (was Re: [BUG] New Kernel Bugs), Pavel Machek, (Sun Nov 18, 8:44 am)
Re: size of git repository (was Re: [BUG] New Kernel Bugs), Willy Tarreau, (Mon Nov 19, 12:43 am)
Re: size of git repository (was Re: [BUG] New Kernel Bugs), James Bottomley, (Sun Nov 18, 10:35 am)
Re: [BUG] New Kernel Bugs, Matthew Wilcox, (Tue Nov 13, 2:39 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 2:43 pm)
Re: [BUG] New Kernel Bugs, Matthew Wilcox, (Tue Nov 13, 2:49 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 2:54 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 10:30 am)
Re: [BUG] New Kernel Bugs, Larry Finger, (Wed Nov 14, 10:49 am)
Re: [BUG] New Kernel Bugs, Rafael J. Wysocki, (Tue Nov 13, 6:09 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 2:12 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 2:18 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 2:36 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 2:47 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 3:04 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 3:26 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 4:00 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 4:13 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 5:20 pm)
Re: [BUG] New Kernel Bugs, Alan Cox, (Tue Nov 13, 5:12 pm)
Re: [BUG] New Kernel Bugs, Chuck Ebbert, (Tue Nov 13, 8:52 pm)
Re: [BUG] New Kernel Bugs, Stephen Hemminger, (Tue Nov 13, 9:11 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 10:10 pm)
Re: [BUG] New Kernel Bugs, Mark Lord, (Tue Nov 13, 3:12 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 3:30 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 3:46 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 4:04 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 9:10 pm)
Re: [BUG] New Kernel Bugs, Peter Stuge, (Tue Nov 13, 9:18 pm)
Re: [BUG] New Kernel Bugs, Peter Zijlstra, (Tue Nov 13, 2:17 pm)
Re: [BUG] New Kernel Bugs, Randy Dunlap, (Tue Nov 13, 12:55 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 10:08 am)
Re: [BUG] New Kernel Bugs, Randy Dunlap, (Wed Nov 14, 1:38 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 4:16 pm)
Re: [BUG] New Kernel Bugs, Randy Dunlap, (Wed Nov 14, 4:29 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 4:37 pm)
Re: [BUG] New Kernel Bugs, Randy Dunlap, (Wed Nov 14, 5:05 pm)
Re: [BUG] New Kernel Bugs, J. Bruce Fields, (Wed Nov 14, 2:23 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 3:56 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 4:48 pm)
Re: [BUG] New Kernel Bugs, , (Wed Nov 14, 5:05 pm)
Re: [BUG] New Kernel Bugs, James Bottomley, (Wed Nov 14, 4:09 pm)
Re: [BUG] New Kernel Bugs, Ingo Molnar, (Wed Nov 14, 4:54 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 8:32 am)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 3:32 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 4:13 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 7:29 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 7:38 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 4:52 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 6:18 pm)
Re: [BUG] New Kernel Bugs, Sam Ravnborg, (Wed Nov 14, 1:56 am)
Re: [BUG] New Kernel Bugs, Sam Ravnborg, (Wed Nov 14, 1:59 am)
Re: [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 2:13 am)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 6:32 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Tue Nov 13, 7:09 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 7:17 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 9:55 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Wed Nov 14, 5:55 am)
Re: [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 6:07 am)
Use *poof* for linux-omap (Was: [BUG] New Kernel Bugs), Tony Lindgren, (Fri Nov 16, 6:16 pm)
Re: Use *poof* for linux-omap, David Miller, (Fri Nov 16, 8:45 pm)
Re: Use *poof* for linux-omap, Tony Lindgren, (Sun Nov 18, 4:01 pm)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Wed Nov 14, 7:46 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Bron Gondwana, (Thu Nov 15, 12:16 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Thu Nov 15, 1:59 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Olivier Galibert, (Thu Nov 15, 9:17 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Takashi Iwai, (Thu Nov 15, 5:34 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Bron Gondwana, (Thu Nov 15, 8:02 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Thu Nov 15, 8:26 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Jörn, (Thu Nov 15, 9:00 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Thu Nov 15, 10:29 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 7:56 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Wed Nov 14, 8:09 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 8:01 am)
Moderated list (Was: Re: [BUG] New Kernel Bugs), Takashi Iwai, (Wed Nov 14, 4:25 am)
Re: Moderated list (Was: Re: [BUG] New Kernel Bugs), Rene Herman, (Wed Nov 14, 8:21 am)
Re: Moderated list (Was: Re: [BUG] New Kernel Bugs), Takashi Iwai, (Wed Nov 14, 5:47 am)
Re: Moderated list, David Miller, (Wed Nov 14, 7:23 pm)
Re: Moderated list, Rene Herman, (Thu Nov 15, 2:09 am)
Re: [alsa-devel] [BUG] New Kernel Bugs, Rene Herman, (Wed Nov 14, 8:12 am)
Re: [BUG] New Kernel Bugs, Russell King, (Wed Nov 14, 3:44 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 10:27 pm)
Re: [BUG] New Kernel Bugs, Russell King, (Wed Nov 14, 4:30 am)
Re: [BUG] New Kernel Bugs, David Miller, (Tue Nov 13, 11:47 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 3:02 pm)
Re: [BUG] New Kernel Bugs, Christian Kujau, (Tue Nov 13, 4:00 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 5:04 pm)
Re: [BUG] New Kernel Bugs, Christian Kujau, (Tue Nov 13, 5:56 pm)
Re: [BUG] New Kernel Bugs, Bron Gondwana, (Thu Nov 15, 12:07 am)
Re: [BUG] New Kernel Bugs, Linus Torvalds, (Thu Nov 15, 12:24 am)
Re: [BUG] New Kernel Bugs, Bron Gondwana, (Thu Nov 15, 1:25 am)
Re: [BUG] New Kernel Bugs, Linus Torvalds, (Thu Nov 15, 1:35 am)
Re: [BUG] New Kernel Bugs, Linus Torvalds, (Thu Nov 15, 1:53 am)
[PATCH 1/1] mm: add dirty_highmem option, Bron Gondwana, (Wed Nov 21, 11:42 pm)
Re: [PATCH 1/1] mm: add dirty_highmem option, Andrew Morton, (Tue Nov 27, 12:54 am)
Re: [PATCH 1/1] mm: add dirty_highmem option, Bron Gondwana, (Tue Nov 27, 1:24 am)
Re: [PATCH 1/1] mm: add dirty_highmem option, Andrew Morton, (Tue Nov 27, 1:53 am)
[PATCH] mm/page-writeback - highmem_is_dirtyable option (rep..., Bron Gondwana, (Tue Nov 27, 9:06 am)
Re: [PATCH 1/1] mm: add dirty_highmem option, Linus Torvalds, (Mon Nov 26, 1:53 pm)
Re: [PATCH 1/1] mm: add dirty_highmem option, Bron Gondwana, (Mon Nov 26, 9:30 pm)
Re: [BUG] New Kernel Bugs, Nick Piggin, (Tue Nov 13, 12:56 pm)
Re: [BUG] New Kernel Bugs, Linus Torvalds, (Wed Nov 14, 3:54 pm)
Re: [BUG] New Kernel Bugs, Heikki Orsila, (Wed Nov 14, 6:22 pm)
Re: [BUG] New Kernel Bugs, Linus Torvalds, (Wed Nov 14, 7:05 pm)
Re: [BUG] New Kernel Bugs, Adrian Bunk, (Tue Nov 13, 5:37 pm)
Re: [BUG] New Kernel Bugs, James Bottomley, (Tue Nov 13, 11:33 am)
Re: [BUG] New Kernel Bugs, Martin Bligh, (Tue Nov 13, 1:46 pm)
Re: [BUG] New Kernel Bugs, Andrew Morton, (Tue Nov 13, 2:47 pm)
Re: [BUG] New Kernel Bugs, David Miller, (Wed Nov 14, 1:07 am)
Re: [BUG] New Kernel Bugs, Randy Dunlap, (Tue Nov 13, 12:43 pm)