Changeset 41150 in vbox
- Timestamp:
- May 3, 2012 8:39:26 PM (13 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/VMMRCA.asm
r41147 r41150 242 242 ; 243 243 mov edx, IMP(g_VM) 244 add edx, [e cx + VM.offVMCPU]245 cmp dword [edx + VM MCPU.cCallRing3Disabled], 0244 add edx, [edx + VM.offVMCPU] 245 cmp dword [edx + VMCPU.vmm + VMMCPU.cCallRing3Disabled], 0 246 246 jnz .return 247 add edx, [VMCPU.vmm + VMMCPU.TracerCtx]247 add edx, VMCPU.vmm + VMMCPU.TracerCtx 248 248 249 249 ; -
trunk/src/VBox/VMM/include/VMMInternal.mac
r41147 r41150 111 111 .fInRendezvous resb 1 112 112 %if HC_ARCH_BITS == 32 113 .afPadding resb 3 114 %else 113 115 .afPadding resb 7 114 %else115 .afPadding resb 3116 116 %endif 117 117 … … 119 119 .TracerCtx resb SUPDRVTRACERUSRCTX64_size 120 120 121 .u32Padding1 resd 1 121 122 122 123 .cCallRing3Disabled resd 1 -
trunk/src/VBox/VMM/testcase/Makefile.kmk
r39070 r41150 90 90 $(VBOX_VMM_TESTCASE_OUT_DIR)/tstAsmStructs.run \ 91 91 $(VBOX_VMM_TESTCASE_OUT_DIR)/tstVMStructSize.run \ 92 92 $(VBOX_VMM_TESTCASE_OUT_DIR)/tstInstrEmul.run \ 93 93 $(VBOX_VMM_TESTCASE_OUT_DIR)/tstAsmStructs.h \ 94 94 $(VBOX_VMM_TESTCASE_OUT_DIR)/tstAsmStructsAsm.o \
Note:
See TracChangeset
for help on using the changeset viewer.