From: Theodore Ts'o Date: Sat, 2 Dec 2000 06:35:07 +0000 (+0000) Subject: ChangeLog, fsck.c: X-Git-Tag: E2FSPROGS-1_20~211 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=e9f9dd8e93712ba1ea4a1382c360b107883fc056;p=tools%2Fe2fsprogs.git 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) --- 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; } }