mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[CDFS]
Remove redundant code now we have IRP context dispatch svn path=/trunk/; revision=68231
This commit is contained in:
parent
a800f88087
commit
8faad3f2aa
5 changed files with 2 additions and 20 deletions
|
@ -39,14 +39,12 @@ CdfsDeviceControl(
|
|||
if (!FileObject)
|
||||
{
|
||||
DPRINT1("FIXME: CdfsDeviceControl called without FileObject!\n");
|
||||
Irp->IoStatus.Status = STATUS_INVALID_DEVICE_REQUEST;
|
||||
return STATUS_INVALID_DEVICE_REQUEST;
|
||||
}
|
||||
|
||||
/* Only support such operations on volume */
|
||||
if (!(FileObject->RelatedFileObject == NULL || FileObject->RelatedFileObject->FsContext2 != NULL))
|
||||
{
|
||||
Irp->IoStatus.Status = STATUS_INVALID_PARAMETER;
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
|
@ -54,7 +52,6 @@ CdfsDeviceControl(
|
|||
{
|
||||
/* We should handle this one, but we don't! */
|
||||
Status = STATUS_NOT_IMPLEMENTED;
|
||||
Irp->IoStatus.Status = Status;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -802,8 +802,6 @@ CdfsDirectoryControl(
|
|||
Irp = IrpContext->Irp;
|
||||
DeviceObject = IrpContext->DeviceObject;
|
||||
|
||||
FsRtlEnterFileSystem();
|
||||
|
||||
switch (IrpContext->MinorFunction)
|
||||
{
|
||||
case IRP_MN_QUERY_DIRECTORY:
|
||||
|
@ -824,10 +822,8 @@ CdfsDirectoryControl(
|
|||
|
||||
if (Status != STATUS_PENDING)
|
||||
{
|
||||
Irp->IoStatus.Status = Status;
|
||||
Irp->IoStatus.Information = 0;
|
||||
}
|
||||
FsRtlExitFileSystem();
|
||||
|
||||
return(Status);
|
||||
}
|
||||
|
|
|
@ -420,7 +420,6 @@ CdfsQueryInformation(
|
|||
break;
|
||||
}
|
||||
|
||||
Irp->IoStatus.Status = Status;
|
||||
if (NT_SUCCESS(Status) || Status == STATUS_BUFFER_OVERFLOW)
|
||||
Irp->IoStatus.Information =
|
||||
Stack->Parameters.QueryFile.Length - BufferLength;
|
||||
|
@ -491,7 +490,6 @@ CdfsSetInformation(
|
|||
break;
|
||||
}
|
||||
|
||||
Irp->IoStatus.Status = Status;
|
||||
Irp->IoStatus.Information = 0;
|
||||
|
||||
return Status;
|
||||
|
|
|
@ -233,15 +233,11 @@ NTSTATUS NTAPI
|
|||
CdfsWrite(
|
||||
PCDFS_IRP_CONTEXT IrpContext)
|
||||
{
|
||||
PIRP Irp;
|
||||
|
||||
DPRINT("CdfsWrite(%p)\n", IrpContext);
|
||||
|
||||
ASSERT(IrpContext);
|
||||
|
||||
Irp = IrpContext->Irp;
|
||||
Irp->IoStatus.Status = STATUS_NOT_SUPPORTED;
|
||||
Irp->IoStatus.Information = 0;
|
||||
IrpContext->Irp->IoStatus.Information = 0;
|
||||
return(STATUS_NOT_SUPPORTED);
|
||||
}
|
||||
|
||||
|
|
|
@ -266,7 +266,6 @@ CdfsQueryVolumeInformation(
|
|||
Status = STATUS_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
Irp->IoStatus.Status = Status;
|
||||
if (NT_SUCCESS(Status))
|
||||
Irp->IoStatus.Information =
|
||||
Stack->Parameters.QueryVolume.Length - BufferLength;
|
||||
|
@ -282,15 +281,11 @@ NTAPI
|
|||
CdfsSetVolumeInformation(
|
||||
PCDFS_IRP_CONTEXT IrpContext)
|
||||
{
|
||||
PIRP Irp;
|
||||
|
||||
DPRINT("CdfsSetVolumeInformation() called\n");
|
||||
|
||||
ASSERT(IrpContext);
|
||||
|
||||
Irp = IrpContext->Irp;
|
||||
Irp->IoStatus.Status = STATUS_NOT_SUPPORTED;
|
||||
Irp->IoStatus.Information = 0;
|
||||
IrpContext->Irp->IoStatus.Information = 0;
|
||||
|
||||
return STATUS_NOT_SUPPORTED;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue