bin/138043: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Thu Jan 7 01:20:04 UTC 2010


The following reply was made to PR bin/138043; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: bin/138043: commit references a PR
Date: Thu,  7 Jan 2010 01:11:08 +0000 (UTC)

 Author: mckusick
 Date: Thu Jan  7 01:10:49 2010
 New Revision: 201708
 URL: http://svn.freebsd.org/changeset/base/201708
 
 Log:
   Add some error messages suggested in PR bin/138043. The code to
   correct the problem was added in r176575 by delphij on 2008-02-25.
   
   PR:		138043
   Reported by:	Heikki Suonsivu
 
 Modified:
   head/sbin/fsck_ffs/main.c
   head/sbin/fsck_ffs/pass1.c
 
 Modified: head/sbin/fsck_ffs/main.c
 ==============================================================================
 --- head/sbin/fsck_ffs/main.c	Thu Jan  7 00:57:40 2010	(r201707)
 +++ head/sbin/fsck_ffs/main.c	Thu Jan  7 01:10:49 2010	(r201708)
 @@ -406,7 +406,10 @@ checkfilesys(char *filesys)
  	 */
  	if (duplist) {
  		if (preen || usedsoftdep)
 -			pfatal("INTERNAL ERROR: dups with -p");
 +			pfatal("INTERNAL ERROR: dups with %s%s%s",
 +			    preen ? "-p" : "",
 +			    (preen && usedsoftdep) ? " and " : "",
 +			    usedsoftdep ? "softupdates" : "");
  		printf("** Phase 1b - Rescan For More DUPS\n");
  		pass1b();
  	}
 
 Modified: head/sbin/fsck_ffs/pass1.c
 ==============================================================================
 --- head/sbin/fsck_ffs/pass1.c	Thu Jan  7 00:57:40 2010	(r201707)
 +++ head/sbin/fsck_ffs/pass1.c	Thu Jan  7 01:10:49 2010	(r201708)
 @@ -98,10 +98,16 @@ pass1(void)
  			rebuildcg = 1;
  		if (!rebuildcg && sblock.fs_magic == FS_UFS2_MAGIC) {
  			inosused = cgrp.cg_initediblk;
 -			if (inosused > sblock.fs_ipg)
 +			if (inosused > sblock.fs_ipg) {
 +				pfatal("%s (%d > %d) %s %d\nReset to %d\n",
 +				    "Too many initialized inodes", inosused,
 +				    sblock.fs_ipg, "in cylinder group", c,
 +				    sblock.fs_ipg);
  				inosused = sblock.fs_ipg;
 -		} else
 +			}
 +		} else {
  			inosused = sblock.fs_ipg;
 +		}
  		if (got_siginfo) {
  			printf("%s: phase 1: cyl group %d of %d (%d%%)\n",
  			    cdevname, c, sblock.fs_ncg,
 _______________________________________________
 svn-src-all at freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
 


More information about the freebsd-fs mailing list