This is the final version of Karim's patch including a test for MSR_IA32_TSC_ADJUST, SVM support, and a small subsequent cleanup. I'm not sure about committing the test, since it seems easier to do it in kvm-unit-tests (in fact, I'll shortly send the SVM version of the test, for kvm-unit-tests) but I'm sending it anyway for everyone's use and to post the linux.git-ized version of Google's nested virt test framework. Thanks, Paolo KarimAllah Ahmed (1): X86/KVM: Properly update 'tsc_offset' to represent the running guest Paolo Bonzini (2): kvm: x86: move MSR_IA32_TSC handling to x86.c kvm: selftests: add vmx_tsc_adjust_test arch/x86/include/asm/kvm_host.h | 1 + arch/x86/kvm/svm.c | 26 +- arch/x86/kvm/vmx.c | 37 +- arch/x86/kvm/x86.c | 12 +- tools/testing/selftests/kvm/Makefile | 3 +- tools/testing/selftests/kvm/include/kvm_util.h | 15 +- tools/testing/selftests/kvm/include/vmx.h | 680 ++++++++++++++++++++++ tools/testing/selftests/kvm/lib/kvm_util.c | 18 +- tools/testing/selftests/kvm/lib/vmx.c | 54 ++ tools/testing/selftests/kvm/vmx_tsc_adjust_test.c | 222 +++++++ 10 files changed, 1022 insertions(+), 46 deletions(-) create mode 100644 tools/testing/selftests/kvm/include/vmx.h create mode 100644 tools/testing/selftests/kvm/lib/vmx.c create mode 100644 tools/testing/selftests/kvm/vmx_tsc_adjust_test.c -- 1.8.3.1