mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[PARTMGR] Remove hacks as PnP manager should not send bogus IRPs anymore
This commit is contained in:
parent
d14d7e5b8c
commit
b0c931ac91
3 changed files with 0 additions and 35 deletions
|
@ -94,13 +94,6 @@ PartitionHandleStartDevice(
|
|||
{
|
||||
PAGED_CODE();
|
||||
|
||||
// fix the damn kernel!
|
||||
if (PartExt->DeviceRemoved)
|
||||
{
|
||||
DPRINT1("IRP_MN_START_DEVICE after IRP_MN_REMOVE_DEVICE!\n");
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
// first, create a symbolic link for our device
|
||||
WCHAR nameBuf[64];
|
||||
UNICODE_STRING partitionSymlink, interfaceName;
|
||||
|
@ -235,15 +228,6 @@ PartitionHandleRemove(
|
|||
|
||||
if (FinalRemove)
|
||||
{
|
||||
// fix the damn kernel!
|
||||
if (PartExt->DeviceRemoved)
|
||||
{
|
||||
DPRINT1("Double IRP_MN_REMOVE_DEVICE!\n");
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
PartExt->DeviceRemoved = TRUE;
|
||||
|
||||
ASSERT(PartExt->DeviceName.Buffer);
|
||||
if (PartExt->DeviceName.Buffer)
|
||||
{
|
||||
|
@ -266,13 +250,6 @@ PartitionHandleDeviceRelations(
|
|||
{
|
||||
PAGED_CODE();
|
||||
|
||||
// fix the damn kernel!
|
||||
if (PartExt->DeviceRemoved)
|
||||
{
|
||||
DPRINT1("QDR after device removal!\n");
|
||||
return STATUS_DEVICE_DOES_NOT_EXIST;
|
||||
}
|
||||
|
||||
PIO_STACK_LOCATION ioStack = IoGetCurrentIrpStackLocation(Irp);
|
||||
DEVICE_RELATION_TYPE type = ioStack->Parameters.QueryDeviceRelations.Type;
|
||||
|
||||
|
|
|
@ -1017,17 +1017,6 @@ FdoHandleRemoveDevice(
|
|||
{
|
||||
PAGED_CODE();
|
||||
|
||||
for (PSINGLE_LIST_ENTRY curEntry = FdoExtension->PartitionList.Next;
|
||||
curEntry != NULL;
|
||||
curEntry = curEntry->Next)
|
||||
{
|
||||
PPARTITION_EXTENSION partExt = CONTAINING_RECORD(curEntry,
|
||||
PARTITION_EXTENSION,
|
||||
ListEntry);
|
||||
|
||||
ASSERT(partExt->DeviceRemoved);
|
||||
}
|
||||
|
||||
if (FdoExtension->DiskInterfaceName.Buffer)
|
||||
{
|
||||
IoSetDeviceInterfaceState(&FdoExtension->DiskInterfaceName, FALSE);
|
||||
|
|
|
@ -77,7 +77,6 @@ typedef struct _PARTITION_EXTENSION
|
|||
UINT32 OnDiskNumber; // partition number for issuing Io requests to the kernel
|
||||
BOOLEAN IsEnumerated; // reported via IRP_MN_QUERY_DEVICE_RELATIONS
|
||||
BOOLEAN SymlinkCreated;
|
||||
BOOLEAN DeviceRemoved; // !!!
|
||||
BOOLEAN Attached; // attached to PartitionList of the FDO
|
||||
union
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue