From owner-cvs-src-old@FreeBSD.ORG Sat Aug 7 18:30:25 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A66591065670 for ; Sat, 7 Aug 2010 18:30:25 +0000 (UTC) (envelope-from ivoras@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9448A8FC0C for ; Sat, 7 Aug 2010 18:30:25 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o77IUPZF038112 for ; Sat, 7 Aug 2010 18:30:25 GMT (envelope-from ivoras@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o77IUPF8038111 for cvs-src-old@freebsd.org; Sat, 7 Aug 2010 18:30:25 GMT (envelope-from ivoras@repoman.freebsd.org) Message-Id: <201008071830.o77IUPF8038111@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ivoras@repoman.freebsd.org using -f From: Ivan Voras Date: Sat, 7 Aug 2010 18:30:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_cluster.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Aug 2010 18:30:25 -0000 ivoras 2010-08-07 18:30:10 UTC FreeBSD src repository Modified files: sys/kern vfs_cluster.c Log: SVN rev 211031 on 2010-08-07 18:30:10Z by ivoras To help with sequential read UFS performance on modern systems, increase the vfs.read_max default. For most systems this means going from 128 KiB to 256 KiB, which is still very conservative and lower than what most other operating systems use, but as a sane default should not interfere much with existing systems. For systems with RAID volumes and/or virtualization envirnments, where read performance is very important, increasing this sysctl tunable to 32 or even more will demonstratively yield additional performance benefits. If MAXPHYS ever gets bumped up, it will probably be a good idea to slave read_max to it. Revision Changes Path 1.181 +1 -1 src/sys/kern/vfs_cluster.c