????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.191 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/3.13.0-170-generic/build/include/trace/events/ |
Upload File : |
#undef TRACE_SYSTEM
#define TRACE_SYSTEM vfs
#include <linux/module.h>
#if !defined(_TRACE_VFS_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_VFS_H
/*
* Tracepoint for dirtying an inode:
*/
TRACE_EVENT(dirty_inode,
TP_PROTO(struct inode *inode, struct task_struct *task),
TP_ARGS(inode, task),
TP_STRUCT__entry(
__array( char, comm, TASK_COMM_LEN )
__field( pid_t, pid )
__array( char, dev, 16 )
__array( char, file, 32 )
),
TP_fast_assign(
if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) {
struct dentry *dentry;
const char *name = "?";
dentry = d_find_alias(inode);
if (dentry) {
spin_lock(&dentry->d_lock);
name = (const char *) dentry->d_name.name;
}
memcpy(__entry->comm, task->comm, TASK_COMM_LEN);
__entry->pid = task->pid;
strlcpy(__entry->file, name, 32);
strlcpy(__entry->dev, inode->i_sb->s_id, 16);
if (dentry) {
spin_unlock(&dentry->d_lock);
dput(dentry);
}
}
),
TP_printk("task=%i (%s) file=%s dev=%s",
__entry->pid, __entry->comm, __entry->file, __entry->dev)
);
#endif /* _TRACE_VFS_H */
/* This part must be outside protection */
#include <trace/define_trace.h>