mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 09:02:00 +00:00
KVM: x86: Fix defines in emulator.c
Unnecassary define was left after commit7d882ffa81
("KVM: x86: Revert NoBigReal patch in the emulator"). Commit39f062ff51
("KVM: x86: Generate #UD when memory operand is required") was missing undef. Fix it. Signed-off-by: Nadav Amit <namit@cs.technion.ac.il> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2276b5116e
commit
2b42fce695
@ -167,7 +167,6 @@
|
|||||||
#define NoMod ((u64)1 << 47) /* Mod field is ignored */
|
#define NoMod ((u64)1 << 47) /* Mod field is ignored */
|
||||||
#define Intercept ((u64)1 << 48) /* Has valid intercept field */
|
#define Intercept ((u64)1 << 48) /* Has valid intercept field */
|
||||||
#define CheckPerm ((u64)1 << 49) /* Has valid check_perm field */
|
#define CheckPerm ((u64)1 << 49) /* Has valid check_perm field */
|
||||||
#define NoBigReal ((u64)1 << 50) /* No big real mode */
|
|
||||||
#define PrivUD ((u64)1 << 51) /* #UD instead of #GP on CPL > 0 */
|
#define PrivUD ((u64)1 << 51) /* #UD instead of #GP on CPL > 0 */
|
||||||
#define NearBranch ((u64)1 << 52) /* Near branches */
|
#define NearBranch ((u64)1 << 52) /* Near branches */
|
||||||
#define No16 ((u64)1 << 53) /* No 16 bit operand */
|
#define No16 ((u64)1 << 53) /* No 16 bit operand */
|
||||||
@ -4246,6 +4245,7 @@ static const struct opcode opcode_map_0f_38[256] = {
|
|||||||
#undef GP
|
#undef GP
|
||||||
#undef EXT
|
#undef EXT
|
||||||
#undef MD
|
#undef MD
|
||||||
|
#undef ID
|
||||||
|
|
||||||
#undef D2bv
|
#undef D2bv
|
||||||
#undef D2bvIP
|
#undef D2bvIP
|
||||||
|
Loading…
Reference in New Issue
Block a user