[ros-diffs] [hpoussin] 55973: freeldr/pxe: remove some traces

hpoussin at svn.reactos.org hpoussin at svn.reactos.org
Sat Mar 3 20:57:17 UTC 2012


Author: hpoussin
Date: Sat Mar  3 20:57:17 2012
New Revision: 55973

URL: http://svn.reactos.org/svn/reactos?rev=55973&view=rev
Log:
freeldr/pxe: remove some traces

Modified:
    trunk/reactos/boot/freeldr/freeldr/fs/pxe.c

Modified: trunk/reactos/boot/freeldr/freeldr/fs/pxe.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/fs/pxe.c?rev=55973&r1=55972&r2=55973&view=diff
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/fs/pxe.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/fs/pxe.c [iso-8859-1] Sat Mar  3 20:57:17 2012
@@ -96,7 +96,7 @@
     {
         // HACK: this delay shouldn't be necessary
         KeStallExecutionProcessor(100 * 1000); // 100 ms
-        ERR("PxeCall(0x%x, %p)\n", Service, Parameter);
+        TRACE("PxeCall(0x%x, %p)\n", Service, Parameter);
     }
 
     exit = PxeCallApi(pxe->EntryPointSP.segment, pxe->EntryPointSP.offset, Service, Parameter);
@@ -293,7 +293,7 @@
 
 static LONG PxeDiskGetFileInformation(ULONG FileId, FILEINFORMATION* Information)
 {
-    UNIMPLEMENTED;
+    // No disk access in PXE mode
     return EINVAL;
 }
 
@@ -305,13 +305,13 @@
 
 static LONG PxeDiskRead(ULONG FileId, VOID* Buffer, ULONG N, ULONG* Count)
 {
-    UNIMPLEMENTED;
+    // No disk access in PXE mode
     return EINVAL;
 }
 
 static LONG PxeDiskSeek(ULONG FileId, LARGE_INTEGER* Position, SEEKMODE SeekMode)
 {
-    UNIMPLEMENTED;
+    // No disk access in PXE mode
     return EINVAL;
 }
 




More information about the Ros-diffs mailing list