Added descriptive DPRINT for an ioctl intended for the mount manager. Hopefully helps someone else trying to find that device 0x4d or 77 is, when no such device exists. It's not defined by value in header file but by ASCII 'M'.

svn path=/trunk/; revision=57368
This commit is contained in:
Mike Nordell 2012-09-23 05:38:35 +00:00
parent b6b08f5566
commit e79e0dea55

View file

@ -2870,7 +2870,11 @@ ScsiPortDeviceControl(IN PDEVICE_OBJECT DeviceObject,
break;
default:
DPRINT1(" unknown ioctl code: 0x%lX\n", Stack->Parameters.DeviceIoControl.IoControlCode);
if ('M' == (Stack->Parameters.DeviceIoControl.IoControlCode >> 16)) {
DPRINT1(" got ioctl intended for the mount manager: 0x%lX\n", Stack->Parameters.DeviceIoControl.IoControlCode);
} else {
DPRINT1(" unknown ioctl code: 0x%lX\n", Stack->Parameters.DeviceIoControl.IoControlCode);
}
Status = STATUS_NOT_IMPLEMENTED;
break;
}