All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/emulate: Check current->arch.vm_event in hvmemul_virtual_to_linear()
@ 2016-04-07  8:39 Razvan Cojocaru
  2016-04-07 17:27 ` Jan Beulich
  0 siblings, 1 reply; 6+ messages in thread
From: Razvan Cojocaru @ 2016-04-07  8:39 UTC (permalink / raw)
  To: xen-devel; +Cc: andrew.cooper3, paul.durrant, keir, Razvan Cojocaru, jbeulich

Theoretically it is possible for mem_access_emulate_each_rep to be
true even when current->arch.vm_event == NULL, so add an extra
check to hvmemul_virtual_to_linear().

Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
---
 xen/arch/x86/hvm/emulate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/arch/x86/hvm/emulate.c b/xen/arch/x86/hvm/emulate.c
index f5ab5bc..91413d2 100644
--- a/xen/arch/x86/hvm/emulate.c
+++ b/xen/arch/x86/hvm/emulate.c
@@ -514,7 +514,7 @@ static int hvmemul_virtual_to_linear(
      * vm_event being triggered for repeated writes to a whole page.
      */
     if ( unlikely(current->domain->arch.mem_access_emulate_each_rep) &&
-         current->arch.vm_event->emulate_flags != 0 )
+         current->arch.vm_event && current->arch.vm_event->emulate_flags != 0 )
        max_reps = 1;
 
     /*
-- 
1.9.1


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-04-08  5:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-07  8:39 [PATCH] x86/emulate: Check current->arch.vm_event in hvmemul_virtual_to_linear() Razvan Cojocaru
2016-04-07 17:27 ` Jan Beulich
2016-04-07 17:54   ` Razvan Cojocaru
2016-04-07 18:13     ` Razvan Cojocaru
2016-04-07 21:17     ` Jan Beulich
2016-04-08  5:32       ` Razvan Cojocaru

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.