diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2012-08-16 04:52:52 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2012-08-16 04:52:52 +0000 |
commit | 79971bbebba6ae79df4bb2e9eddf7ed1d6adf0a8 (patch) | |
tree | 24a37f4b43525029db13d4b0fddf0bf4047e1861 /sys/ufs | |
parent | 57a30d5eaaea306046ae928a9189911e09447e60 (diff) |
remove pool hiwat call. hiwat is less useful than it used to be.
less greedy pools are nicer pools.
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ufs/ufs_dirhash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ufs/ufs/ufs_dirhash.c b/sys/ufs/ufs/ufs_dirhash.c index a85f5c913a4..a71d4e2d2a4 100644 --- a/sys/ufs/ufs/ufs_dirhash.c +++ b/sys/ufs/ufs/ufs_dirhash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ufs_dirhash.c,v 1.23 2011/06/28 20:07:18 tedu Exp $ */ +/* $OpenBSD: ufs_dirhash.c,v 1.24 2012/08/16 04:52:51 tedu Exp $ */ /* * Copyright (c) 2001, 2002 Ian Dowse. All rights reserved. * @@ -1059,7 +1059,6 @@ ufsdirhash_init(void) { pool_init(&ufsdirhash_pool, DH_NBLKOFF * sizeof(doff_t), 0, 0, 0, "dirhash", &pool_allocator_nointr); - pool_sethiwat(&ufsdirhash_pool, 512); mtx_init(&ufsdirhash_mtx, IPL_NONE); TAILQ_INIT(&ufsdirhash_list); #if defined (__sparc__) && !defined (__sparc64__) |