Re: 2.6.22 -mm merge plans

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Mathieu Desnoyers
Date: Thursday, May 10, 2007 - 12:39 pm

* Christoph Hellwig (hch@infradead.org) wrote:

Ok, I've had a look at the kprobes batch registration mechanisms and..
well, it does not look well suited for the markers. Adding
supplementary data structures such as linked lists of probes does not
look like a good match.

However, I agree with you that providing a similar API is good.

Therefore, here is my proposal :

The goal is to do the synchronize just after we unregister the last
probe handler provided by a given module. Since the unregistration
functions iterate on every marker present in the kernel, we can keep a
count of how many probes provided by the same module are still present.
If we see that we unregistered the last probe pointing to this module,
we issue a synchronize_sched().

It adds no data structure and keeps the same order of complexity as what
is already there, we only have to do 2 passes in the marker structures :
the first one finds the module associated with the callback and the
second disables the callbacks and keep a count of the number of
callbacks associated with the module.

Mathieu

P.S.: here is the code.


Linux Kernel Markers - Architecture Independant code Provide internal
synchronize_sched() in batch.

The goal is to do the synchronize just after we unregister the last
probe handler provided by a given module. Since the unregistration
functions iterate on every marker present in the kernel, we can keep a
count of how many probes provided by the same module are still present.
If we see that we unregistered the last probe pointing to this module,
we issue a synchronize_sched().

It adds no data structure and keeps the same order of complexity as what
is already there, we only have to do 2 passes in the marker structures : 
the first one finds the module associated with the callback and the 
second disables the callbacks and keep a count of the number of
callbacks associated with the module.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
---
 kernel/module.c |   62 ++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 52 insertions(+), 10 deletions(-)

Index: linux-2.6-lttng/kernel/module.c
===================================================================
--- linux-2.6-lttng.orig/kernel/module.c	2007-05-10 14:48:28.000000000 -0400
+++ linux-2.6-lttng/kernel/module.c	2007-05-10 15:38:27.000000000 -0400
@@ -404,8 +404,12 @@
 }
 
 /* Sets a range of markers to a disabled state : unset the enable bit and
- * provide the empty callback. */
+ * provide the empty callback.
+ * Keep a count of other markers connected to the same module as the one
+ * provided as parameter. */
 static int marker_remove_probe_range(const char *name,
+	struct module *probe_module,
+	int *ref_count,
 	const struct __mark_marker *begin,
 	const struct __mark_marker *end)
 {
@@ -413,12 +417,17 @@
 	int found = 0;
 
 	for (iter = begin; iter < end; iter++) {
-		if (strcmp(name, iter->mdata->name) == 0) {
-			marker_set_enable(iter->enable, 0,
-				iter->mdata->flags);
-			iter->mdata->call = __mark_empty_function;
-			found++;
+		if (strcmp(name, iter->mdata->name) != 0) {
+			if (probe_module)
+				if (__module_text_address(
+					(unsigned long)iter->mdata->call)
+						== probe_module)
+					(*ref_count)++;
+			continue;
 		}
+		marker_set_enable(iter->enable, 0, iter->mdata->flags);
+		iter->mdata->call = __mark_empty_function;
+		found++;
 	}
 	return found;
 }
@@ -450,6 +459,29 @@
 	return found;
 }
 
+/* Get the module to which the probe handler's text belongs.
+ * Called with module_mutex taken.
+ * Returns NULL if the probe handler is not in a module. */
+static struct module *__marker_get_probe_module(const char *name)
+{
+	struct module *mod;
+	const struct __mark_marker *iter;
+
+	list_for_each_entry(mod, &modules, list) {
+		if (mod->taints)
+			continue;
+		for (iter = mod->markers;
+			iter < mod->markers+mod->num_markers; iter++) {
+			if (strcmp(name, iter->mdata->name) != 0)
+				continue;
+			if (iter->mdata->call)
+				return __module_text_address(
+					(unsigned long)iter->mdata->call);
+		}
+	}
+	return NULL;
+}
+
 /* Calls _marker_set_probe_range for the core markers and modules markers.
  * Marker enabling/disabling use the modlist_lock to synchronise. */
 int _marker_set_probe(int flags, const char *name, const char *format,
@@ -477,23 +509,33 @@
 EXPORT_SYMBOL_GPL(_marker_set_probe);
 
 /* Calls _marker_remove_probe_range for the core markers and modules markers.
- * Marker enabling/disabling use the modlist_lock to synchronise. */
+ * Marker enabling/disabling use the modlist_lock to synchronise.
+ * ref_count is the number of markers still connected to the same module
+ * as the one in which sits the probe handler currently removed, excluding the
+ * one currently removed. If the count is 0, we issue a synchronize_sched() to
+ * make sure the module can safely unload. */
 int marker_remove_probe(const char *name)
 {
-	struct module *mod;
+	struct module *mod, *probe_module;
 	int found = 0;
+	int ref_count = 0;
 
 	mutex_lock(&module_mutex);
+	/* In what module is the probe handler ? */
+	probe_module = __marker_get_probe_module(name);
 	/* Core kernel markers */
-	found += marker_remove_probe_range(name,
+	found += marker_remove_probe_range(name, probe_module, &ref_count,
 			__start___markers, __stop___markers);
 	/* Markers in modules. */
 	list_for_each_entry(mod, &modules, list) {
 		if (!mod->taints)
-			found += marker_remove_probe_range(name,
+			found += marker_remove_probe_range(name, probe_module,
+				&ref_count,
 				mod->markers, mod->markers+mod->num_markers);
 	}
 	mutex_unlock(&module_mutex);
+	if (!ref_count)
+		synchronize_sched();
 	return found;
 }
 EXPORT_SYMBOL_GPL(marker_remove_probe);

-- 
Mathieu Desnoyers
Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal
OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F  BA06 3F25 A8FE 3BAE 9A68
-
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
2.6.22 -mm merge plans, Andrew Morton, (Mon Apr 30, 4:20 pm)
Re: 2.6.22 -mm merge plans, Bill Irwin, (Mon Apr 30, 4:59 pm)
MADV_FREE functionality, Rik van Riel, (Mon Apr 30, 5:54 pm)
Re: MADV_FREE functionality, Andrew Morton, (Mon Apr 30, 6:18 pm)
Re: MADV_FREE functionality, Ulrich Drepper, (Mon Apr 30, 6:23 pm)
Re: MADV_FREE functionality, Rik van Riel, (Mon Apr 30, 6:23 pm)
Re: 2.6.22 -mm merge plans, Stefan Richter, (Mon Apr 30, 6:39 pm)
Re: 2.6.22 -mm merge plans (RE: input), Dmitry Torokhov, (Mon Apr 30, 7:30 pm)
Re: MADV_FREE functionality, Jakub Jelinek, (Tue May 1, 12:13 am)
Re: 2.6.22 -mm merge plans -- pfn_valid_within, Andy Whitcroft, (Tue May 1, 1:11 am)
Re: 2.6.22 -mm merge plans (RE: input), Jiri Slaby, (Tue May 1, 1:14 am)
Re: 2.6.22 -mm merge plans -- pfn_valid_within, Andrew Morton, (Tue May 1, 1:19 am)
&quot;partical&quot; kthread conversion, Christoph Hellwig, (Tue May 1, 1:42 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Tue May 1, 1:44 am)
pcmcia ioctl removal, Christoph Hellwig, (Tue May 1, 1:46 am)
pci hotplug patches, Christoph Hellwig, (Tue May 1, 1:48 am)
Re: &quot;partical&quot; kthread conversion, Andrew Morton, (Tue May 1, 1:51 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Andrew Morton, (Tue May 1, 1:54 am)
cache-pipe-buf-page-address-for-non-highmem-arch.patch, Christoph Hellwig, (Tue May 1, 1:54 am)
consolidate-generic_writepages-and-mpage_writepages.patch, Christoph Hellwig, (Tue May 1, 1:55 am)
Re: pcmcia ioctl removal, Russell King, (Tue May 1, 1:56 am)
Re: pcmcia ioctl removal, Willy Tarreau, (Tue May 1, 1:57 am)
Re: pcmcia ioctl removal, Andrew Morton, (Tue May 1, 2:08 am)
Re: pcmcia ioctl removal, Robert P. J. Day, (Tue May 1, 2:16 am)
Re: 2.6.22 -mm merge plans, Pekka Enberg, (Tue May 1, 2:17 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Tue May 1, 2:24 am)
Re: 2.6.22 -mm merge plans, Peter Zijlstra, (Tue May 1, 2:37 am)
Re: pcmcia ioctl removal, Willy Tarreau, (Tue May 1, 2:44 am)
Re: pcmcia ioctl removal, Jan Engelhardt, (Tue May 1, 3:12 am)
Re: pcmcia ioctl removal, Robert P. J. Day, (Tue May 1, 3:16 am)
fragmentation avoidance Re: 2.6.22 -mm merge plans, Mel Gorman, (Tue May 1, 3:16 am)
Re: pcmcia ioctl removal, Gabriel C, (Tue May 1, 3:26 am)
Re: pcmcia ioctl removal, Willy Tarreau, (Tue May 1, 3:52 am)
Re: pcmcia ioctl removal, Willy Tarreau, (Tue May 1, 4:00 am)
Re: 2.6.22 -mm merge plans (RE: input), Dmitry Torokhov, (Tue May 1, 5:05 am)
Re: pcmcia ioctl removal, Konstantin Münning, (Tue May 1, 5:06 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Tue May 1, 5:17 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Tue May 1, 5:19 am)
Re: 2.6.22 -mm merge plans -- lumpy reclaim, Andy Whitcroft, (Tue May 1, 6:02 am)
Re: pcmcia ioctl removal, Rogan Dawes, (Tue May 1, 6:56 am)
Re: 2.6.22 -mm merge plans: mm-more-rmap-checking, Hugh Dickins, (Tue May 1, 7:31 am)
Re: pcmcia ioctl removal, Adrian Bunk, (Tue May 1, 7:46 am)
Re: fragmentation avoidance Re: 2.6.22 -mm merge plans, Christoph Lameter, (Tue May 1, 7:54 am)
Re: 2.6.22 -mm merge plans, Zan Lynx, (Tue May 1, 9:56 am)
Re: 2.6.22 -mm merge plans, Pekka Enberg, (Tue May 1, 10:12 am)
Re: 2.6.22 -mm merge plans -- lumpy reclaim, Peter Zijlstra, (Tue May 1, 11:03 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Tue May 1, 11:10 am)
Re: fragmentation avoidance Re: 2.6.22 -mm merge plans, Andrew Morton, (Tue May 1, 11:57 am)
Re: 2.6.22 -mm merge plans -- lumpy reclaim, Andrew Morton, (Tue May 1, 12:00 pm)
Re: pcmcia ioctl removal, Russell King, (Tue May 1, 12:10 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Tue May 1, 12:25 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Tue May 1, 12:31 pm)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Tue May 1, 12:55 pm)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Tue May 1, 1:19 pm)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Tue May 1, 1:36 pm)
Re: pcmcia ioctl removal, Jan Engelhardt, (Tue May 1, 1:41 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Tue May 1, 1:46 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Tue May 1, 2:08 pm)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Tue May 1, 2:09 pm)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Tue May 1, 3:08 pm)
Re: 2.6.22 -mm merge plans, Rusty Russell, (Tue May 1, 5:31 pm)
Re: 2.6.22 -mm merge plans: mm-more-rmap-checking, Nick Piggin, (Tue May 1, 6:42 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Tue May 1, 8:08 pm)
Re: pci hotplug patches, Greg KH, (Tue May 1, 8:57 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Wed May 2, 2:15 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Wed May 2, 3:30 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Wed May 2, 3:44 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Wed May 2, 5:45 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Wed May 2, 5:54 am)
Re: 2.6.22 -mm merge plans: mm-more-rmap-checking, Hugh Dickins, (Wed May 2, 6:17 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Wed May 2, 7:00 am)
Re: &quot;partical&quot; kthread conversion, Dean Nelson, (Wed May 2, 7:01 am)
Re: &quot;partical&quot; kthread conversion, Eric W. Biederman, (Wed May 2, 7:45 am)
Re: &quot;partical&quot; kthread conversion, Dean Nelson, (Wed May 2, 8:37 am)
Re: &quot;partical&quot; kthread conversion, Eric W. Biederman, (Wed May 2, 8:49 am)
Re: 2.6.22 -mm merge plans, Frank Ch. Eigler, (Wed May 2, 9:37 am)
Re: 2.6.22 -mm merge plans, Andrew Morton, (Wed May 2, 9:47 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 10:01 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 10:03 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Wed May 2, 10:19 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 10:25 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Wed May 2, 10:29 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Wed May 2, 10:49 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Wed May 2, 11:08 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 11:28 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Wed May 2, 11:36 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 11:39 am)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Wed May 2, 11:42 am)
Re: 2.6.22 -mm merge plans: slub, Siddha, Suresh B, (Wed May 2, 11:52 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 11:53 am)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Wed May 2, 11:57 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 11:58 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 12:01 pm)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Wed May 2, 12:11 pm)
Re: 2.6.22 -mm merge plans: slub, Pekka Enberg, (Wed May 2, 12:18 pm)
Re: &quot;partical&quot; kthread conversion, Andrew Morton, (Wed May 2, 12:33 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 12:34 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 12:42 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 12:43 pm)
Re: 2.6.22 -mm merge plans: slub, Sam Ravnborg, (Wed May 2, 12:54 pm)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Wed May 2, 1:14 pm)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Wed May 2, 1:36 pm)
Re: &quot;partical&quot; kthread conversion, Eric W. Biederman, (Wed May 2, 1:38 pm)
Re: 2.6.22 -mm merge plans, Andrew Morton, (Wed May 2, 1:53 pm)
Re: 2.6.22 -mm merge plans, Tilman Schmidt, (Wed May 2, 2:46 pm)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Wed May 2, 4:11 pm)
Re: 2.6.22 -mm merge plans, Andrew Morton, (Wed May 2, 4:21 pm)
Re: 2.6.22 -mm merge plans: mm-more-rmap-checking, Nick Piggin, (Wed May 2, 5:18 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Wed May 2, 6:32 pm)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Thu May 3, 1:06 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Thu May 3, 1:08 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Thu May 3, 1:09 am)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Thu May 3, 1:15 am)
Re: 2.6.22 -mm merge plans: slub, William Lee Irwin III, (Thu May 3, 1:27 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Thu May 3, 1:46 am)
Re: 2.6.22 -mm merge plans: slub, Andrew Morton, (Thu May 3, 1:57 am)
Re: 2.6.22 -mm merge plans: slub, Hugh Dickins, (Thu May 3, 2:15 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Thu May 3, 3:12 am)
Re: 2.6.22 -mm merge plans, Andi Kleen, (Thu May 3, 3:31 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Christoph Hellwig, (Thu May 3, 3:37 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Thu May 3, 5:24 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Thu May 3, 5:43 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Thu May 3, 5:56 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Thu May 3, 5:58 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Thu May 3, 6:08 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Thu May 3, 7:43 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Thu May 3, 7:49 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Thu May 3, 8:04 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Thu May 3, 8:12 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Ingo Molnar, (Thu May 3, 8:54 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Michal Piotrowski, (Thu May 3, 9:15 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Michal Piotrowski, (Thu May 3, 9:23 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Thu May 3, 9:30 am)
Re: 2.6.22 -mm merge plans: slub, Christoph Lameter, (Thu May 3, 9:45 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Andrew Morton, (Thu May 3, 9:52 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Thu May 3, 10:16 am)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Thu May 3, 10:25 am)
Re: 2.6.22 -mm merge plans: slub on PowerPC, Hugh Dickins, (Thu May 3, 2:04 pm)
Re: 2.6.22 -mm merge plans: slub on PowerPC, Christoph Lameter, (Thu May 3, 2:15 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Thu May 3, 3:14 pm)
Re: 2.6.22 -mm merge plans: slub on PowerPC, Hugh Dickins, (Thu May 3, 3:41 pm)
Re: 2.6.22 -mm merge plans: slub on PowerPC, Benjamin Herrenschmidt, (Thu May 3, 5:25 pm)
Re: 2.6.22 -mm merge plans: slub on PowerPC, Christoph Lameter, (Thu May 3, 5:54 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Thu May 3, 9:16 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Fri May 4, 12:34 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Ingo Molnar, (Fri May 4, 1:52 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Fri May 4, 2:09 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Fri May 4, 2:23 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Fri May 4, 2:43 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Fri May 4, 5:10 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Sat May 5, 1:42 am)
Re: [ck] Re: swap-prefetch: 2.6.22 -mm merge plans, Antonino Ingargiola, (Sun May 6, 3:13 am)
Re: [ck] Re: swap-prefetch: 2.6.22 -mm merge plans, Jory A. Pratt, (Sun May 6, 11:22 am)
Re: fragmentation avoidance Re: 2.6.22 -mm merge plans, Yasunori Goto, (Mon May 7, 6:07 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Bill Davidsen, (Mon May 7, 7:18 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Bill Davidsen, (Mon May 7, 7:28 am)
Re: 2.6.22 -mm merge plans, Josef Sipek, (Mon May 7, 10:47 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Benjamin Herrenschmidt, (Mon May 7, 8:03 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Wed May 9, 5:34 am)
Re: pcmcia ioctl removal, Pavel Machek, (Wed May 9, 5:54 am)
Re: pcmcia ioctl removal, Robert P. J. Day, (Wed May 9, 6:00 am)
Re: pcmcia ioctl removal, Adrian Bunk, (Wed May 9, 6:03 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Wed May 9, 7:28 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Wed May 9, 7:45 am)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Hugh Dickins, (Wed May 9, 8:38 am)
Re: pcmcia ioctl removal, Romano Giannetti, (Wed May 9, 12:11 pm)
Re: 2.6.22 -mm merge plans -- vm bugfixes, Nick Piggin, (Wed May 9, 3:24 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Wed May 9, 4:28 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Wed May 9, 5:05 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Wed May 9, 6:34 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Wed May 9, 6:56 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Ray Lee, (Wed May 9, 8:48 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Wed May 9, 8:56 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Con Kolivas, (Wed May 9, 8:58 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Ray Lee, (Wed May 9, 10:52 pm)
Re: swap-prefetch: 2.6.22 -mm merge plans, Nick Piggin, (Thu May 10, 12:04 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, William Lee Irwin III, (Thu May 10, 12:20 am)
Re: swap-prefetch: 2.6.22 -mm merge plans, Ray Lee, (Thu May 10, 5:34 am)
Re: pcmcia ioctl removal, Adrian Bunk, (Thu May 10, 5:40 am)
Re: 2.6.22 -mm merge plans, Mathieu Desnoyers, (Thu May 10, 12:39 pm)
[PATCH] mm: swap prefetch improvements, Con Kolivas, (Fri May 11, 9:46 pm)
Re: [PATCH] mm: swap prefetch improvements, Paul Jackson, (Fri May 11, 10:03 pm)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Fri May 11, 10:15 pm)
Re: [PATCH] mm: swap prefetch improvements, Paul Jackson, (Fri May 11, 10:51 pm)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Sat May 12, 12:28 am)
Re: [PATCH] mm: swap prefetch improvements, Paul Jackson, (Sat May 12, 1:14 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Sat May 12, 1:21 am)
Re: [PATCH] mm: swap prefetch improvements, Paul Jackson, (Sat May 12, 1:37 am)
[PATCH respin] mm: swap prefetch improvements, Con Kolivas, (Sat May 12, 1:57 am)
Re: pci hotplug patches, Christoph Hellwig, (Sun May 13, 1:59 pm)
Re: 2.6.22 -mm merge plans, Christoph Hellwig, (Sun May 13, 2:04 pm)
Re: pci hotplug patches, Greg KH, (Mon May 14, 4:48 am)
Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Mon May 21, 3:03 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Mon May 21, 6:44 am)
Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Mon May 21, 9:00 am)
Re: [PATCH] mm: swap prefetch improvements, Antonino Ingargiola, (Tue May 22, 3:15 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Tue May 22, 3:20 am)
Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Tue May 22, 3:25 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Tue May 22, 3:37 am)
Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Tue May 22, 3:46 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Tue May 22, 3:54 am)
Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Tue May 22, 3:57 am)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Tue May 22, 4:04 am)
Re: [ck] Re: [PATCH] mm: swap prefetch improvements, Michael Chang, (Tue May 22, 1:18 pm)
Re: [ck] Re: [PATCH] mm: swap prefetch improvements, Ingo Molnar, (Tue May 22, 1:31 pm)
Re: [ck] Re: [PATCH] mm: swap prefetch improvements, Ash Milsted, (Tue May 22, 1:42 pm)
Re: [PATCH] mm: swap prefetch improvements, Con Kolivas, (Tue May 22, 3:50 pm)
Re: [PATCH] mm: swap prefetch improvements, Ash Milsted, (Wed May 23, 12:57 am)