summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-12-05 06:39:41 +0100
committerLinus Torvalds <torvalds@linux-foundation.org>2008-12-05 06:39:41 +0100
commit3b666ce6a246cb9b89d335738d84af36883b911d (patch)
tree59ef04850352e6e748c308000ea4fe6e221d0dfc /Documentation
parentMerge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus (diff)
parentcheck_hung_task(): unsigned sysctl_hung_task_warnings cannot be less than 0 (diff)
downloadlinux-3b666ce6a246cb9b89d335738d84af36883b911d.tar.xz
linux-3b666ce6a246cb9b89d335738d84af36883b911d.zip
Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: check_hung_task(): unsigned sysctl_hung_task_warnings cannot be less than 0 documentation: local_ops fix on_each_cpu
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/local_ops.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/local_ops.txt b/Documentation/local_ops.txt
index f4f8b1c6c8ba..23045b8b50f0 100644
--- a/Documentation/local_ops.txt
+++ b/Documentation/local_ops.txt
@@ -149,7 +149,7 @@ static void do_test_timer(unsigned long data)
int cpu;
/* Increment the counters */
- on_each_cpu(test_each, NULL, 0, 1);
+ on_each_cpu(test_each, NULL, 1);
/* Read all the counters */
printk("Counters read from CPU %d\n", smp_processor_id());
for_each_online_cpu(cpu) {