ring_buffer: map to cpu not page
authorSteven Rostedt <rostedt@goodmis.org>
Thu, 2 Oct 2008 23:18:09 +0000 (19:18 -0400)
committerIngo Molnar <mingo@elte.hu>
Tue, 14 Oct 2008 08:39:15 +0000 (10:39 +0200)
commitaa1e0e3bcf95ce684d005bedb16e5d4559455685
tree579416746452a880ca42de6c2885419e49a44e45
parenteb7fa935274bb233686fdf7a53f40c5d9ee76ed6
ring_buffer: map to cpu not page

My original patch had a compile bug when NUMA was configured. I
referenced cpu when it should have been cpu_buffer->cpu.

Ingo quickly fixed this bug by replacing cpu with 'i' because that
was the loop counter. Unfortunately, the 'i' was the counter of
pages, not CPUs. This caused a crash when the number of pages allocated
for the buffers exceeded the number of pages, which would usually
be the case.

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/trace/ring_buffer.c