%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.35 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 : /lib/modules/4.4.0-112-generic/build/include/trace/events/ |
Upload File : |
#undef TRACE_SYSTEM
#define TRACE_SYSTEM fs
#if !defined(_TRACE_FS_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_FS_H
#include <linux/fs.h>
#include <linux/tracepoint.h>
TRACE_EVENT(do_sys_open,
TP_PROTO(const char *filename, int flags, int mode),
TP_ARGS(filename, flags, mode),
TP_STRUCT__entry(
__string( filename, filename )
__field( int, flags )
__field( int, mode )
),
TP_fast_assign(
__assign_str(filename, filename);
__entry->flags = flags;
__entry->mode = mode;
),
TP_printk("\"%s\" %x %o",
__get_str(filename), __entry->flags, __entry->mode)
);
TRACE_EVENT(open_exec,
TP_PROTO(const char *filename),
TP_ARGS(filename),
TP_STRUCT__entry(
__string( filename, filename )
),
TP_fast_assign(
__assign_str(filename, filename);
),
TP_printk("\"%s\"",
__get_str(filename))
);
#endif /* _TRACE_FS_H */
/* This part must be outside protection */
#include <trace/define_trace.h>