unix.c (check_if_skip): If the checkinterval is zero, then

disregard it when calculating when the next check will
	take place by e2fsck.
bitmap-optimize
Theodore Ts'o 2004-05-04 20:38:17 -04:00
parent de69291f14
commit 66fbee8cbb
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2004-05-04 Theodore Ts'o <tytso@mit.edu>
* unix.c (check_if_skip): If the checkinterval is zero, then
disregard it when calculating when the next check will
take place.
2004-04-12 Theodore Ts'o <tytso@mit.edu>
* unix.c (is_on_batt): Be more flexible about the name of the ACPI

View File

@ -298,7 +298,8 @@ static void check_if_skip(e2fsck_t ctx)
if (next_check <= 0)
next_check = 1;
}
if ((now - fs->super->s_lastcheck) >= fs->super->s_checkinterval)
if (fs->super->s_checkinterval &&
((now - fs->super->s_lastcheck) >= fs->super->s_checkinterval))
next_check = 1;
if (next_check <= 5) {
if (next_check == 1)