diff options
author | KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> | 2006-03-28 04:56:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 12:16:05 -0500 |
commit | 3c30a75256a5863705fb7658cb0b2e3bb09a13df (patch) | |
tree | bfd7f1f84592c6cebd33bd2cc2ef710cf9fd48d1 /Documentation/RCU | |
parent | c8912599c677f58fd3a5e5420c9cb6df62b2d8fa (diff) |
[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')
-rw-r--r-- | Documentation/RCU/whatisRCU.txt | 2 |
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. | |||
605 | { | 605 | { |
606 | int cpu; | 606 | int cpu; |
607 | 607 | ||
608 | for_each_cpu(cpu) | 608 | for_each_possible_cpu(cpu) |
609 | run_on(cpu); | 609 | run_on(cpu); |
610 | } | 610 | } |
611 | 611 | ||