Server IP : 172.67.216.182 / Your IP : 172.71.124.59 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-142/include/trace/events/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #undef TRACE_SYSTEM #define TRACE_SYSTEM damon #if !defined(_TRACE_DAMON_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_DAMON_H #include <linux/damon.h> #include <linux/types.h> #include <linux/tracepoint.h> TRACE_EVENT(damon_aggregated, TP_PROTO(struct damon_target *t, struct damon_region *r, unsigned int nr_regions), TP_ARGS(t, r, nr_regions), TP_STRUCT__entry( __field(unsigned long, target_id) __field(unsigned int, nr_regions) __field(unsigned long, start) __field(unsigned long, end) __field(unsigned int, nr_accesses) ), TP_fast_assign( __entry->target_id = t->id; __entry->nr_regions = nr_regions; __entry->start = r->ar.start; __entry->end = r->ar.end; __entry->nr_accesses = r->nr_accesses; ), TP_printk("target_id=%lu nr_regions=%u %lu-%lu: %u", __entry->target_id, __entry->nr_regions, __entry->start, __entry->end, __entry->nr_accesses) ); #endif /* _TRACE_DAMON_H */ /* This part must be outside protection */ #include <trace/define_trace.h>