search for: vmx_do_msr_read

Displaying 3 results from an estimated 3 matches for "vmx_do_msr_read".

2006 Oct 31
2
hvm_debug option in Xen works ?
I edited the line as "kernel /xen-3.0.gz hvm_debug=1" I did not *see* any HVM_DBG_LOG messages .I was of course looking for the ones in "vmx_do_msr_read" function in vmx.c I issued "dmesg" and "xm dmesg" in both guest and host OS. Any ideas why this is not working? Regards Shobha Ranganathan "The significant challenges we face cannot be resolved at the same level of thinking we were at when we created them...
2007 Aug 27
3
[PATCH] Limit MCG Cap
Intercept guest reads of MSR_IA32_MCG_CAP and limit the number of memory banks reported to one. This prevents us from trying to read status of non-existent banks when migrated to a machine with fewer banks. Signed-off-by: Ben Guthro Signed-off-by: David Lively <dlively@virtualiron.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2005 Apr 02
1
[PATCH] VMX support for MMIO/PIO in VM8086 mode
...return mov_to_cr(gp, cr, regs); case TYPE_MOV_FROM_CR: gp = exit_qualification & CONTROL_REG_ACCESS_REG; cr = exit_qualification & CONTROL_REG_ACCESS_NUM; @@ -604,6 +641,7 @@ __vmx_bug(regs); break; } + return 1; } static inline void vmx_do_msr_read(struct xen_regs *regs) @@ -619,7 +657,7 @@ } /* - * Need to use this exit to rescheule + * Need to use this exit to reschedule */ static inline void vmx_vmexit_do_hlt(void) { @@ -891,8 +929,8 @@ VMX_DBG_LOG(DBG_LEVEL_1, "eip = %lx, inst_len =%lx, exit_qualification = %lx&quo...