diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-05-02 05:55:14 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2001-05-02 05:55:14 +0000 |
commit | bf1fad0a996e213e8697ac3d92e77e5de784f2f1 (patch) | |
tree | 85103de3063df2863c0241e5e6b1956582bcb8d6 /sys | |
parent | 4041da077785e1783ae15a202c48768e0acba6ae (diff) |
Use correct M_CACHE type; art@ ok.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/vfs_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index b8a38a6a935..6bf013dcb07 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_cache.c,v 1.4 2001/04/29 20:58:37 art Exp $ */ +/* $OpenBSD: vfs_cache.c,v 1.5 2001/05/02 05:55:13 fgsch Exp $ */ /* $NetBSD: vfs_cache.c,v 1.13 1996/02/04 02:18:09 christos Exp $ */ /* @@ -231,7 +231,7 @@ nchinit() TAILQ_INIT(&nclruhead); nchashtbl = hashinit(desiredvnodes, M_CACHE, M_WAITOK, &nchash); pool_init(&nch_pool, sizeof(struct namecache), 0, 0, 0, "nchpl", - 0, pool_page_alloc_nointr, pool_page_free_nointr, M_PROC); + 0, pool_page_alloc_nointr, pool_page_free_nointr, M_CACHE); } /* |