Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 140694
b: refs/heads/master
c: 304cc6a
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Feb 6, 2009
1 parent e84e630 commit 5d56891
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 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: b6f11df26fdc28324cf9c9e3b77f2dc985c1bb13
refs/heads/master: 304cc6ae1bf7a8e6d00053fbe0b7e2b26cdddda2
5 changes: 2 additions & 3 deletions trunk/drivers/oprofile/cpu_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ struct op_sample
{
entry->event = ring_buffer_lock_reserve
(op_ring_buffer_write, sizeof(struct op_sample) +
size * sizeof(entry->sample->data[0]), &entry->irq_flags);
size * sizeof(entry->sample->data[0]));
if (entry->event)
entry->sample = ring_buffer_event_data(entry->event);
else
Expand All @@ -178,8 +178,7 @@ struct op_sample

int op_cpu_buffer_write_commit(struct op_entry *entry)
{
return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event,
entry->irq_flags);
return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event);
}

struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu)
Expand Down

0 comments on commit 5d56891

Please sign in to comment.