Skip to content

Commit

Permalink
[PATCH] blktrace: uninline trace_note()
Browse files Browse the repository at this point in the history
It's too large to inline. Additionally clean it up, by fast pathing
the likely path.

Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
Jens Axboe committed Dec 4, 2006
1 parent d916faa commit d3d9d2a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions block/blktrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,25 @@ static unsigned int blktrace_seq __read_mostly = 1;
/*
* Send out a notify message.
*/
static inline unsigned int trace_note(struct blk_trace *bt,
pid_t pid, int action,
const void *data, size_t len)
static unsigned int trace_note(struct blk_trace *bt, pid_t pid, int action,
const void *data, size_t len)
{
struct blk_io_trace *t;
int cpu = smp_processor_id();

t = relay_reserve(bt->rchan, sizeof(*t) + len);
if (t == NULL)
return 0;

t->magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION;
t->time = sched_clock() - per_cpu(blk_trace_cpu_offset, cpu);
t->device = bt->dev;
t->action = action;
t->pid = pid;
t->cpu = cpu;
t->pdu_len = len;
memcpy((void *) t + sizeof(*t), data, len);
if (t) {
const int cpu = smp_processor_id();

t->magic = BLK_IO_TRACE_MAGIC | BLK_IO_TRACE_VERSION;
t->time = sched_clock() - per_cpu(blk_trace_cpu_offset, cpu);
t->device = bt->dev;
t->action = action;
t->pid = pid;
t->cpu = cpu;
t->pdu_len = len;
memcpy((void *) t + sizeof(*t), data, len);
}

return blktrace_seq;
}

Expand Down

0 comments on commit d3d9d2a

Please sign in to comment.