> Accounting is resumed (silently) when the filesystem
> size drops below a suitable hysteresis level.
>From sys/kern_acct.c:
if (savacctp) {
fs = savacctp->i_fs;
if (freespace(fs, fs->fs_minfree + acctresume) > 0) {
acctp = savacctp;
savacctp = NULL;
printf("Accounting resumed\n");
}
}
Silently? Do tell...
Guy Harris