%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/root/usr/src/linux-headers-4.4.0-112/arch/s390/include/asm/trace/ |
Upload File : |
/* * Tracepoint header for s390 diagnose calls * * Copyright IBM Corp. 2015 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com> */ #undef TRACE_SYSTEM #define TRACE_SYSTEM s390 #if !defined(_TRACE_S390_DIAG_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_S390_DIAG_H #include <linux/tracepoint.h> #undef TRACE_INCLUDE_PATH #undef TRACE_INCLUDE_FILE #define TRACE_INCLUDE_PATH asm/trace #define TRACE_INCLUDE_FILE diag TRACE_EVENT(s390_diagnose, TP_PROTO(unsigned short nr), TP_ARGS(nr), TP_STRUCT__entry( __field(unsigned short, nr) ), TP_fast_assign( __entry->nr = nr; ), TP_printk("nr=0x%x", __entry->nr) ); #ifdef CONFIG_TRACEPOINTS void trace_s390_diagnose_norecursion(int diag_nr); #else static inline void trace_s390_diagnose_norecursion(int diag_nr) { } #endif #endif /* _TRACE_S390_DIAG_H */ /* This part must be outside protection */ #include <trace/define_trace.h>