Author: pho
Date: Wed Feb 27 18:12:04 2013
New Revision: 247399
URL: http://svnweb.freebsd.org/changeset/base/247399

Log:
  The .journal file needs to reside on the ROOTINO which must not extend
  beyond direct blocks. A typo caused this check to fail.

Modified:
  head/sbin/tunefs/tunefs.c

Modified: head/sbin/tunefs/tunefs.c
==============================================================================
--- head/sbin/tunefs/tunefs.c   Wed Feb 27 14:45:23 2013        (r247398)
+++ head/sbin/tunefs/tunefs.c   Wed Feb 27 18:12:04 2013        (r247399)
@@ -671,7 +671,7 @@ journal_findfile(void)
                                return (ino);
                }
        } else {
-               if ((off_t)dp1->di_size >= lblktosize(&sblock, NDADDR)) {
+               if ((off_t)dp2->di_size >= lblktosize(&sblock, NDADDR)) {
                        warnx("ROOTINO extends beyond direct blocks.");
                        return (-1);
                }
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to