Author: fireball Date: Mon Oct 12 11:37:07 2009 New Revision: 43391
URL: http://svn.reactos.org/svn/reactos?rev=43391&view=rev Log: [fastfat_new] - Downgrade most of file info debug prints.
Modified: trunk/reactos/drivers/filesystems/fastfat_new/finfo.c
Modified: trunk/reactos/drivers/filesystems/fastfat_new/finfo.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/fastfat... ============================================================================== --- trunk/reactos/drivers/filesystems/fastfat_new/finfo.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/fastfat_new/finfo.c [iso-8859-1] Mon Oct 12 11:37:07 2009 @@ -37,7 +37,7 @@
Buffer->EndOfFile.LowPart = Fcb->FatHandle->Filesize; Buffer->AllocationSize = Buffer->EndOfFile; - DPRINT1("Filesize %d, chain length %d\n", Fcb->FatHandle->Filesize, Fcb->FatHandle->iChainLength); + DPRINT("Filesize %d, chain length %d\n", Fcb->FatHandle->Filesize, Fcb->FatHandle->iChainLength); } else { @@ -77,7 +77,7 @@ FatSetFullFileNameInFcb(IrpContext, Fcb); }
- DPRINT1("FullFileName %wZ\n", &Fcb->FullFileName); + DPRINT("FullFileName %wZ\n", &Fcb->FullFileName);
if (*Length < Fcb->FullFileName.Length - Trim) { @@ -139,15 +139,15 @@ Length = IrpSp->Parameters.QueryFile.Length; Buffer = Irp->AssociatedIrp.SystemBuffer;
- DPRINT1("FatiQueryInformation\n", 0); - DPRINT1("\tIrp = %08lx\n", Irp); - DPRINT1("\tLength = %08lx\n", Length); - DPRINT1("\tFileInformationClass = %08lx\n", InfoClass); - DPRINT1("\tBuffer = %08lx\n", Buffer); + DPRINT("FatiQueryInformation\n", 0); + DPRINT("\tIrp = %08lx\n", Irp); + DPRINT("\tLength = %08lx\n", Length); + DPRINT("\tFileInformationClass = %08lx\n", InfoClass); + DPRINT("\tBuffer = %08lx\n", Buffer);
FileType = FatDecodeFileObject(FileObject, &Vcb, &Fcb, &Ccb);
- DPRINT1("Vcb %p, Fcb %p, Ccb %p, open type %d\n", Vcb, Fcb, Ccb, FileType); + DPRINT("Vcb %p, Fcb %p, Ccb %p, open type %d\n", Vcb, Fcb, Ccb, FileType);
/* Acquire VCB lock */ if (InfoClass == FileNameInformation ||