summaryrefslogtreecommitdiffstats
path: root/Documentation/RCU/whatisRCU.txt
diff options
context:
space:
mode:
authorKAMEZAWA Hiroyuki2006-03-28 11:56:39 +0200
committerLinus Torvalds2006-03-28 19:16:05 +0200
commit3c30a75256a5863705fb7658cb0b2e3bb09a13df (patch)
treebfd7f1f84592c6cebd33bd2cc2ef710cf9fd48d1 /Documentation/RCU/whatisRCU.txt
parent[PATCH] for_each_possible_cpu: i386 (diff)
downloadkernel-qcow2-linux-3c30a75256a5863705fb7658cb0b2e3bb09a13df.tar.gz
kernel-qcow2-linux-3c30a75256a5863705fb7658cb0b2e3bb09a13df.tar.xz
kernel-qcow2-linux-3c30a75256a5863705fb7658cb0b2e3bb09a13df.zip
[PATCH] for_each_possible_cpu: documentaion
Replace for_each_cpu with for_each_possible_cpu. Modifies occurences in documentaion. for_each_cpu in whatisRCU.txt should be for_each_online_cpu ??? (I'm not sure..) Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/RCU/whatisRCU.txt')
-rw-r--r--Documentation/RCU/whatisRCU.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/RCU/whatisRCU.txt b/Documentation/RCU/whatisRCU.txt
index b4ea51ad3610..07cb93b82ba9 100644
--- a/Documentation/RCU/whatisRCU.txt
+++ b/Documentation/RCU/whatisRCU.txt
@@ -605,7 +605,7 @@ are the same as those shown in the preceding section, so they are omitted.
{
int cpu;
- for_each_cpu(cpu)
+ for_each_possible_cpu(cpu)
run_on(cpu);
}