From e9f9dd8e93712ba1ea4a1382c360b107883fc056 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 2 Dec 2000 06:35:07 +0000 Subject: [PATCH] ChangeLog, fsck.c: fsck.c (wait_one): When we let a new fsck take control of the console to display the progress bar, set FLAG_PROGRESS to so that fsck knows not to start new processes during an fsck pass with the progress bar. (Should fix debian bug #65267) --- misc/ChangeLog | 6 ++++++ misc/fsck.c | 1 + 2 files changed, 7 insertions(+) diff --git a/misc/ChangeLog b/misc/ChangeLog index 34dcbc8..60ff2a9 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,5 +1,11 @@ 2000-12-02 + * fsck.c (wait_one): When we let a new fsck take control of the + console to display the progress bar, set FLAG_PROGRESS to + so that fsck knows not to start new processes during an + fsck pass with the progress bar. (Should fix debian bug + #65267) + * tune2fs.8.in: Add clarifying statement about converting user and group names to uid's before storing them in the superblock. (Debian bug #67446) diff --git a/misc/fsck.c b/misc/fsck.c index 5202711..95a58d8 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -594,6 +594,7 @@ static struct fsck_instance *wait_one(NOARGS) } } else kill(inst2->pid, SIGUSR1); + inst2->flags |= FLAG_PROGRESS; break; } } -- 1.8.3.1