aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/ptrace-abi.h
diff options
context:
space:
mode:
authorMarkus Metzger <markus.t.metzger@intel.com>2008-01-30 07:32:03 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:32:03 -0500
commite6ae5d9540727b0e2e5e2fbeb683c84671ed0a31 (patch)
tree921ac1e9d98478b4d3b23171e965b868df7e36a9 /include/asm-x86/ptrace-abi.h
parentda35c37198132abebf877cca2ad3c6d9bcd84282 (diff)
x86, ptrace: support 32bit-cross-64bit BTS recording
Support BTS recording of 32bit and 64bit tasks from 32bit or 64bit tasks. Signed-off-by: Markus Metzger <markus.t.metzger@intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/ptrace-abi.h')
-rw-r--r--include/asm-x86/ptrace-abi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/ptrace-abi.h b/include/asm-x86/ptrace-abi.h
index cf2fe4633ee5..32fe137822bf 100644
--- a/include/asm-x86/ptrace-abi.h
+++ b/include/asm-x86/ptrace-abi.h
@@ -85,9 +85,9 @@
85*/ 85*/
86struct ptrace_bts_config { 86struct ptrace_bts_config {
87 /* requested or actual size of BTS buffer in bytes */ 87 /* requested or actual size of BTS buffer in bytes */
88 unsigned long size; 88 unsigned int size;
89 /* bitmask of below flags */ 89 /* bitmask of below flags */
90 unsigned long flags; 90 unsigned int flags;
91}; 91};
92 92
93#define PTRACE_BTS_O_TRACE 0x1 /* branch trace */ 93#define PTRACE_BTS_O_TRACE 0x1 /* branch trace */