Author: pschweitzer Date: Fri Aug 21 20:44:30 2015 New Revision: 68789
URL: http://svn.reactos.org/svn/reactos?rev=68789&view=rev Log: [MUP] Now we know MUP is working, reduce a bit its verbosity
Modified: trunk/reactos/drivers/filesystems/mup/mup.c
Modified: trunk/reactos/drivers/filesystems/mup/mup.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/mup/mup... ============================================================================== --- trunk/reactos/drivers/filesystems/mup/mup.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/mup/mup.c [iso-8859-1] Fri Aug 21 20:44:30 2015 @@ -1620,7 +1620,7 @@
if (References != 0) { - DPRINT1("Still having refs (%ld)\n", References); + DPRINT("Still having refs (%ld)\n", References); return STATUS_PENDING; }
@@ -1700,7 +1700,7 @@ MasterQueryContext = QueryContext->MasterQueryContext; Status = Irp->IoStatus.Status;
- DPRINT1("Reply from %wZ: %u (Status: %lx)\n", &QueryContext->UncProvider->DeviceName, QueryResponse->LengthAccepted, Status); + DPRINT("Reply from %wZ: %u (Status: %lx)\n", &QueryContext->UncProvider->DeviceName, QueryResponse->LengthAccepted, Status);
ExAcquireResourceExclusiveLite(&MasterQueryContext->QueryPathListLock, TRUE); RemoveEntryList(&QueryContext->QueryPathListEntry); @@ -1920,7 +1920,7 @@ { Prefix = CONTAINING_RECORD(TableEntry, MUP_PFX, PrefixTableEntry);
- DPRINT1("Matching prefix found: %wZ\n", &Prefix->AcceptedPrefix); + DPRINT("Matching prefix found: %wZ\n", &Prefix->AcceptedPrefix);
/* If so, check whether the prefix is still valid */ KeQuerySystemTime(&CurrentTime); @@ -2115,7 +2115,7 @@
/* Query the provider !*/ DPRINT1("Requeting UNC provider: %wZ\n", &UncProvider->DeviceName); - DPRINT1("Calling: %wZ\n", &UncProvider->DeviceObject->DriverObject->DriverName); + DPRINT("Calling: %wZ\n", &UncProvider->DeviceObject->DriverObject->DriverName); Status = IoCallDriver(UncProvider->DeviceObject, QueryIrp); }