From: Xiang Chen <chenxiang66@xxxxxxxxxxxxx> Currently it only records statistical data for all vcpus, but we ofen want to know statistical data for a single vcpu, there is no debugfs for that. So add vcpu debugfs to record statstical data for every single vcpu, and also enable vcpu debugfs for arm64. After the change, those vcpu debugfs are as follows (we have 4 vcpu in the vm): [root@centos kvm]# cd 2025-14/ [root@centos 2025-14]# ls blocking halt_wait_hist vcpu0 exits halt_wait_ns vcpu1 halt_attempted_poll halt_wakeup vcpu2 halt_poll_fail_hist hvc_exit_stat vcpu3 halt_poll_fail_ns mmio_exit_kernel vgic-state halt_poll_invalid mmio_exit_user wfe_exit_stat halt_poll_success_hist remote_tlb_flush wfi_exit_stat halt_poll_success_ns remote_tlb_flush_requests halt_successful_poll signal_exits [root@centos 2025-14]# cat exits 124689 [root@centos 2025-14]# cat vcpu0/exits 52966 [root@centos 2025-14]# cat vcpu1/exits 21549 [root@centos 2025-14]# cat vcpu2/exits 43864 [root@centos 2025-14]# cat vcpu3/exits 6572 [root@centos 2025-14]# ls vcpu0 blocking halt_poll_invalid halt_wait_ns pid exits halt_poll_success_hist halt_wakeup signal_exits halt_attempted_poll halt_poll_success_ns hvc_exit_stat wfe_exit_stat halt_poll_fail_hist halt_successful_poll mmio_exit_kernel wfi_exit_stat halt_poll_fail_ns halt_wait_hist mmio_exit_user Xiang Chen (2): KVM: debugfs: Add vcpu debugfs to record statstical data for every single vcpu KVM: arm64: Enable __KVM_HAVE_ARCH_VCPU_DEBUGFS arch/arm64/include/asm/kvm_host.h | 1 + arch/arm64/kvm/arm.c | 4 +++ include/linux/kvm_host.h | 2 ++ virt/kvm/kvm_main.c | 62 +++++++++++++++++++++++++++++++++++++-- 4 files changed, 67 insertions(+), 2 deletions(-) -- 2.8.1