mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 19:25:36 +00:00
[FASTFAT]
Now that we start to honor the storage stack (ie, without the IopParseDevice hack ;-)), we have to let FSDs forward device IOCTLs. This allows back copying files on 1st stage svn path=/trunk/; revision=65116
This commit is contained in:
@@ -99,6 +99,7 @@ DriverEntry(
|
||||
DriverObject->MajorFunction[IRP_MJ_SET_VOLUME_INFORMATION] = VfatBuildRequest;
|
||||
DriverObject->MajorFunction[IRP_MJ_SHUTDOWN] = VfatShutdown;
|
||||
DriverObject->MajorFunction[IRP_MJ_LOCK_CONTROL] = VfatBuildRequest;
|
||||
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = VfatBuildRequest;
|
||||
DriverObject->MajorFunction[IRP_MJ_CLEANUP] = VfatBuildRequest;
|
||||
DriverObject->MajorFunction[IRP_MJ_FLUSH_BUFFERS] = VfatBuildRequest;
|
||||
DriverObject->MajorFunction[IRP_MJ_PNP] = VfatBuildRequest;
|
||||
|
||||
@@ -93,6 +93,16 @@ Fail:
|
||||
return Status;
|
||||
}
|
||||
|
||||
static
|
||||
NTSTATUS
|
||||
VfatDeviceControl(
|
||||
IN PVFAT_IRP_CONTEXT IrpContext)
|
||||
{
|
||||
IoSkipCurrentIrpStackLocation(IrpContext->Irp);
|
||||
|
||||
return IoCallDriver(IrpContext->DeviceExt->StorageDevice, IrpContext->Irp);
|
||||
}
|
||||
|
||||
static
|
||||
NTSTATUS
|
||||
VfatDispatchRequest(
|
||||
@@ -127,6 +137,8 @@ VfatDispatchRequest(
|
||||
return VfatSetVolumeInformation(IrpContext);
|
||||
case IRP_MJ_LOCK_CONTROL:
|
||||
return VfatLockControl(IrpContext);
|
||||
case IRP_MJ_DEVICE_CONTROL:
|
||||
return VfatDeviceControl(IrpContext);
|
||||
case IRP_MJ_CLEANUP:
|
||||
return VfatCleanup(IrpContext);
|
||||
case IRP_MJ_FLUSH_BUFFERS:
|
||||
|
||||
Reference in New Issue
Block a user