summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2004-08-23 21:34:21 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-23 21:34:21 -0700
commitad30876495fea954eb7f344b00e92900f5db6a77 (patch)
treec053a478222b0e4ca3b83c47532ab5af44ae1b15 /include/linux
parent597648bbd0685e62e568d112e7477b4a3b618ed3 (diff)
[PATCH] Read cpumasks every time when exporting through sysfs
Paul Jackson points out that the sysfs code saves a node's cpumask in the sysfs node, although it can change with CPU hotplug. Don't do this. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/node.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/node.h b/include/linux/node.h
index 6b8d64c16e5e..6e0a697e594e 100644
--- a/include/linux/node.h
+++ b/include/linux/node.h
@@ -23,7 +23,6 @@
#include <linux/cpumask.h>
struct node {
- cpumask_t cpumap; /* Bitmap of CPUs on the Node */
struct sys_device sysdev;
};