mountmgr.sys: Better fixme for unsupported ioctls.

This commit is contained in:
André Hentschel 2011-07-04 22:06:24 +02:00 committed by Alexandre Julliard
parent 8b733dd313
commit 9752bf8f04

View file

@ -938,10 +938,14 @@ static NTSTATUS WINAPI harddisk_ioctl( DEVICE_OBJECT *device, IRP *irp )
break;
}
default:
FIXME( "unsupported ioctl %x\n", irpsp->Parameters.DeviceIoControl.IoControlCode );
{
ULONG code = irpsp->Parameters.DeviceIoControl.IoControlCode;
FIXME("Unsupported ioctl %x (device=%x access=%x func=%x method=%x)\n",
code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
break;
}
}
LeaveCriticalSection( &device_section );
IoCompleteRequest( irp, IO_NO_INCREMENT );