diff options
author | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
---|---|---|
committer | svn2git <svn2git@FreeBSD.org> | 1994-07-01 08:00:00 +0000 |
commit | 5e0e9b99dc3fc0ecd49d929db0d57c784b66f481 (patch) | |
tree | e779b5a6edddbb949b7990751b12d6f25304ba86 /sbin/fsck/pass5.c | |
parent | a16f65c7d117419bd266c28a1901ef129a337569 (diff) |
Diffstat (limited to 'sbin/fsck/pass5.c')
-rw-r--r-- | sbin/fsck/pass5.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/sbin/fsck/pass5.c b/sbin/fsck/pass5.c index 475b9a15ed85..4d0385732b0b 100644 --- a/sbin/fsck/pass5.c +++ b/sbin/fsck/pass5.c @@ -33,7 +33,7 @@ #ifndef lint static char sccsid[] = "@(#)pass5.c 5.13 (Berkeley) 7/20/90"; -static char rcsid[] = "$Header: /home/cvs/386BSD/src/sbin/fsck/pass5.c,v 1.2 1993/07/22 16:51:58 jkh Exp $"; +static char rcsid[] = "$Id: pass5.c,v 1.3 1994/05/05 23:41:06 wollman Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -42,6 +42,14 @@ static char rcsid[] = "$Header: /home/cvs/386BSD/src/sbin/fsck/pass5.c,v 1.2 199 #include <string.h> #include "fsck.h" +/* + * Allow time in cg summary data to be this number of seconds in the future. + * Currently we allow up to one day of slack because of problem that + * adjkerntz(8) can change the time by up to a day when it runs and adjusts + * the timezone. + */ +#define TIME_SLACK (60*60*24) + pass5() { int c, blk, frags, basesize, sumsize, mapsize, savednrpos; @@ -110,7 +118,10 @@ pass5() dmax = dbase + fs->fs_fpg; if (dmax > fs->fs_size) dmax = fs->fs_size; - if (now > cg->cg_time) +#ifndef TIME_SLACK +#define TIME_SLACK 0 +#endif + if (now > cg->cg_time - TIME_SLACK) newcg->cg_time = cg->cg_time; else newcg->cg_time = now; |