mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2025-01-27 02:43:56 +08:00
unix.c (check_if_skip): If the checkinterval is zero, then
disregard it when calculating when the next check will take place by e2fsck.
This commit is contained in:
parent
de69291f14
commit
66fbee8cbb
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user