Remove some debug messages at boot

svn path=/trunk/; revision=15419
This commit is contained in:
Hervé Poussineau 2005-05-20 01:08:37 +00:00
parent 725a500778
commit 79361fcb93
2 changed files with 6 additions and 6 deletions

View file

@ -113,7 +113,7 @@ IopInitLookasideLists(VOID)
{ {
/* Get the PRCB for this CPU */ /* Get the PRCB for this CPU */
Prcb = ((PKPCR)(KPCR_BASE + i * PAGE_SIZE))->Prcb; Prcb = ((PKPCR)(KPCR_BASE + i * PAGE_SIZE))->Prcb;
DPRINT1("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb); DPRINT("Setting up lookaside for CPU: %x, PRCB: %p\n", i, Prcb);
/* Set the Large IRP List */ /* Set the Large IRP List */
Prcb->PPLookasideList[LookasideLargeIrpList].L = &IoLargeIrpLookaside.L; Prcb->PPLookasideList[LookasideLargeIrpList].L = &IoLargeIrpLookaside.L;
@ -182,7 +182,7 @@ IopInitLookasideLists(VOID)
Prcb->PPLookasideList[LookasideCompletionList].P = &CurrentList->L; Prcb->PPLookasideList[LookasideCompletionList].P = &CurrentList->L;
} }
DPRINT1("Done allocation\n"); DPRINT("Done allocation\n");
} }
VOID VOID
@ -411,10 +411,10 @@ IoInit3(VOID)
IoCreateArcNames(); IoCreateArcNames();
/* Create the SystemRoot symbolic link */ /* Create the SystemRoot symbolic link */
CPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine); DPRINT("CommandLine: %s\n", (PCHAR)KeLoaderBlock.CommandLine);
Status = IoCreateSystemRootLink((PCHAR)KeLoaderBlock.CommandLine); Status = IoCreateSystemRootLink((PCHAR)KeLoaderBlock.CommandLine);
if (!NT_SUCCESS(Status)) { if (!NT_SUCCESS(Status)) {
DbgPrint("IoCreateSystemRootLink FAILED: (0x%x) - ", Status); CPRINT("IoCreateSystemRootLink FAILED: (0x%x) - ", Status);
KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE); KEBUGCHECK(INACCESSIBLE_BOOT_DEVICE);
} }

View file

@ -2278,7 +2278,7 @@ KdbpCliInterpretInitFile()
CHAR c; CHAR c;
/* Execute the commands in the init file */ /* Execute the commands in the init file */
DbgPrint("KDB: Executing KDBinit file...\n"); DPRINT("KDB: Executing KDBinit file...\n");
p1 = KdbInitFileBuffer; p1 = KdbInitFileBuffer;
while (p1[0] != '\0') while (p1[0] != '\0')
{ {
@ -2309,7 +2309,7 @@ KdbpCliInterpretInitFile()
while (p1[0] == '\r' || p1[0] == '\n') while (p1[0] == '\r' || p1[0] == '\n')
p1++; p1++;
} }
DbgPrint("KDB: KDBinit executed\n"); DPRINT("KDB: KDBinit executed\n");
} }
/*!\brief Called when KDB is initialized /*!\brief Called when KDB is initialized