Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 146166
b: refs/heads/master
c: 168b6b1
h: refs/heads/master
v: v3
  • Loading branch information
Steven Rostedt authored and Steven Rostedt committed May 12, 2009
1 parent c1017dd commit 9567b7a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88eb0125362f2ab272cbaf84252cf101ddc2dec9
refs/heads/master: 168b6b1d0594c7866caa73b12f3b8d91075695f2
20 changes: 10 additions & 10 deletions trunk/kernel/trace/ring_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1400,7 +1400,7 @@ rb_reserve_next_event(struct ring_buffer_per_cpu *cpu_buffer,
unsigned long length)
{
struct ring_buffer_event *event;
u64 ts, delta;
u64 ts, delta = 0;
int commit = 0;
int nr_loops = 0;

Expand Down Expand Up @@ -1431,20 +1431,21 @@ rb_reserve_next_event(struct ring_buffer_per_cpu *cpu_buffer,
if (likely(cpu_buffer->tail_page == cpu_buffer->commit_page &&
rb_page_write(cpu_buffer->tail_page) ==
rb_commit_index(cpu_buffer))) {
u64 diff;

delta = ts - cpu_buffer->write_stamp;
diff = ts - cpu_buffer->write_stamp;

/* make sure this delta is calculated here */
/* make sure this diff is calculated here */
barrier();

/* Did the write stamp get updated already? */
if (unlikely(ts < cpu_buffer->write_stamp))
delta = 0;
goto get_event;

else if (unlikely(test_time_stamp(delta))) {
delta = diff;
if (unlikely(test_time_stamp(delta))) {

commit = rb_add_time_stamp(cpu_buffer, &ts, &delta);

if (commit == -EBUSY)
return NULL;

Expand All @@ -1453,12 +1454,11 @@ rb_reserve_next_event(struct ring_buffer_per_cpu *cpu_buffer,

RB_WARN_ON(cpu_buffer, commit < 0);
}
} else
/* Non commits have zero deltas */
delta = 0;
}

get_event:
event = __rb_reserve_next(cpu_buffer, 0, length, &ts);
if (PTR_ERR(event) == -EAGAIN)
if (unlikely(PTR_ERR(event) == -EAGAIN))
goto again;

if (!event) {
Expand Down

0 comments on commit 9567b7a

Please sign in to comment.