mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 06:50:08 +00:00
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>
This commit is contained in:
parent
eb7fa93527
commit
aa1e0e3bcf
@ -232,7 +232,7 @@ static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
|
|||||||
|
|
||||||
for (i = 0; i < nr_pages; i++) {
|
for (i = 0; i < nr_pages; i++) {
|
||||||
page = kzalloc_node(ALIGN(sizeof(*page), cache_line_size()),
|
page = kzalloc_node(ALIGN(sizeof(*page), cache_line_size()),
|
||||||
GFP_KERNEL, cpu_to_node(i));
|
GFP_KERNEL, cpu_to_node(cpu_buffer->cpu));
|
||||||
if (!page)
|
if (!page)
|
||||||
goto free_pages;
|
goto free_pages;
|
||||||
list_add(&page->list, &pages);
|
list_add(&page->list, &pages);
|
||||||
|
Loading…
Reference in New Issue
Block a user