diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-04-01 15:54:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-01 18:49:02 -0400 |
commit | 8302294f43250dc337108c51882a6007f2b1e2e0 (patch) | |
tree | 85acd4440799c46a372df9cad170fa0c21e59096 /drivers/oprofile | |
parent | 4fe70410d9a219dabb47328effccae7e7f2a6e26 (diff) | |
parent | 2e572895bf3203e881356a4039ab0fa428ed2639 (diff) |
Merge branch 'tracing/core-v2' into tracing-for-linus
Conflicts:
include/linux/slub_def.h
lib/Kconfig.debug
mm/slob.c
mm/slub.c
Diffstat (limited to 'drivers/oprofile')
-rw-r--r-- | drivers/oprofile/cpu_buffer.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index e76d715e4342..f0e99d4c066b 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
@@ -161,7 +161,7 @@ struct op_sample | |||
161 | { | 161 | { |
162 | entry->event = ring_buffer_lock_reserve | 162 | entry->event = ring_buffer_lock_reserve |
163 | (op_ring_buffer_write, sizeof(struct op_sample) + | 163 | (op_ring_buffer_write, sizeof(struct op_sample) + |
164 | size * sizeof(entry->sample->data[0]), &entry->irq_flags); | 164 | size * sizeof(entry->sample->data[0])); |
165 | if (entry->event) | 165 | if (entry->event) |
166 | entry->sample = ring_buffer_event_data(entry->event); | 166 | entry->sample = ring_buffer_event_data(entry->event); |
167 | else | 167 | else |
@@ -178,8 +178,7 @@ struct op_sample | |||
178 | 178 | ||
179 | int op_cpu_buffer_write_commit(struct op_entry *entry) | 179 | int op_cpu_buffer_write_commit(struct op_entry *entry) |
180 | { | 180 | { |
181 | return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event, | 181 | return ring_buffer_unlock_commit(op_ring_buffer_write, entry->event); |
182 | entry->irq_flags); | ||
183 | } | 182 | } |
184 | 183 | ||
185 | struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu) | 184 | struct op_sample *op_cpu_buffer_read_entry(struct op_entry *entry, int cpu) |