summaryrefslogtreecommitdiffstats
path: root/sys/net/pf_osfp.c
diff options
context:
space:
mode:
authorfrantzen <frantzen@openbsd.org>2004-04-09 19:30:41 +0000
committerfrantzen <frantzen@openbsd.org>2004-04-09 19:30:41 +0000
commitbc243da5dd01143ac429d3fe67a8390f3c429e9c (patch)
tree9d3c3acdddd49e5987a342c379060922fb641c4d /sys/net/pf_osfp.c
parentIf no user/group is specified for the log file in newsyslog.conf, (diff)
downloadwireguard-openbsd-bc243da5dd01143ac429d3fe67a8390f3c429e9c.tar.xz
wireguard-openbsd-bc243da5dd01143ac429d3fe67a8390f3c429e9c.zip
move some of the non-interrupt pools from the small kmem_map to the much
larger kernel map
Diffstat (limited to 'sys/net/pf_osfp.c')
-rw-r--r--sys/net/pf_osfp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/pf_osfp.c b/sys/net/pf_osfp.c
index 98cc01ab1fb..b2adcf29667 100644
--- a/sys/net/pf_osfp.c
+++ b/sys/net/pf_osfp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pf_osfp.c,v 1.9 2004/01/04 20:08:42 pvalchev Exp $ */
+/* $OpenBSD: pf_osfp.c,v 1.10 2004/04/09 19:30:41 frantzen Exp $ */
/*
* Copyright (c) 2003 Mike Frantzen <frantzen@w4g.org>
@@ -233,9 +233,9 @@ void
pf_osfp_initialize(void)
{
pool_init(&pf_osfp_entry_pl, sizeof(struct pf_osfp_entry), 0, 0, 0,
- "pfosfpen", NULL);
+ "pfosfpen", &pool_allocator_nointr);
pool_init(&pf_osfp_pl, sizeof(struct pf_os_fingerprint), 0, 0, 0,
- "pfosfp", NULL);
+ "pfosfp", &pool_allocator_nointr);
SLIST_INIT(&pf_osfp_list);
}