Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tapset::iosched(3stap) [debian man page]

TAPSET::IOSCHED(3stap)													    TAPSET::IOSCHED(3stap)

NAME
tapset::iosched - systemtap IO scheduler probe points DESCRIPTION
This family of probe points is used to probe the IO scheduler activities. It contains the following probe points: ioscheduler.elv_next_request Fires when retrieves a request from request queue Arguments: elevator_name The elevator name ioscheduler.elv_next_request.return Fires when return from retrieving a request Arguments: req Address of the request req_flags request flags disk_major disk major number of the request disk_minor disk minor number of the request ioscheduler.elv_add_request Fires when add a request into request queue Arguments: elevator_name The elevator name req Address of the request req_flags request flags disk_major disk major number of the request disk_minor disk minor number of the request ioscheduler.elv_completed_request Fires when a request is completed Arguments: elevator_name The elevator name req Address of the request req_flags request flags disk_major disk major number of the request disk_minor disk minor number of the request SEE ALSO
stap(1), stapprobes(3stap) IBM
TAPSET::IOSCHED(3stap)

Check Out this Related Man Page

TAPSET::KPROCESS(3stap) 												   TAPSET::KPROCESS(3stap)

NAME
tapset::kprocess - systemtap kernel process probe points DESCRIPTION
This family of probe points is used to probe the kernel's process activities. It contains the following probe points: kprocess.create Fires whenever a new process is successfully created, either as a result of one of the fork syscall variants, or a new kernel thread. Arguments: task a handle to the newly created process new_pid pid of the newly created process kprocess.start Fires immediately before a new process begins execution. Arguments: N/A kprocess.exec Fires whenever a process attempts to exec to a new program Arguments: filename the path to the new executable kprocess.exec_complete Fires at the completion of an exec call Arguments: errno the error number resulting from the exec success a boolean indicating whether the exec was successful kprocess.exit Fires when a process terminates. This will always be followed by a kprocess.release, though the latter may be delayed if the process waits in a zombie state. Arguments: code the exit code of the process kprocess.release Fires when a process is released from the kernel. This always follows a kprocess.exit, though it may be delayed somewhat if the process waits in a zombie state. Arguments: task a task handle to the process being released pid pid of the process being released SEE ALSO
stap(1), stapprobes(3stap) Intel, IBM TAPSET::KPROCESS(3stap)
Man Page