Changeset 49480 in vbox
- Timestamp:
- Nov 14, 2013 3:13:54 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90632
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp
r48947 r49480 2380 2380 static void intnetR0IfSnoopIPv6SourceAddr(PINTNETIF pIf, PCRTNETIPV6 pIpHdr, uint32_t cbPacket, bool fGso) 2381 2381 { 2382 NOREF(fGso); 2383 2382 2384 /* 2383 2385 * Check the header size first to prevent access invalid data. … … 2937 2939 static bool intnetR0NetworkDetectAndFixNdBroadcast(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr) 2938 2940 { 2941 NOREF(pNetwork); 2942 2939 2943 if (RT_BE2H_U16(pEthHdr->EtherType) != RTNET_ETHERTYPE_IPV6) 2940 2944 return false; … … 2958 2962 pIPv6 = (PRTNETIPV6)bTmp; 2959 2963 } 2960 2961 PCRTNETNDP pNd = (PCRTNETNDP) (pIPv6 + 1);2962 2964 2963 2965 /* Check IPv6 destination address if it is a multicast address. */ … … 3002 3004 static void intnetR0NetworkSnoopNAFromWire(PINTNETNETWORK pNetwork, PINTNETSG pSG, PRTNETETHERHDR pEthHdr) 3003 3005 { 3006 NOREF(pEthHdr); 3007 3004 3008 /* 3005 3009 * Check the minimum size and get a linear copy of the thing to work on, -
trunk/src/VBox/Disassembler/DisasmCore.cpp
r46949 r49480 227 227 { 228 228 #ifdef IN_RING0 229 NOREF(cbMinRead); 229 230 AssertMsgFailed(("disReadWord with no read callback in ring 0!!\n")); 230 231 RT_BZERO(&pDis->abInstr[offInstr], cbMaxRead); … … 807 808 NOREF(pOp); NOREF(pDis); 808 809 809 unsigned mod = pDis->ModRM.Bits.Mod;810 811 810 unsigned type = OP_PARM_VTYPE(pParam->fParam); 812 811 unsigned subtype = OP_PARM_VSUBTYPE(pParam->fParam); … … 1563 1562 static size_t ParseImmAddr(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1564 1563 { 1564 NOREF(pOp); 1565 1565 if (pDis->uAddrMode == DISCPUMODE_32BIT) 1566 1566 { … … 1645 1645 static size_t ParseImmAddrF(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1646 1646 { 1647 NOREF(pOp); 1647 1648 // immediate far pointers - only 16:16 or 16:32; determined by operand, *not* address size! 1648 1649 Assert(pDis->uOpMode == DISCPUMODE_16BIT || pDis->uOpMode == DISCPUMODE_32BIT); … … 1882 1883 static size_t ParseInvOpModRm(size_t offInstr, PCDISOPCODE pOp, PDISSTATE pDis, PDISOPPARAM pParam) 1883 1884 { 1885 NOREF(pOp); NOREF(pDis); NOREF(pParam); 1884 1886 /* This is used to avoid a bunch of special hacks to get the ModRM byte 1885 1887 included when encountering invalid opcodes in groups. */ -
trunk/src/VBox/Runtime/testcase/tstRTR0Timer.cpp
r48412 r49480 889 889 890 890 RTR0TESTR0_CHECK_RC_BREAK(RTTimerStop(pTimer), VINF_SUCCESS); 891 uint64_t cNsElapsedX = RTTimeNanoTS() - uStartNsTS;892 891 893 892 /*
Note:
See TracChangeset
for help on using the changeset viewer.