Author: pschweitzer
Date: Sun Aug 3 12:48:16 2008
New Revision: 35075
URL:
http://svn.reactos.org/svn/reactos?rev=35075&view=rev
Log:
- FsRtlBalanceReads: call IofCallDriver
- Updated some comments
Modified:
branches/pierre-fsd/ntoskrnl/fsrtl/faulttol.c
branches/pierre-fsd/ntoskrnl/fsrtl/name.c
Modified: branches/pierre-fsd/ntoskrnl/fsrtl/faulttol.c
URL:
http://svn.reactos.org/svn/reactos/branches/pierre-fsd/ntoskrnl/fsrtl/fault…
==============================================================================
--- branches/pierre-fsd/ntoskrnl/fsrtl/faulttol.c [iso-8859-1] (original)
+++ branches/pierre-fsd/ntoskrnl/fsrtl/faulttol.c [iso-8859-1] Sun Aug 3 12:48:16 2008
@@ -17,7 +17,7 @@
/*++
* @name FsRtlBalanceReads
- * @implemented NT 4.0
+ * @implemented
*
* The FsRtlBalanceReads routine sends an IRP to an FTDISK Driver
* requesting the driver to balance read requests across a mirror set.
@@ -54,7 +54,7 @@
&IoStatusBlock);
/* Send it */
- Status = IoCallDriver(TargetDevice, Irp);
+ Status = IofCallDriver(TargetDevice, Irp);
/* Wait if needed */
if (Status == STATUS_PENDING)
@@ -74,7 +74,7 @@
/*++
* @name FsRtlSyncVolumes
- * @implemented NT 4.0
+ * @implemented
*
* The FsRtlSyncVolumes routine is deprecated.
*
Modified: branches/pierre-fsd/ntoskrnl/fsrtl/name.c
URL:
http://svn.reactos.org/svn/reactos/branches/pierre-fsd/ntoskrnl/fsrtl/name.…
==============================================================================
--- branches/pierre-fsd/ntoskrnl/fsrtl/name.c [iso-8859-1] (original)
+++ branches/pierre-fsd/ntoskrnl/fsrtl/name.c [iso-8859-1] Sun Aug 3 12:48:16 2008
@@ -19,21 +19,21 @@
* @name FsRtlAreNamesEqual
* @implemented
*
- * FILLME
+ * Compare two strings to check if they match
*
* @param Name1
- * FILLME
+ * First unicode string to compare
*
* @param Name2
- * FILLME
+ * Second unicode string to compare
*
* @param IgnoreCase
- * FILLME
+ * If TRUE, Case will be ignored when comparing strings
*
* @param UpcaseTable
- * FILLME
- *
- * @return None
+ * Table for upcase letters. If NULL is given, system one will be used
+ *
+ * @return TRUE if the strings are equal
*
* @remarks From Bo Branten's ntifs.h v25.
*
@@ -188,7 +188,7 @@
* @name FsRtlDoesNameContainWildCards
* @implemented
*
- * FILLME
+ * Checks if the given string contains WildCards
*
* @param Name
* Pointer to a UNICODE_STRING containing Name to examine