From cbb9d1f6aeb80a0256c7e135ae433c3c0cd88768 Mon Sep 17 00:00:00 2001 From: peter Date: Thu, 30 Dec 1999 16:32:40 +0000 Subject: Make fsck(8) do a MNT_RELOAD after cleaning for all read-only mounted filesystems, not just for the root fs. Reviewed by: mckusick Submitted by: Paul Saab --- sbin/quotacheck/preen.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'sbin/quotacheck') diff --git a/sbin/quotacheck/preen.c b/sbin/quotacheck/preen.c index fc6dd23..e43aada 100644 --- a/sbin/quotacheck/preen.c +++ b/sbin/quotacheck/preen.c @@ -67,7 +67,6 @@ struct disk { } *disks; int nrun, ndisks; -char hotroot; static void addpart __P((char *name, char *fsname, long auxdata)); static struct disk *finddisk __P((char *name)); @@ -298,11 +297,6 @@ blockcheck(origname) struct fstab *fsinfo; int retried = 0, len; - hotroot = 0; - if (stat("/", &stslash) < 0) { - printf("Can't stat /: %s\n", strerror(errno)); - return (origname); - } newname = origname; retry: if (stat(newname, &stblock) < 0) { @@ -312,8 +306,6 @@ retry: switch(stblock.st_mode & S_IFMT) { case S_IFCHR: case S_IFBLK: - if (stslash.st_dev == stblock.st_rdev) - hotroot++; return(newname); case S_IFDIR: if (retried) -- cgit v1.1