[CDFS_NEW] Address review comments:

- Don't define-out volatile.
- Cleanup the ros-specific hdd-backed device object on shutdown.
- Fix hdd-backed use. Required a rather ugly hack.
- Update README.FSD
This commit is contained in:
David Quintana 2017-11-24 19:55:23 +01:00 committed by Pierre Schweitzer
parent 6a3bbf24e0
commit 67a7e45e35
5 changed files with 23 additions and 3 deletions

View file

@ -167,6 +167,10 @@ Return Value:
IoUnregisterFileSystem( CdData.FileSystemDeviceObject );
IoDeleteDevice( CdData.FileSystemDeviceObject );
#ifdef __REACTOS__
IoUnregisterFileSystem( CdData.HddFileSystemDeviceObject );
IoDeleteDevice( CdData.HddFileSystemDeviceObject );
#endif
CdCompleteRequest( IrpContext, Irp, STATUS_SUCCESS );
return STATUS_SUCCESS;