projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cb5762
)
KVM: x86 emulator: Add missing EFLAGS bit definitions
author
Andre Przywara
<andre.przywara@amd.com>
Wed, 17 Jun 2009 13:50:32 +0000
(15:50 +0200)
committer
Avi Kivity
<avi@redhat.com>
Thu, 10 Sep 2009 05:33:00 +0000
(08:33 +0300)
Signed-off-by: Christoph Egger <christoph.egger@amd.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kvm/x86_emulate.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kvm/x86_emulate.c
b/arch/x86/kvm/x86_emulate.c
index ef4dfca3ed7e6aba4ca2c742071b83067171e3dd..67af33aeb3f3d19d95f5abeea957a270b100cd8c 100644
(file)
--- a/
arch/x86/kvm/x86_emulate.c
+++ b/
arch/x86/kvm/x86_emulate.c
@@
-320,8
+320,11
@@
static u32 group2_table[] = {
};
/* EFLAGS bit definitions. */
+#define EFLG_VM (1<<17)
+#define EFLG_RF (1<<16)
#define EFLG_OF (1<<11)
#define EFLG_DF (1<<10)
+#define EFLG_IF (1<<9)
#define EFLG_SF (1<<7)
#define EFLG_ZF (1<<6)
#define EFLG_AF (1<<4)