Bug Check 0xF9: DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN

The DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN bug check has a value of 0x000000F9. This indicates that a driver returned STATUS_REPARSE to an IRP_MJ_CREATE request with no trailing names.

Important

This article is for programmers. If you're a customer who has received a blue screen error code while using your computer, see Troubleshoot blue screen errors.

DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN Parameters

Parameter Description

1

The device object that was opened

2

The device object to which the IRP_MJ_CREATE request was issued

3

Address of the Unicode string containing the new name of the file (to be reparsed)

4

Information returned by the driver for the IRP_MJ_CREATE request

Remarks

The !analyze debug extension displays information about the bug check and can be helpful in determining the root cause.

STATUS_REPARSE should be returned only for IRP_MJ_CREATE requests with trailing names, as that indicates the driver is supporting name spaces.

For more information about working with file system drivers, see File systems driver design guide. For information about IRP_MJ_CREATE requests see IRP_MJ_CREATE (IFS).