summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs/pass1.c
diff options
context:
space:
mode:
authoriedowse <iedowse@FreeBSD.org>2000-12-15 14:23:55 +0000
committeriedowse <iedowse@FreeBSD.org>2000-12-15 14:23:55 +0000
commit3e3c84c80c9f9500c397dc4b174259d631441b7f (patch)
tree8b803dfd960b8552dd62173dfdcbbabec2ada0d4 /sbin/fsck_ffs/pass1.c
parentf15d921e9eff691ff94f40f1490b10cd0ab78d65 (diff)
downloadFreeBSD-src-3e3c84c80c9f9500c397dc4b174259d631441b7f.zip
FreeBSD-src-3e3c84c80c9f9500c397dc4b174259d631441b7f.tar.gz
Add a simple SIGINFO handler to fsck_ffs. Shortly after receipt of
a SIGINFO (normally via Ctrl-T), a line will be output indicating the current phase number and progress information relevant to the current phase. Approved by: mckusick
Diffstat (limited to 'sbin/fsck_ffs/pass1.c')
-rw-r--r--sbin/fsck_ffs/pass1.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sbin/fsck_ffs/pass1.c b/sbin/fsck_ffs/pass1.c
index 1045a5f..e6bd215 100644
--- a/sbin/fsck_ffs/pass1.c
+++ b/sbin/fsck_ffs/pass1.c
@@ -93,6 +93,12 @@ pass1()
inumber = c * sblock.fs_ipg;
setinodebuf(inumber);
inosused = sblock.fs_ipg;
+ if (got_siginfo) {
+ printf("%s: phase 1: cyl group %d of %d (%d%%)\n",
+ cdevname, c, sblock.fs_ncg,
+ c * 100 / sblock.fs_ncg);
+ got_siginfo = 0;
+ }
/*
* If we are using soft updates, then we can trust the
* cylinder group inode allocation maps to tell us which
OpenPOWER on IntegriCloud