aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-06-17 13:10:28 -0400
committerIngo Molnar <mingo@elte.hu>2009-06-17 13:10:28 -0400
commit4f6e1fe1d8ba3d9f4fb52dd006da9714d75243cf (patch)
treee528e185d3f166c9bc7d628dce87c366e5fe5151 /include/linux
parent65795efbd380a832ae508b04dba8f8e53f0b84d9 (diff)
parentb72f7fa9788c85866da10d7b2091077397018b7a (diff)
Merge branch 'auto' of git://git.kernel.org/pub/scm/linux/kernel/git/rric/oprofile into oprofile
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/oprofile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/oprofile.h b/include/linux/oprofile.h
index 1d9518bc4c58..d68d2ed94f15 100644
--- a/include/linux/oprofile.h
+++ b/include/linux/oprofile.h
@@ -171,7 +171,6 @@ struct op_sample;
171struct op_entry { 171struct op_entry {
172 struct ring_buffer_event *event; 172 struct ring_buffer_event *event;
173 struct op_sample *sample; 173 struct op_sample *sample;
174 unsigned long irq_flags;
175 unsigned long size; 174 unsigned long size;
176 unsigned long *data; 175 unsigned long *data;
177}; 176};
@@ -180,6 +179,7 @@ void oprofile_write_reserve(struct op_entry *entry,
180 struct pt_regs * const regs, 179 struct pt_regs * const regs,
181 unsigned long pc, int code, int size); 180 unsigned long pc, int code, int size);
182int oprofile_add_data(struct op_entry *entry, unsigned long val); 181int oprofile_add_data(struct op_entry *entry, unsigned long val);
182int oprofile_add_data64(struct op_entry *entry, u64 val);
183int oprofile_write_commit(struct op_entry *entry); 183int oprofile_write_commit(struct op_entry *entry);
184 184
185#endif /* OPROFILE_H */ 185#endif /* OPROFILE_H */