Displaying 1 result from an estimated 1 matches for "1276926e3795".
2012 Sep 10
10
[PATCH] mem_event: fix regression affecting CR3, CR4 memory events
...airing a regression in code previously functional in 4.1.x. It appears that, during some refactoring work, calls to hvm_memory_event_cr3 and hvm_memory_event_cr4 were lost.
These functions were originally called in mov_to_cr() of vmx.c, but the commit http://xenbits.xen.org/hg/xen-unstable.hg/rev/1276926e3795 abstracted the original code into generic functions up a level in hvm.c, dropping these calls in the process.
Signed-off-by: Steven Maresca <steve@zentific.com>
diff -r a64f4e107951 -r 4d31c1c86418 xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c Fri Sep 07 11:09:46 2012 +0100
+++ b/xen/...