search for: bpref

Displaying 2 results from an estimated 2 matches for "bpref".

Did you mean: pref
2003 Jun 07
0
FFS related panic in 4.8-STABLE
...(matchmnt=0x0) at ../../ufs/ffs/ffs_softdep.c:622 #10 0xc023663d in boot (howto=256) at ../../kern/kern_shutdown.c:261 #11 0xc0236c04 in poweroff_wait (junk=0xc043ce1f, howto=-1069298176) at ../../kern/kern_shutdown.c:595 #12 0xc03397c4 in ffs_mapsearch (fs=0xc2fcd800, cgp=0xd4a1f000, bpref=10480648, allocsiz=6) at ../../ufs/ffs/ffs_alloc.c:1669 #13 0xc0338442 in ffs_alloccg (ip=0xc3b56b00, cg=115, bpref=10480648, ---Type <return> to continue, or q <return> to quit--- size=4096) at ../../ufs/ffs/ffs_alloc.c:1044 #14 0xc0337f83 in ffs_hashalloc (ip=0xc3b56b00, cg=115,...
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...aying disk syncs */ + if (sync_extdelay) + return (0); if ((error = getvnode(p->p_fd, SCARG(uap, fd), &fp)) != 0) return (error); --- /usr/src/sys.org/ufs/ffs/ffs_alloc.c Fri Sep 21 21:15:21 2001 +++ ufs/ffs/ffs_alloc.c Sat Apr 12 00:06:20 2003 @@ -125,6 +125,10 @@ ffs_alloc(ip, lbn, bpref, size, cred, bn #endif /* DIAGNOSTIC */ if (size == fs->fs_bsize && fs->fs_cstotal.cs_nbfree == 0) goto nospace; + /* Speedup flushing of syncer_wokitem_pending[*] if low on freespace */ + if (rushjob == 0 && + freespace(fs, fs->fs_minfree + 2) - numfrags(fs, size...