- Timestamp:
- Sep 23, 2008 3:12:56 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r12664 r12674 1866 1866 unsigned uBPLen = aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)]; 1867 1867 1868 if ( (IoExitInfo.n.u16Port >= pCtx->dr[i] && IoExitInfo.n.u16Port < =pCtx->dr[i] + uBPLen)1868 if ( (IoExitInfo.n.u16Port >= pCtx->dr[i] && IoExitInfo.n.u16Port < pCtx->dr[i] + uBPLen) 1869 1869 && (pCtx->dr[7] & (X86_DR7_L(i) | X86_DR7_G(i))) 1870 1870 && (pCtx->dr[7] & X86_DR7_RW(i, X86_DR7_RW_IO)) == X86_DR7_RW(i, X86_DR7_RW_IO)) -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r12664 r12674 2176 2176 unsigned uBPLen = aIOSize[X86_DR7_GET_LEN(pCtx->dr[7], i)]; 2177 2177 2178 if ( (uPort >= pCtx->dr[i] && uPort < =pCtx->dr[i] + uBPLen)2178 if ( (uPort >= pCtx->dr[i] && uPort < pCtx->dr[i] + uBPLen) 2179 2179 && (pCtx->dr[7] & (X86_DR7_L(i) | X86_DR7_G(i))) 2180 2180 && (pCtx->dr[7] & X86_DR7_RW(i, X86_DR7_RW_IO)) == X86_DR7_RW(i, X86_DR7_RW_IO))
Note:
See TracChangeset
for help on using the changeset viewer.