Changeset 40881 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 11, 2012 11:33:21 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77423
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.d
r40607 r40881 21 21 probe session__create(struct SUPDRVSESSION *pSession, int fUser); 22 22 probe session__close(struct SUPDRVSESSION *pSession); 23 probe ioctl__entry(struct SUPDRVSESSION *pSession, u nsigned int uIOCtl, void *pvReqHdr);24 probe ioctl__return(struct SUPDRVSESSION *pSession, u nsigned int uIOCtl, void *pvReqHdr, int rc, int rcReq);23 probe ioctl__entry(struct SUPDRVSESSION *pSession, uintptr_t uIOCtl, void *pvReqHdr); 24 probe ioctl__return(struct SUPDRVSESSION *pSession, uintptr_t uIOCtl, void *pvReqHdr, int rc, int rcReq); 25 25 }; 26 26 -
trunk/src/VBox/HostDrivers/Support/SUPDrvTracer.cpp
r40880 r40881 348 348 return rc; 349 349 } 350 if (VTG_TYPE_IS_LARGE(pArgList->aArgs[iArg].fType) )350 if (VTG_TYPE_IS_LARGE(pArgList->aArgs[iArg].fType) && iArg >= 5) 351 351 fHaveLargeArgs = true; 352 352 } 353 353 if ((uint8_t)fHaveLargeArgs != pArgList->fHaveLargeArgs) 354 { 355 SUPR0Printf("supdrvVtgValidate: VERR_SUPDRV_TRACER_BAD_ARG_FLAGS - fType=%#x iProbe=%u fHaveLargeArgs=%d expected %d\n", 356 pArgList->aArgs[iArg].fType, i, pArgList->fHaveLargeArgs, fHaveLargeArgs); 354 357 return VERR_SUPDRV_VTG_BAD_PROBE; 358 } 355 359 } 356 360
Note:
See TracChangeset
for help on using the changeset viewer.