This patchset introduces KVM per VM exit statistics monitoring via debugfs, as well as moves a tool to display VM statistics from qemu to tools/. The new debugfs per VM statistics are an alternative to the already available VM tracepoints. They are easier to read and have low overhead. The kvm_stat python script is moved to the kernel, as we can make sure here that the right version of the script is used with the right kernel version. This is not given for qemu, as it supports a wide range of linux kernel versions. v1 -> v2 * Rebase * Added kvm_stat to tools Makefile Janosch Frank (5): tools: Add kvm_stat vm monitor script MAINTAINERS: Add kvm tools KVM: Create debugfs dir and stat files for each VM tools: kvm_stat: Introduce pid monitoring tools: kvm_stat: Add documentation MAINTAINERS | 1 + include/linux/kvm_host.h | 7 + tools/Makefile | 6 +- tools/kvm/kvm_stat/Makefile | 5 + tools/kvm/kvm_stat/kvm_stat | 1125 +++++++++++++++++++++++++++++++++++++++++++ virt/kvm/kvm_main.c | 187 ++++++- 6 files changed, 1320 insertions(+), 11 deletions(-) create mode 100644 tools/kvm/kvm_stat/Makefile create mode 100755 tools/kvm/kvm_stat/kvm_stat -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html