From 210125a7ef8f69f88aad75aae3dea89e0af945ef Mon Sep 17 00:00:00 2001 From: thorpej Date: Fri, 7 Feb 2020 01:14:55 +0000 Subject: [PATCH] IPL_SOFTNET -> IPL_NET in previous. --- sys/net/if.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/if.c b/sys/net/if.c index 183b2608b356..5b9ca75f87fa 100644 --- a/sys/net/if.c +++ b/sys/net/if.c @@ -1,4 +1,4 @@ -/* $NetBSD: if.c,v 1.471 2020/02/06 23:30:19 thorpej Exp $ */ +/* $NetBSD: if.c,v 1.472 2020/02/07 01:14:55 thorpej Exp $ */ /*- * Copyright (c) 1999, 2000, 2001, 2008 The NetBSD Foundation, Inc. @@ -90,7 +90,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.471 2020/02/06 23:30:19 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.472 2020/02/07 01:14:55 thorpej Exp $"); #if defined(_KERNEL_OPT) #include "opt_inet.h" @@ -313,7 +313,7 @@ ifinit1(void) ifnet_psref_class = psref_class_create("ifnet", IPL_SOFTNET); ifa_psref_class = psref_class_create("ifa", IPL_SOFTNET); error = workqueue_create(&ifnet_link_state_wq, "iflnkst", - if_link_state_change_work, NULL, PRI_SOFTNET, IPL_SOFTNET, + if_link_state_change_work, NULL, PRI_SOFTNET, IPL_NET, WQ_MPSAFE); KASSERT(error == 0); PSLIST_INIT(&ifnet_pslist);