CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/01/24 06:01:29
Modified files:
sys/ufs/ffs : ffs_vnops.c
Log message:
Improve small random read ffs performance:
Only call bread_cluster if either the previously read ffs block is
adjacent to the current block or if the current read request exceeds the
current ffs block. This effectively turns off read-ahead for random reads
that fall within one ffs block.
okay beck@, mpi@, visa@
