Re: [PATCH 02/15] tracing: Use NUMA allocation for per-cpu ringbuffer pages

From: Ingo Molnar
Date: Mon Jun 13 2011 - 06:09:33 EST



* Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:

> for (i = 0; i < nr_pages; i++) {
> + struct page *page;
> bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),

missing separation between local variable definitions and the first C
statement.

Same mistake repeats elsewhere in the patch as well.

> + page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL,
> + 0);

that linebreak is pointless.

> + info->spare = ring_buffer_alloc_read_page(info->tr->buffer,
> + info->cpu);

ditto.

Thanks,

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/