diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-12-03 12:39:53 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-08 17:47:15 +0300 |
commit | 241771ef016b5c0c83cd7a4372a74321c973c1e6 (patch) | |
tree | 5893d72f1721af34daee82f27449bd35c9f65363 /arch/x86/kernel/syscall_table_32.S | |
parent | e7bc62b6b3aeaa8849f8383e0cfb7ca6c003adc6 (diff) | |
download | linux-241771ef016b5c0c83cd7a4372a74321c973c1e6.tar.xz |
performance counters: x86 support
Implement performance counters for x86 Intel CPUs.
It's simplified right now: the PERFMON CPU feature is assumed,
which is available in Core2 and later Intel CPUs.
The design is flexible to be extended to more CPU types as well.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/syscall_table_32.S')
-rw-r--r-- | arch/x86/kernel/syscall_table_32.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/syscall_table_32.S b/arch/x86/kernel/syscall_table_32.S index d44395ff34c3..496726ddcea1 100644 --- a/arch/x86/kernel/syscall_table_32.S +++ b/arch/x86/kernel/syscall_table_32.S @@ -332,3 +332,4 @@ ENTRY(sys_call_table) .long sys_dup3 /* 330 */ .long sys_pipe2 .long sys_inotify_init1 + .long sys_perf_counter_open |