This patchset defines a framework for intercepting emulated instructions. It takes a middle ground to the two previous proposals: putting everything in an arch callback, or putting everything in the emulator. Instead, it marks each interceptable instruction with an intercept code that it passes to an arch callback. The intercept code can then be used to index a table that looks up the correct VMCB bit and exit reason (for the case of SVM). Joerg, if this looks right to you, please integrate it into your emulator intercept patchset. Avi Kivity (2): KVM: x86 emulator: add framework for instruction intercepts KVM: x86 emulator: add SVM intercepts arch/x86/include/asm/kvm_emulate.h | 55 ++++++++++++++++++++++++++++++++++++ arch/x86/kvm/emulate.c | 50 +++++++++++++++++++++++++------- arch/x86/kvm/x86.c | 9 ++++++ 3 files changed, 103 insertions(+), 11 deletions(-) -- 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