From b597c11b723da7ef6a66fc19d712f4723fc66e48 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Mon, 16 Nov 2015 22:49:02 -0800 Subject: [PATCH] sys: WIP --- src/sys/driver.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/sys/driver.c b/src/sys/driver.c index fb17c438..1106bcbe 100644 --- a/src/sys/driver.c +++ b/src/sys/driver.c @@ -94,7 +94,10 @@ DriverEntry( FspFastIoDispatch.ReleaseForCcFlush = FspReleaseForCcFlush; DriverObject->FastIoDispatch = &FspFastIoDispatch; - /* register as a file system; this informs all filter drivers */ + /* + * Register as a file system; this informs all filter drivers. + * Future drivers will not be informed because we are a FILE_DEVICE_FILE_SYSTEM! + */ IoRegisterFileSystem(FspDeviceObject); return STATUS_SUCCESS;