提交 7ea59064 编写于 作者: V Vaibhav Nagarnaik 提交者: Steven Rostedt

tracing: Use NUMA allocation for per-cpu ring buffer pages

The tracing ring buffer is a group of per-cpu ring buffers where
allocation and logging is done on a per-cpu basis. The events that are
generated on a particular CPU are logged in the corresponding buffer.
This is to provide wait-free writes between CPUs and good NUMA node
locality while accessing the ring buffer.

However, the allocation routines consider NUMA locality only for buffer
page metadata and not for the actual buffer page. This causes the pages
to be allocated on the NUMA node local to the CPU where the allocation
routine is running at the time.

This patch fixes the problem by using a NUMA node specific allocation
routine so that the pages are allocated from a NUMA node local to the
logging CPU.

I tested with the getuid_microbench from autotest. It is a simple binary
that calls getuid() in a loop and measures the average time for the
syscall to complete. The following command was used to test:
$ getuid_microbench 1000000

Compared the numbers found on kernel with and without this patch and
found that logging latency decreases by 30-50 ns/call.
tracing with non-NUMA allocation - 569 ns/call
tracing with NUMA allocation     - 512 ns/call
Signed-off-by: NVaibhav Nagarnaik <vnagarnaik@google.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Michael Rubin <mrubin@google.com>
Cc: David Sharp <dhsharp@google.com>
Link: http://lkml.kernel.org/r/1304470602-20366-1-git-send-email-vnagarnaik@google.comSigned-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 e7e2ee89
...@@ -169,7 +169,7 @@ void ring_buffer_set_clock(struct ring_buffer *buffer, ...@@ -169,7 +169,7 @@ void ring_buffer_set_clock(struct ring_buffer *buffer,
size_t ring_buffer_page_len(void *page); size_t ring_buffer_page_len(void *page);
void *ring_buffer_alloc_read_page(struct ring_buffer *buffer); void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu);
void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data); void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data);
int ring_buffer_read_page(struct ring_buffer *buffer, void **data_page, int ring_buffer_read_page(struct ring_buffer *buffer, void **data_page,
size_t len, int cpu, int full); size_t len, int cpu, int full);
......
...@@ -997,13 +997,14 @@ static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer, ...@@ -997,13 +997,14 @@ static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
unsigned nr_pages) unsigned nr_pages)
{ {
struct buffer_page *bpage, *tmp; struct buffer_page *bpage, *tmp;
unsigned long addr;
LIST_HEAD(pages); LIST_HEAD(pages);
unsigned i; unsigned i;
WARN_ON(!nr_pages); WARN_ON(!nr_pages);
for (i = 0; i < nr_pages; i++) { for (i = 0; i < nr_pages; i++) {
struct page *page;
bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()), bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
GFP_KERNEL, cpu_to_node(cpu_buffer->cpu)); GFP_KERNEL, cpu_to_node(cpu_buffer->cpu));
if (!bpage) if (!bpage)
...@@ -1013,10 +1014,11 @@ static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer, ...@@ -1013,10 +1014,11 @@ static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
list_add(&bpage->list, &pages); list_add(&bpage->list, &pages);
addr = __get_free_page(GFP_KERNEL); page = alloc_pages_node(cpu_to_node(cpu_buffer->cpu),
if (!addr) GFP_KERNEL, 0);
if (!page)
goto free_pages; goto free_pages;
bpage->page = (void *)addr; bpage->page = page_address(page);
rb_init_page(bpage->page); rb_init_page(bpage->page);
} }
...@@ -1045,7 +1047,7 @@ rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu) ...@@ -1045,7 +1047,7 @@ rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu)
{ {
struct ring_buffer_per_cpu *cpu_buffer; struct ring_buffer_per_cpu *cpu_buffer;
struct buffer_page *bpage; struct buffer_page *bpage;
unsigned long addr; struct page *page;
int ret; int ret;
cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()), cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
...@@ -1067,10 +1069,10 @@ rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu) ...@@ -1067,10 +1069,10 @@ rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu)
rb_check_bpage(cpu_buffer, bpage); rb_check_bpage(cpu_buffer, bpage);
cpu_buffer->reader_page = bpage; cpu_buffer->reader_page = bpage;
addr = __get_free_page(GFP_KERNEL); page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
if (!addr) if (!page)
goto fail_free_reader; goto fail_free_reader;
bpage->page = (void *)addr; bpage->page = page_address(page);
rb_init_page(bpage->page); rb_init_page(bpage->page);
INIT_LIST_HEAD(&cpu_buffer->reader_page->list); INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
...@@ -1314,7 +1316,6 @@ int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size) ...@@ -1314,7 +1316,6 @@ int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size)
unsigned nr_pages, rm_pages, new_pages; unsigned nr_pages, rm_pages, new_pages;
struct buffer_page *bpage, *tmp; struct buffer_page *bpage, *tmp;
unsigned long buffer_size; unsigned long buffer_size;
unsigned long addr;
LIST_HEAD(pages); LIST_HEAD(pages);
int i, cpu; int i, cpu;
...@@ -1375,16 +1376,17 @@ int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size) ...@@ -1375,16 +1376,17 @@ int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size)
for_each_buffer_cpu(buffer, cpu) { for_each_buffer_cpu(buffer, cpu) {
for (i = 0; i < new_pages; i++) { for (i = 0; i < new_pages; i++) {
struct page *page;
bpage = kzalloc_node(ALIGN(sizeof(*bpage), bpage = kzalloc_node(ALIGN(sizeof(*bpage),
cache_line_size()), cache_line_size()),
GFP_KERNEL, cpu_to_node(cpu)); GFP_KERNEL, cpu_to_node(cpu));
if (!bpage) if (!bpage)
goto free_pages; goto free_pages;
list_add(&bpage->list, &pages); list_add(&bpage->list, &pages);
addr = __get_free_page(GFP_KERNEL); page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
if (!addr) if (!page)
goto free_pages; goto free_pages;
bpage->page = (void *)addr; bpage->page = page_address(page);
rb_init_page(bpage->page); rb_init_page(bpage->page);
} }
} }
...@@ -3730,16 +3732,16 @@ EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu); ...@@ -3730,16 +3732,16 @@ EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
* Returns: * Returns:
* The page allocated, or NULL on error. * The page allocated, or NULL on error.
*/ */
void *ring_buffer_alloc_read_page(struct ring_buffer *buffer) void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu)
{ {
struct buffer_data_page *bpage; struct buffer_data_page *bpage;
unsigned long addr; struct page *page;
addr = __get_free_page(GFP_KERNEL); page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
if (!addr) if (!page)
return NULL; return NULL;
bpage = (void *)addr; bpage = page_address(page);
rb_init_page(bpage); rb_init_page(bpage);
......
...@@ -106,7 +106,7 @@ static enum event_status read_page(int cpu) ...@@ -106,7 +106,7 @@ static enum event_status read_page(int cpu)
int inc; int inc;
int i; int i;
bpage = ring_buffer_alloc_read_page(buffer); bpage = ring_buffer_alloc_read_page(buffer, cpu);
if (!bpage) if (!bpage)
return EVENT_DROPPED; return EVENT_DROPPED;
......
...@@ -3697,7 +3697,7 @@ tracing_buffers_read(struct file *filp, char __user *ubuf, ...@@ -3697,7 +3697,7 @@ tracing_buffers_read(struct file *filp, char __user *ubuf,
return 0; return 0;
if (!info->spare) if (!info->spare)
info->spare = ring_buffer_alloc_read_page(info->tr->buffer); info->spare = ring_buffer_alloc_read_page(info->tr->buffer, info->cpu);
if (!info->spare) if (!info->spare)
return -ENOMEM; return -ENOMEM;
...@@ -3854,7 +3854,7 @@ tracing_buffers_splice_read(struct file *file, loff_t *ppos, ...@@ -3854,7 +3854,7 @@ tracing_buffers_splice_read(struct file *file, loff_t *ppos,
ref->ref = 1; ref->ref = 1;
ref->buffer = info->tr->buffer; ref->buffer = info->tr->buffer;
ref->page = ring_buffer_alloc_read_page(ref->buffer); ref->page = ring_buffer_alloc_read_page(ref->buffer, info->cpu);
if (!ref->page) { if (!ref->page) {
kfree(ref); kfree(ref);
break; break;
...@@ -3863,8 +3863,7 @@ tracing_buffers_splice_read(struct file *file, loff_t *ppos, ...@@ -3863,8 +3863,7 @@ tracing_buffers_splice_read(struct file *file, loff_t *ppos,
r = ring_buffer_read_page(ref->buffer, &ref->page, r = ring_buffer_read_page(ref->buffer, &ref->page,
len, info->cpu, 1); len, info->cpu, 1);
if (r < 0) { if (r < 0) {
ring_buffer_free_read_page(ref->buffer, ring_buffer_free_read_page(ref->buffer, ref->page);
ref->page);
kfree(ref); kfree(ref);
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册