~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/include/asm/trace/exceptions.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #undef TRACE_SYSTEM
  3 #define TRACE_SYSTEM exceptions
  4 
  5 #if !defined(_TRACE_PAGE_FAULT_H) || defined(TRACE_HEADER_MULTI_READ)
  6 #define _TRACE_PAGE_FAULT_H
  7 
  8 #include <linux/tracepoint.h>
  9 #include <asm/trace/common.h>
 10 
 11 extern int trace_pagefault_reg(void);
 12 extern void trace_pagefault_unreg(void);
 13 
 14 DECLARE_EVENT_CLASS(x86_exceptions,
 15 
 16         TP_PROTO(unsigned long address, struct pt_regs *regs,
 17                  unsigned long error_code),
 18 
 19         TP_ARGS(address, regs, error_code),
 20 
 21         TP_STRUCT__entry(
 22                 __field(                unsigned long, address  )
 23                 __field(                unsigned long, ip       )
 24                 __field(                unsigned long, error_code )
 25         ),
 26 
 27         TP_fast_assign(
 28                 __entry->address = address;
 29                 __entry->ip = regs->ip;
 30                 __entry->error_code = error_code;
 31         ),
 32 
 33         TP_printk("address=%ps ip=%ps error_code=0x%lx",
 34                   (void *)__entry->address, (void *)__entry->ip,
 35                   __entry->error_code) );
 36 
 37 #define DEFINE_PAGE_FAULT_EVENT(name)                           \
 38 DEFINE_EVENT_FN(x86_exceptions, name,                           \
 39         TP_PROTO(unsigned long address, struct pt_regs *regs,   \
 40                  unsigned long error_code),                     \
 41         TP_ARGS(address, regs, error_code),                     \
 42         trace_pagefault_reg, trace_pagefault_unreg);
 43 
 44 DEFINE_PAGE_FAULT_EVENT(page_fault_user);
 45 DEFINE_PAGE_FAULT_EVENT(page_fault_kernel);
 46 
 47 #undef TRACE_INCLUDE_PATH
 48 #undef TRACE_INCLUDE_FILE
 49 #define TRACE_INCLUDE_PATH .
 50 #define TRACE_INCLUDE_FILE exceptions
 51 #endif /*  _TRACE_PAGE_FAULT_H */
 52 
 53 /* This part must be outside protection */
 54 #include <trace/define_trace.h>
 55 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php