Skip to content

Commit

Permalink
perf: Remove more code from the fastpath
Browse files Browse the repository at this point in the history
Sanity checks cost instructions.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Steven Rostedt <rostedt@goodmis.org>
LKML-Reference: <20100521090710.852926930@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed May 21, 2010
1 parent 3cafa9f commit a94ffaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 18 deletions.
2 changes: 0 additions & 2 deletions include/linux/perf_event.h
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,6 @@ struct perf_cpu_context {
struct perf_output_handle {
struct perf_event *event;
struct perf_mmap_data *data;
unsigned long head;
unsigned long offset;
unsigned long wakeup;
unsigned long size;
void *addr;
Expand Down
20 changes: 4 additions & 16 deletions kernel/perf_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -2967,20 +2967,11 @@ static void perf_output_put_handle(struct perf_output_handle *handle)
preempt_enable();
}

void perf_output_copy(struct perf_output_handle *handle,
__always_inline void perf_output_copy(struct perf_output_handle *handle,
const void *buf, unsigned int len)
{
handle->offset += len;

/*
* Check we didn't copy past our reservation window, taking the
* possible unsigned int wrap into account.
*/
if (WARN_ON_ONCE(((long)(handle->head - handle->offset)) < 0))
return;

do {
unsigned long size = min(handle->size, len);
unsigned long size = min_t(unsigned long, handle->size, len);

memcpy(handle->addr, buf, size);

Expand Down Expand Up @@ -3055,15 +3046,12 @@ int perf_output_begin(struct perf_output_handle *handle,
goto fail;
} while (local_cmpxchg(&data->head, offset, head) != offset);

handle->offset = offset;
handle->head = head;

if (head - local_read(&data->wakeup) > data->watermark)
local_add(data->watermark, &data->wakeup);

handle->page = handle->offset >> (PAGE_SHIFT + page_order(data));
handle->page = offset >> (PAGE_SHIFT + page_order(data));
handle->page &= data->nr_pages - 1;
handle->size = handle->offset & ((PAGE_SIZE << page_order(data)) - 1);
handle->size = offset & ((PAGE_SIZE << page_order(data)) - 1);
handle->addr = data->data_pages[handle->page];
handle->addr += handle->size;
handle->size = (PAGE_SIZE << page_order(data)) - handle->size;
Expand Down

0 comments on commit a94ffaa

Please sign in to comment.