Commit 02d43b1d13a0a55a75bb5c5f98d2b13dbe71ecf9

Authored by Mathieu Desnoyers
Committed by Ingo Molnar
1 parent d9d060a98f

documentation: local_ops fix on_each_cpu

Impact: update code example in documentation

* Dr. David Alan Gilbert (dave@treblig.org) wrote:
[...]
>  I noticed while looking at something else that the example in
>  local_ops.txt still has the 4 operand on_each_cpu in the latest git;
>  I don't know the rest of the code around there very well so I thought
>  it best to mention it rather than post a patch.

Reported-by: Dr. David Alan Gilbert <dave@treblig.org>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

Documentation/local_ops.txt
... ... @@ -149,7 +149,7 @@
149 149 int cpu;
150 150  
151 151 /* Increment the counters */
152   - on_each_cpu(test_each, NULL, 0, 1);
  152 + on_each_cpu(test_each, NULL, 1);
153 153 /* Read all the counters */
154 154 printk("Counters read from CPU %d\n", smp_processor_id());
155 155 for_each_online_cpu(cpu) {