diff options
author | John Dyson <dyson@FreeBSD.org> | 1998-03-01 04:18:54 +0000 |
---|---|---|
committer | John Dyson <dyson@FreeBSD.org> | 1998-03-01 04:18:54 +0000 |
commit | ffc82b0a70cb3a4952d29251c5685bacefbf1424 (patch) | |
tree | bfd278429bcf24024c11fc82e9965dd546551a6a /sys/kern/subr_smp.c | |
parent | 1ee98f088514d7c5e9f0f41cdb25458d48b3f660 (diff) | |
download | src-ffc82b0a70cb3a4952d29251c5685bacefbf1424.tar.gz src-ffc82b0a70cb3a4952d29251c5685bacefbf1424.zip |
1) Use a more consistent page wait methodology.
2) Do not unnecessarily force page blocking when paging
pages out.
3) Further improve swap pager performance and correctness,
including fixing the paging in progress deadlock (except
in severe I/O error conditions.)
4) Enable vfs_ioopt=1 as a default.
5) Fix and enable the page prezeroing in SMP mode.
All in all, SMP systems especially should show a significant
improvement in "snappyness."
Notes
Notes:
svn path=/head/; revision=33936
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 0b5a16262d8b..d532becb7b1a 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.64 1997/12/15 02:18:20 tegge Exp $ + * $Id: mp_machdep.c,v 1.65 1998/02/09 06:08:13 eivind Exp $ */ #include "opt_smp.h" @@ -1991,7 +1991,7 @@ int invltlb_ok = 0; /* throttle smp_invltlb() till safe */ SYSCTL_INT(_machdep, OID_AUTO, invltlb_ok, CTLFLAG_RW, &invltlb_ok, 0, ""); /* Warning: Do not staticize. Used from swtch.s */ -int do_page_zero_idle = 0; /* bzero pages for fun and profit in idleloop */ +int do_page_zero_idle = 1; /* bzero pages for fun and profit in idleloop */ SYSCTL_INT(_machdep, OID_AUTO, do_page_zero_idle, CTLFLAG_RW, &do_page_zero_idle, 0, ""); |