https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a5ead049d9fdfff914ead1...
commit a5ead049d9fdfff914ead19e91a5c5efa5408b55 Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sun Nov 11 21:23:21 2018 +0100 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sun Nov 11 21:56:17 2018 +0100
[NTOS:IO] RAW-FS: Minor code formatting only. --- ntoskrnl/io/iomgr/rawfs.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/ntoskrnl/io/iomgr/rawfs.c b/ntoskrnl/io/iomgr/rawfs.c index 062c1fb42e..d08bb22f49 100644 --- a/ntoskrnl/io/iomgr/rawfs.c +++ b/ntoskrnl/io/iomgr/rawfs.c @@ -108,6 +108,7 @@ RawCheckForDismount(IN PVCB Vcb, Vcb->LocalVpb = NULL; Vcb->Vpb->Flags |= VPB_PERSISTENT; } + /* Don't do anything */ Delete = FALSE; } @@ -124,10 +125,10 @@ RawCheckForDismount(IN PVCB Vcb, } }
- /* Release lock and return status */ + /* Release the VPB lock */ IoReleaseVpbSpinLock(OldIrql);
- /* If we were to delete, delete volume */ + /* If we were to delete, delete the volume */ if (Delete) { PVPB DelVpb; @@ -311,7 +312,7 @@ RawCreate(IN PVCB Vcb, }
/* Increase the open count and set the VPB */ - Vcb->OpenCount += 1; + Vcb->OpenCount++; IoStackLocation->FileObject->Vpb = Vcb->Vpb;
/* Set IRP status and disable intermediate buffering */ @@ -330,10 +331,10 @@ RawCreate(IN PVCB Vcb, }
/* Check if the request failed */ - if (!(NT_SUCCESS(Status)) && !(Vcb->OpenCount)) + if (!NT_SUCCESS(Status) && !Vcb->OpenCount) { /* Check if we can dismount the device */ - Deleted = RawCheckForDismount(Vcb, TRUE); + Deleted = RawCheckForDismount(Vcb, TRUE); }
/* In case of deletion, the mutex is already released */ @@ -464,11 +465,10 @@ RawMountVolume(IN PIO_STACK_LOCATION IoStackLocation)
/* Increment OpenCount by two to avoid dismount when RawClose() will be called on ObDereferenceObject() */ Volume->Vcb.OpenCount += 2; - /* Notify for sucessful mount */ + /* Notify for successful mount */ FsRtlNotifyVolumeEvent(FileObject, FSRTL_VOLUME_MOUNT); - /* Decrease refcount to 0 to make FileObject being released */ + /* It's not opened anymore, decrease the reference count to 0 to make FileObject being released */ ObDereferenceObject(FileObject); - /* It's not open anymore, go back to 0 */ Volume->Vcb.OpenCount -= 2;
return Status;