Now we know MUP is working, reduce a bit its verbosity

svn path=/trunk/; revision=68789
This commit is contained in:
Pierre Schweitzer 2015-08-21 20:44:30 +00:00
parent 6a08c60dee
commit e816df8cd0

View file

@ -1620,7 +1620,7 @@ MupDereferenceMasterQueryContext(PMUP_MQC MasterQueryContext)
if (References != 0) if (References != 0)
{ {
DPRINT1("Still having refs (%ld)\n", References); DPRINT("Still having refs (%ld)\n", References);
return STATUS_PENDING; return STATUS_PENDING;
} }
@ -1700,7 +1700,7 @@ QueryPathCompletionRoutine(PDEVICE_OBJECT DeviceObject,
MasterQueryContext = QueryContext->MasterQueryContext; MasterQueryContext = QueryContext->MasterQueryContext;
Status = Irp->IoStatus.Status; 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); ExAcquireResourceExclusiveLite(&MasterQueryContext->QueryPathListLock, TRUE);
RemoveEntryList(&QueryContext->QueryPathListEntry); RemoveEntryList(&QueryContext->QueryPathListEntry);
@ -1920,7 +1920,7 @@ CreateRedirectedFile(PIRP Irp,
{ {
Prefix = CONTAINING_RECORD(TableEntry, MUP_PFX, PrefixTableEntry); 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 */ /* If so, check whether the prefix is still valid */
KeQuerySystemTime(&CurrentTime); KeQuerySystemTime(&CurrentTime);
@ -2115,7 +2115,7 @@ CreateRedirectedFile(PIRP Irp,
/* Query the provider !*/ /* Query the provider !*/
DPRINT1("Requeting UNC provider: %wZ\n", &UncProvider->DeviceName); 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); Status = IoCallDriver(UncProvider->DeviceObject, QueryIrp);
} }