diff options
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 5a6013c05ef..ddd71064f85 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.326 2016/08/31 11:05:05 mpi Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.327 2016/09/15 02:00:18 dlg Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -3372,9 +3372,8 @@ syn_cache_init(void) } /* Initialize the syn cache pool. */ - pool_init(&syn_cache_pool, sizeof(struct syn_cache), 0, 0, 0, - "syncache", NULL); - pool_setipl(&syn_cache_pool, IPL_SOFTNET); + pool_init(&syn_cache_pool, sizeof(struct syn_cache), 0, IPL_SOFTNET, + 0, "syncache", NULL); } void |