Changeset 63080 in vbox for trunk/src/VBox
- Timestamp:
- Aug 6, 2016 1:47:09 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109694
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.c
r63079 r63080 44 44 static NTSTATUS VBoxMRxFsdDispatch(IN PDEVICE_OBJECT DeviceObject, IN PIRP Irp) 45 45 { 46 NTSTATUS Status = STATUS_SUCCESS; 46 NTSTATUS Status; 47 #ifdef LOG_ENABLED 47 48 PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation(Irp); 48 49 49 Log(("VBOXSF: MRxFsdDispatch: major %d, minor %d: %s\n", 50 50 IrpSp->MajorFunction, IrpSp->MinorFunction, MajorFunctionString(IrpSp->MajorFunction, IrpSp->MinorFunction))); 51 #endif 51 52 52 53 if (DeviceObject != (PDEVICE_OBJECT)VBoxMRxDeviceObject) … … 63 64 64 65 Status = RxFsdDispatch((PRDBSS_DEVICE_OBJECT)VBoxMRxDeviceObject, Irp); 65 66 Log(("VBOXSF: MRxFsdDispatch: Returned 0x%X\n", 67 Status)); 66 Log(("VBOXSF: MRxFsdDispatch: Returned 0x%X\n", Status)); 68 67 return Status; 69 68 } … … 604 603 NTSTATUS VBoxMRxIoCtl(IN OUT PRX_CONTEXT RxContext) 605 604 { 606 Log(("VBOXSF: MRxIoCtl: IoControlCode = 0x%08X\n",607 605 RT_NOREF(RxContext); 606 Log(("VBOXSF: MRxIoCtl: IoControlCode = 0x%08X\n", RxContext->LowIoContext.ParamsFor.FsCtl.FsControlCode)); 608 607 return STATUS_INVALID_DEVICE_REQUEST; 609 608 } … … 1456 1455 NTSTATUS VBoxMRxQueryEaInfo(IN OUT PRX_CONTEXT RxContext) 1457 1456 { 1458 Log(("VBOXSF: MRxQueryEaInfo: Ea buffer len remaining is %d\n",1459 1457 RT_NOREF(RxContext); 1458 Log(("VBOXSF: MRxQueryEaInfo: Ea buffer len remaining is %d\n", RxContext->Info.LengthRemaining)); 1460 1459 return STATUS_SUCCESS; 1461 1460 } … … 1510 1509 return STATUS_SUCCESS; 1511 1510 } 1511
Note:
See TracChangeset
for help on using the changeset viewer.