Displaying 1 result from an estimated 1 matches for "lbprev".
Did you mean:
rbprev
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...ce */
+ if (rushjob == 0 &&
+ freespace(fs, fs->fs_minfree + 2) - numfrags(fs, size) < 0)
+ rushjob = syncer_maxdelay;
if (cred->cr_uid != 0 &&
freespace(fs, fs->fs_minfree) - numfrags(fs, size) < 0)
goto nospace;
@@ -195,6 +199,10 @@ ffs_realloccg(ip, lbprev, bpref, osize,
if (cred == NOCRED)
panic("ffs_realloccg: missing credential");
#endif /* DIAGNOSTIC */
+ /* Speedup flushing of syncer_wokitem_pending[*] if low on freespace */
+ if (rushjob == 0 &&
+ freespace(fs, fs->fs_minfree + 2) - numfrags(fs, nsize - osize) &l...