From 23fb42352a2ae1725df057d74319d951252ee189 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Wed, 17 Apr 2013 13:42:49 -0400 Subject: [PATCH] salvager: report actual uniqs for a too low error when salvager fixes a "uniquifier too low" error, report what it is fixing and what it was looking for. Change-Id: I021bd7f69225ff02f4981aec1f6e64a4b1f3fc00 Reviewed-on: http://gerrit.openafs.org/9795 Tested-by: BuildBot Reviewed-by: Jeffrey Altman --- src/vol/vol-salvage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vol/vol-salvage.c b/src/vol/vol-salvage.c index 0ba989668..15b478957 100644 --- a/src/vol/vol-salvage.c +++ b/src/vol/vol-salvage.c @@ -4159,7 +4159,7 @@ SalvageVolume(struct SalvInfo *salvinfo, struct InodeSummary *rwIsp, IHandle_t * /* Make sure the uniquifer is big enough: maxunique is the real maxUniquifier */ if (volHeader.uniquifier < (maxunique + 1)) { if (!Showmode) - Log("Volume uniquifier is too low; fixed\n"); + Log("Volume uniquifier %u is too low (max uniq %u); fixed\n", volHeader.uniquifier, maxunique); /* Plus 2,000 in case there are workstations out there with * cached vnodes that have since been deleted */ -- 2.39.5