| Server IP : 172.67.134.114 / Your IP : 162.159.115.42 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/systemtap/examples/profiling/ |
Upload File : |
#!/usr/bin/stap
# Copyright (C) 2018 Red Hat, Inc.
# Written by William Cohen <[email protected]>
#
global ioctl_requests, ioctl_func
probe syscall.ioctl {
ioctl_requests[execname()] <<< 1
try {
# Dig down through the task struct to find the actual function handling ioctl.
ioctl_func_address = @cast(task_current(), "struct task_struct", "kernel")->files->fdt->fd[fd]->f_op->unlocked_ioctl
if (ioctl_func_address)
ioctl_func[execname(), ioctl_func_address] <<< 1
} catch {
ioctl_func[execname(), 0] <<< 1
}
}
probe end {
printf("Per execname ioctl information\n")
foreach ([e+, f] in ioctl_func) {
if (current_exec != e){
printf("%s %d\n", e, @sum(ioctl_requests[e]))
current_exec = e
}
printf(" %s %d\n", symdata(f), @sum(ioctl_func[e,f]))
}
}