[PATCH] topology.h define mess fix

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Mathieu Desnoyers
Date: Friday, October 3, 2008 - 11:53 am

* Steven Rostedt (rostedt@goodmis.org) wrote:


Or we take a deep breath and clean this up ?

Ingo, I build tested this on x86_64 (with and without NUMA), x86_32,
powerpc, arm and mips. I applies to both -tip and 2.6.27-rc8. Could it
be pulled into -tip for further testing ?

Note that checkpatch.pl spills a warning telling me to modify include/asm-*/
files (unexisting in my tree) rather than arch/*/include/asm/. Any idea
why ?

Thanks,

Mathieu


topology.h define mess fix

Original goal : Declare NUMA-less cpu_to_node with a check that the cpu
parameter exists so people without NUMA test configs (namely Steven Rostedt and
myself who ran into this error both in the same day with different
implementations) stop doing this trivial mistake.

End result :

Argh, I think topology.h is utterly broken :-(

Have you noticed the subtile interaction between the

include/asm-x86/topology.h :

#define numa_node_id()          0
#define cpu_to_node(cpu)        0
#define early_cpu_to_node(cpu)  0
...
#include <asm-generic/topology.h>


and
include/asm-generic/topology.h :
#ifndef cpu_to_node
#define cpu_to_node(cpu)        ((void)(cpu),0)
#endif

If any architecture decide for some reason to use a static inline rather
than a define, as currently done with node_to_first_cpu :

include/asm-x86/topology.h :
static inline int node_to_first_cpu(int node)
{
        return first_cpu(cpu_online_map);
}
...
#include <asm-generic/topology.h>

include/asm-generic/topology.h :
#ifndef node_to_first_cpu
#define node_to_first_cpu(node) ((void)(node),0)
#endif

(which will override the static inline !)

It results in an override of the arch-specific version. Nice eh ?

This patch fixes this issue by declaring static inlines in
asm-generic/topology.h and by requiring a _complete_ override of the
topology functions when an architecture needs to override them. An
architecture overriding the topology functions should not include
asm-generic/topology.h anymore.

- alpha needs careful checking, as it did not implement parent_node nor
  node_to_first_cpu previously.
- Major cross-architecture built test is required.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
CC: Steven Rostedt <rostedt@goodmis.org>
CC: Linus Torvalds <torvalds@linux-foundation.org>
CC: Peter Zijlstra <peterz@infradead.org>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: Ingo Molnar <mingo@elte.hu>
CC: rth@twiddle.net
CC: tony.luck@intel.com
CC: paulus@samba.org
CC: benh@kernel.crashing.org
CC: lethal@linux-sh.org
---
 arch/alpha/include/asm/topology.h   |   38 +++++++++++++++++++
 arch/ia64/include/asm/topology.h    |   16 ++++----
 arch/powerpc/include/asm/topology.h |   12 +++++-
 arch/sh/include/asm/topology.h      |   11 -----
 include/asm-generic/topology.h      |   70 ++++++++++++++++++++----------------
 include/asm-x86/topology.h          |   66 +++++++++++++++++++++++++--------
 6 files changed, 144 insertions(+), 69 deletions(-)

Index: linux-2.6-lttng/include/asm-x86/topology.h
===================================================================
--- linux-2.6-lttng.orig/include/asm-x86/topology.h	2008-10-03 14:41:05.000000000 -0400
+++ linux-2.6-lttng/include/asm-x86/topology.h	2008-10-03 14:41:12.000000000 -0400
@@ -38,6 +38,8 @@
 /* Node not present */
 #define NUMA_NO_NODE	(-1)
 
+struct pci_bus;
+
 #ifdef CONFIG_NUMA
 #include <linux/cpumask.h>
 #include <asm/mpspec.h>
@@ -116,7 +118,6 @@ static inline cpumask_t node_to_cpumask(
 
 #endif /* !CONFIG_DEBUG_PER_CPU_MAPS */
 
-/* Replace default node_to_cpumask_ptr with optimized version */
 #define node_to_cpumask_ptr(v, node)		\
 		const cpumask_t *v = _node_to_cpumask_ptr(node)
 
@@ -129,8 +130,14 @@ static inline cpumask_t node_to_cpumask(
  * Returns the number of the node containing Node 'node'. This
  * architecture is flat, so it is a pretty simple function!
  */
-#define parent_node(node) (node)
+static inline int parent_node(int node)
+{
+	return node;
+}
 
+/*
+ * Leave those as defines so we don't have to include linux/pci.h.
+ */
 #define pcibus_to_node(bus) __pcibus_to_node(bus)
 #define pcibus_to_cpumask(bus) __pcibus_to_cpumask(bus)
 
@@ -180,42 +187,67 @@ extern int __node_distance(int, int);
 #define node_distance(a, b) __node_distance(a, b)
 #endif
 
+/* Returns the number of the first CPU on Node 'node'. */
+static inline int node_to_first_cpu(int node)
+{
+	node_to_cpumask_ptr(mask, node);
+	return first_cpu(*mask);
+}
+
 #else /* !CONFIG_NUMA */
 
-#define numa_node_id()		0
-#define	cpu_to_node(cpu)	0
-#define	early_cpu_to_node(cpu)	0
+static inline int numa_node_id(void)
+{
+	return 0;
+}
 
-static inline const cpumask_t *_node_to_cpumask_ptr(int node)
+/*
+ * We override asm-generic/topology.h.
+ */
+static inline int cpu_to_node(int cpu)
 {
-	return &cpu_online_map;
+	return 0;
 }
+
+static inline int parent_node(int node)
+{
+	return 0;
+}
+
 static inline cpumask_t node_to_cpumask(int node)
 {
 	return cpu_online_map;
 }
+
 static inline int node_to_first_cpu(int node)
 {
 	return first_cpu(cpu_online_map);
 }
 
+static inline int pcibus_to_node(struct pci_bus *bus)
+{
+	return -1;
+}
+
+static inline cpumask_t pcibus_to_cpumask(struct pci_bus *bus)
+{
+	return pcibus_to_node(bus) == -1 ?
+		CPU_MASK_ALL :
+		node_to_cpumask(pcibus_to_node(bus));
+}
+
+static inline const cpumask_t *_node_to_cpumask_ptr(int node)
+{
+	return &cpu_online_map;
+}
+
 /* Replace default node_to_cpumask_ptr with optimized version */
 #define node_to_cpumask_ptr(v, node)		\
 		const cpumask_t *v = _node_to_cpumask_ptr(node)
 
 #define node_to_cpumask_ptr_next(v, node)	\
 			   v = _node_to_cpumask_ptr(node)
-#endif
-
-#include <asm-generic/topology.h>
 
-#ifdef CONFIG_NUMA
-/* Returns the number of the first CPU on Node 'node'. */
-static inline int node_to_first_cpu(int node)
-{
-	node_to_cpumask_ptr(mask, node);
-	return first_cpu(*mask);
-}
 #endif
 
 extern cpumask_t cpu_coregroup_map(int cpu);
Index: linux-2.6-lttng/arch/alpha/include/asm/topology.h
===================================================================
--- linux-2.6-lttng.orig/arch/alpha/include/asm/topology.h	2008-10-03 14:41:05.000000000 -0400
+++ linux-2.6-lttng/arch/alpha/include/asm/topology.h	2008-10-03 14:41:12.000000000 -0400
@@ -41,7 +41,43 @@ static inline cpumask_t node_to_cpumask(
 
 #define pcibus_to_cpumask(bus)	(cpu_online_map)
 
+struct pci_bus;
+
+static inline int parent_node(int node)
+{
+	return node;
+}
+
+static inline int pcibus_to_node(struct pci_bus *bus)
+{
+	return -1;
+}
+
+static inline cpumask_t pcibus_to_cpumask(struct pci_bus *bus)
+{
+	return pcibus_to_node(bus) == -1 ?
+		CPU_MASK_ALL :
+		node_to_cpumask(pcibus_to_node(bus));
+}
+
+/* returns pointer to cpumask for specified node */
+#define	node_to_cpumask_ptr(v, node) 					\
+		cpumask_t _##v = node_to_cpumask(node);			\
+		const cpumask_t *v = &_##v
+
+#define node_to_cpumask_ptr_next(v, node)				\
+			  _##v = node_to_cpumask(node)
+
+static inline int node_to_first_cpu(int node)
+{
+	node_to_cpumask_ptr(mask, node);
+	return first_cpu(*mask);
+}
+
+#else
+
+#include <asm-generic/topology.h>
+
 #endif /* !CONFIG_NUMA */
-# include <asm-generic/topology.h>
 
 #endif /* _ASM_ALPHA_TOPOLOGY_H */
Index: linux-2.6-lttng/arch/ia64/include/asm/topology.h
===================================================================
--- linux-2.6-lttng.orig/arch/ia64/include/asm/topology.h	2008-10-03 14:41:05.000000000 -0400
+++ linux-2.6-lttng/arch/ia64/include/asm/topology.h	2008-10-03 14:41:12.000000000 -0400
@@ -104,6 +104,15 @@ void build_cpu_to_node_map(void);
 	.nr_balance_failed	= 0,			\
 }
 
+#define pcibus_to_cpumask(bus)	(pcibus_to_node(bus) == -1 ? \
+					CPU_MASK_ALL : \
+					node_to_cpumask(pcibus_to_node(bus)) \
+				)
+
+#else
+
+#include <asm-generic/topology.h>
+
 #endif /* CONFIG_NUMA */
 
 #ifdef CONFIG_SMP
@@ -116,11 +125,4 @@ void build_cpu_to_node_map(void);
 
 extern void arch_fix_phys_package_id(int num, u32 slot);
 
-#define pcibus_to_cpumask(bus)	(pcibus_to_node(bus) == -1 ? \
-					CPU_MASK_ALL : \
-					node_to_cpumask(pcibus_to_node(bus)) \
-				)
-
-#include <asm-generic/topology.h>
-
 #endif /* _ASM_IA64_TOPOLOGY_H */
Index: linux-2.6-lttng/arch/powerpc/include/asm/topology.h
===================================================================
--- linux-2.6-lttng.orig/arch/powerpc/include/asm/topology.h	2008-10-03 14:41:05.000000000 -0400
+++ linux-2.6-lttng/arch/powerpc/include/asm/topology.h	2008-10-03 14:41:12.000000000 -0400
@@ -77,6 +77,14 @@ extern void __init dump_numa_cpu_topolog
 extern int sysfs_add_device_to_node(struct sys_device *dev, int nid);
 extern void sysfs_remove_device_from_node(struct sys_device *dev, int nid);
 
+/* returns pointer to cpumask for specified node */
+#define	node_to_cpumask_ptr(v, node) 					\
+		cpumask_t _##v = node_to_cpumask(node);			\
+		const cpumask_t *v = &_##v
+
+#define node_to_cpumask_ptr_next(v, node)				\
+			  _##v = node_to_cpumask(node)
+
 #else
 
 static inline int of_node_to_nid(struct device_node *device)
@@ -96,10 +104,10 @@ static inline void sysfs_remove_device_f
 {
 }
 
-#endif /* CONFIG_NUMA */
-
 #include <asm-generic/topology.h>
 
+#endif /* CONFIG_NUMA */
+
 #ifdef CONFIG_SMP
 #include <asm/cputable.h>
 #define smt_capable()		(cpu_has_feature(CPU_FTR_SMT))
Index: linux-2.6-lttng/arch/sh/include/asm/topology.h
===================================================================
--- linux-2.6-lttng.orig/arch/sh/include/asm/topology.h	2008-10-03 14:41:05.000000000 -0400
+++ linux-2.6-lttng/arch/sh/include/asm/topology.h	2008-10-03 14:41:12.000000000 -0400
@@ -29,17 +29,6 @@
 	.nr_balance_failed	= 0,			\
 }
 
-#define cpu_to_node(cpu)	((void)(cpu),0)
-#define parent_node(node)	((void)(node),0)
-
-#define node_to_cpumask(node)	((void)node, cpu_online_map)
-#define node_to_first_cpu(node)	((void)(node),0)
-
-#define pcibus_to_node(bus)	((void)(bus), -1)
-#define pcibus_to_cpumask(bus)	(pcibus_to_node(bus) == -1 ? \
-					CPU_MASK_ALL : \
-					node_to_cpumask(pcibus_to_node(bus)) \
-				)
 #endif
 
 #include <asm-generic/topology.h>
Index: linux-2.6-lttng/include/asm-generic/topology.h
===================================================================
--- linux-2.6-lttng.orig/include/asm-generic/topology.h	2008-10-03 14:41:13.000000000 -0400
+++ linux-2.6-lttng/include/asm-generic/topology.h	2008-10-03 14:41:16.000000000 -0400
@@ -27,44 +27,52 @@
 #ifndef _ASM_GENERIC_TOPOLOGY_H
 #define _ASM_GENERIC_TOPOLOGY_H
 
-#ifndef	CONFIG_NUMA
-
-/* Other architectures wishing to use this simple topology API should fill
-   in the below functions as appropriate in their own <asm/topology.h> file. */
-#ifndef cpu_to_node
-#define cpu_to_node(cpu)	((void)(cpu),0)
-#endif
-#ifndef parent_node
-#define parent_node(node)	((void)(node),0)
-#endif
-#ifndef node_to_cpumask
-#define node_to_cpumask(node)	((void)node, cpu_online_map)
-#endif
-#ifndef node_to_first_cpu
-#define node_to_first_cpu(node)	((void)(node),0)
-#endif
-#ifndef pcibus_to_node
-#define pcibus_to_node(bus)	((void)(bus), -1)
-#endif
-
-#ifndef pcibus_to_cpumask
-#define pcibus_to_cpumask(bus)	(pcibus_to_node(bus) == -1 ? \
-					CPU_MASK_ALL : \
-					node_to_cpumask(pcibus_to_node(bus)) \
-				)
-#endif
-
-#endif	/* CONFIG_NUMA */
+/*
+ * Other architectures wishing to use this simple topology API should fill
+ * in the below functions as appropriate in their own <asm/topology.h> file,
+ * and _don't_ include asm-generic/topology.h.
+ */
+
+struct pci_bus;
+
+static inline int cpu_to_node(int cpu)
+{
+	return 0;
+}
+
+static inline int parent_node(int node)
+{
+	return 0;
+}
+
+static inline cpumask_t node_to_cpumask(int node)
+{
+	return cpu_online_map;
+}
+
+static inline int node_to_first_cpu(int node)
+{
+	return 0;
+}
+
+static inline int pcibus_to_node(struct pci_bus *bus)
+{
+	return -1;
+}
+
+static inline cpumask_t pcibus_to_cpumask(struct pci_bus *bus)
+{
+	return pcibus_to_node(bus) == -1 ?
+		CPU_MASK_ALL :
+		node_to_cpumask(pcibus_to_node(bus));
+}
 
 /* returns pointer to cpumask for specified node */
-#ifndef node_to_cpumask_ptr
-
 #define	node_to_cpumask_ptr(v, node) 					\
 		cpumask_t _##v = node_to_cpumask(node);			\
 		const cpumask_t *v = &_##v
 
 #define node_to_cpumask_ptr_next(v, node)				\
 			  _##v = node_to_cpumask(node)
-#endif
 
 #endif /* _ASM_GENERIC_TOPOLOGY_H */

-- 
Mathieu Desnoyers
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:
[RFC PATCH 1/2 v3] Unified trace buffer, Steven Rostedt, (Thu Sep 25, 11:51 am)
[RFC PATCH v4] Unified trace buffer, Steven Rostedt, (Thu Sep 25, 6:02 pm)
Re: [RFC PATCH v4] Unified trace buffer, Masami Hiramatsu, (Thu Sep 25, 6:52 pm)
Re: [RFC PATCH v4] Unified trace buffer, Steven Rostedt, (Thu Sep 25, 7:11 pm)
Re: [RFC PATCH v4] Unified trace buffer, Masami Hiramatsu, (Thu Sep 25, 7:47 pm)
Re: [RFC PATCH v4] Unified trace buffer, Mathieu Desnoyers, (Thu Sep 25, 8:20 pm)
Re: [RFC PATCH v4] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 12:18 am)
Re: [RFC PATCH v4] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 3:45 am)
Re: [RFC PATCH v4] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 3:47 am)
Re: [RFC PATCH v4] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 4:00 am)
Re: [RFC PATCH v4] Unified trace buffer, Mathieu Desnoyers, (Fri Sep 26, 9:04 am)
Re: [RFC PATCH v4] Unified trace buffer, Masami Hiramatsu, (Fri Sep 26, 9:57 am)
[PATCH v5] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 10:11 am)
Re: [RFC PATCH v4] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 10:14 am)
Re: [PATCH v5] Unified trace buffer, Arnaldo Carvalho de Melo, (Fri Sep 26, 10:31 am)
Re: [PATCH v5] Unified trace buffer, Linus Torvalds, (Fri Sep 26, 10:37 am)
Re: [PATCH v5] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 10:46 am)
[PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 11:05 am)
Re: [PATCH v6] Unified trace buffer, Richard Holden, (Fri Sep 26, 11:30 am)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 11:39 am)
Re: [PATCH v6] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 11:59 am)
Re: [PATCH v6] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 12:14 pm)
Re: [PATCH v6] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 12:17 pm)
Re: [PATCH v6] Unified trace buffer, Martin Bligh, (Fri Sep 26, 12:46 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 12:52 pm)
Re: [PATCH v6] Unified trace buffer, Peter Zijlstra, (Fri Sep 26, 1:08 pm)
[PATCH v7] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 2:13 pm)
Re: [PATCH v6] Unified trace buffer, Masami Hiramatsu, (Fri Sep 26, 2:14 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 2:26 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 2:37 pm)
Re: [PATCH v6] Unified trace buffer, Mike Travis, (Fri Sep 26, 3:28 pm)
Re: [PATCH v6] Unified trace buffer, Arnaldo Carvalho de Melo, (Fri Sep 26, 3:31 pm)
Re: [PATCH v6] Unified trace buffer, Arjan van de Ven, (Fri Sep 26, 4:16 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 4:56 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 4:58 pm)
Re: [PATCH v6] Unified trace buffer, Mike Travis, (Fri Sep 26, 5:05 pm)
Re: [PATCH v6] Unified trace buffer, Linus Torvalds, (Fri Sep 26, 5:13 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 5:18 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 5:23 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 5:28 pm)
Re: [PATCH v6] Unified trace buffer, Mike Travis, (Fri Sep 26, 5:46 pm)
Re: [PATCH v6] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 5:52 pm)
[PATCH v8] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 7:02 pm)
[PATCH v9] Unified trace buffer, Steven Rostedt, (Fri Sep 26, 11:06 pm)
Re: [PATCH v5] Unified trace buffer, Ingo Molnar, (Sat Sep 27, 10:02 am)
Re: [PATCH v5] Unified trace buffer, Steven Rostedt, (Sat Sep 27, 10:18 am)
Re: [PATCH v9] Unified trace buffer, Ingo Molnar, (Sat Sep 27, 11:39 am)
Re: [PATCH v9] Unified trace buffer, Steven Rostedt, (Sat Sep 27, 12:24 pm)
Re: [PATCH v9] Unified trace buffer, Ingo Molnar, (Sat Sep 27, 12:41 pm)
Re: [PATCH v9] Unified trace buffer, Steven Rostedt, (Sat Sep 27, 12:54 pm)
Re: [PATCH v9] Unified trace buffer, Ingo Molnar, (Sat Sep 27, 1:00 pm)
Re: [PATCH v9] Unified trace buffer, Martin Bligh, (Sat Sep 27, 1:07 pm)
Re: [PATCH v9] Unified trace buffer, Ingo Molnar, (Sat Sep 27, 1:34 pm)
Re: [PATCH v9] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 8:05 am)
[PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 9:10 am)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 9:11 am)
Re: [PATCH v10 Golden] Unified trace buffer, Mathieu Desnoyers, (Mon Sep 29, 4:35 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 5:01 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Mathieu Desnoyers, (Mon Sep 29, 5:03 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 5:12 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Mathieu Desnoyers, (Mon Sep 29, 8:46 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Mon Sep 29, 9:00 pm)
Re: [PATCH v10 Golden] Unified trace buffer, Jonathan Corbet, (Tue Sep 30, 8:20 am)
Re: [PATCH v10 Golden] Unified trace buffer, Peter Zijlstra, (Tue Sep 30, 8:54 am)
Re: [PATCH v10 Golden] Unified trace buffer, Linus Torvalds, (Tue Sep 30, 9:38 am)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Tue Sep 30, 9:48 am)
Re: [PATCH v10 Golden] Unified trace buffer, Peter Zijlstra, (Tue Sep 30, 10:00 am)
Re: [PATCH v10 Golden] Unified trace buffer, Linus Torvalds, (Tue Sep 30, 10:01 am)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Tue Sep 30, 10:41 am)
Re: [PATCH v10 Golden] Unified trace buffer, Peter Zijlstra, (Tue Sep 30, 10:49 am)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Tue Sep 30, 10:56 am)
Re: [PATCH v10 Golden] Unified trace buffer, Steven Rostedt, (Tue Sep 30, 11:02 am)
[PATCH] ring_buffer: allocate buffer page pointer, Steven Rostedt, (Wed Oct 1, 8:14 am)
Re: [PATCH] ring_buffer: allocate buffer page pointer, Mathieu Desnoyers, (Wed Oct 1, 10:36 am)
Re: [PATCH] ring_buffer: allocate buffer page pointer, Steven Rostedt, (Wed Oct 1, 10:49 am)
Re: [PATCH] ring_buffer: allocate buffer page pointer, Mathieu Desnoyers, (Wed Oct 1, 11:21 am)
[PATCH] ring-buffer: fix build error, Ingo Molnar, (Thu Oct 2, 2:05 am)
Re: [PATCH] ring_buffer: allocate buffer page pointer, Andrew Morton, (Thu Oct 2, 2:06 am)
Re: [PATCH] ring_buffer: allocate buffer page pointer, Steven Rostedt, (Thu Oct 2, 6:06 am)
Re: [boot crash] Re: [PATCH] ring-buffer: fix build error, Steven Rostedt, (Thu Oct 2, 6:16 am)
Re: [boot crash] Re: [PATCH] ring-buffer: fix build error, Steven Rostedt, (Thu Oct 2, 6:17 am)
Re: [boot crash] Re: [PATCH] ring-buffer: fix build error, Steven Rostedt, (Thu Oct 2, 11:27 am)
[PATCH] ring_buffer: map to cpu not page, Steven Rostedt, (Thu Oct 2, 4:18 pm)
Re: [PATCH] ring_buffer: map to cpu not page, Steven Rostedt, (Thu Oct 2, 4:36 pm)
[PATCH] x86 Topology cpu_to_node parameter check, Mathieu Desnoyers, (Thu Oct 2, 9:56 pm)
Re: [PATCH] x86 Topology cpu_to_node parameter check, Steven Rostedt, (Thu Oct 2, 10:20 pm)
Re: [PATCH] ring_buffer: map to cpu not page, Ingo Molnar, (Fri Oct 3, 12:27 am)
Re: [PATCH] x86 Topology cpu_to_node parameter check, Mathieu Desnoyers, (Fri Oct 3, 8:56 am)
Re: [PATCH] x86 Topology cpu_to_node parameter check, Steven Rostedt, (Fri Oct 3, 9:26 am)
Re: [PATCH] x86 Topology cpu_to_node parameter check, Mathieu Desnoyers, (Fri Oct 3, 10:21 am)
Re: [PATCH] x86 Topology cpu_to_node parameter check, Steven Rostedt, (Fri Oct 3, 10:54 am)
[PATCH] topology.h define mess fix, Mathieu Desnoyers, (Fri Oct 3, 11:53 am)
RE: [PATCH] topology.h define mess fix, Luck, Tony, (Fri Oct 3, 1:14 pm)
[PATCH] topology.h define mess fix v2, Mathieu Desnoyers, (Fri Oct 3, 3:47 pm)