diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-05-15 18:02:50 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-05-22 17:47:16 +0200 |
commit | fb5e336b977086557739791ed51955c5913dc773 (patch) | |
tree | dd12314fe8a8e25775ec240ad1a97ca9ce043ccc /arch/x86/include/asm/kvm_emulate.h | |
parent | 2356aaeb2f58f491679dc0c38bc3f6dbe54e7ded (diff) | |
download | blackbird-obmc-linux-fb5e336b977086557739791ed51955c5913dc773.tar.gz blackbird-obmc-linux-fb5e336b977086557739791ed51955c5913dc773.zip |
KVM: x86: drop set_rflags callback
Not needed anymore now that the CPL is computed directly
during task switch.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_emulate.h')
-rw-r--r-- | arch/x86/include/asm/kvm_emulate.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h index 24ec1216596e..a04fe4eb237d 100644 --- a/arch/x86/include/asm/kvm_emulate.h +++ b/arch/x86/include/asm/kvm_emulate.h @@ -189,7 +189,6 @@ struct x86_emulate_ops { void (*set_idt)(struct x86_emulate_ctxt *ctxt, struct desc_ptr *dt); ulong (*get_cr)(struct x86_emulate_ctxt *ctxt, int cr); int (*set_cr)(struct x86_emulate_ctxt *ctxt, int cr, ulong val); - void (*set_rflags)(struct x86_emulate_ctxt *ctxt, ulong val); int (*cpl)(struct x86_emulate_ctxt *ctxt); int (*get_dr)(struct x86_emulate_ctxt *ctxt, int dr, ulong *dest); int (*set_dr)(struct x86_emulate_ctxt *ctxt, int dr, ulong value); |