Module Name: src
Committed By: mlelstv
Date: Mon Sep 2 07:25:48 UTC 2019
Modified Files:
src/sys/dev/ic: bwfm.c
Log Message:
tagging work queue as MPSAFE was premature. Revert.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ic/bwfm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/ic/bwfm.c
diff -u src/sys/dev/ic/bwfm.c:1.15 src/sys/dev/ic/bwfm.c:1.16
--- src/sys/dev/ic/bwfm.c:1.15 Sun Sep 1 05:40:39 2019
+++ src/sys/dev/ic/bwfm.c Mon Sep 2 07:25:48 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: bwfm.c,v 1.15 2019/09/01 05:40:39 mlelstv Exp $ */
+/* $NetBSD: bwfm.c,v 1.16 2019/09/02 07:25:48 mlelstv Exp $ */
/* $OpenBSD: bwfm.c,v 1.5 2017/10/16 22:27:16 patrick Exp $ */
/*
* Copyright (c) 2010-2016 Broadcom Corporation
@@ -143,7 +143,7 @@ bwfm_attach(struct bwfm_softc *sc)
int i, j, error;
error = workqueue_create(&sc->sc_taskq, DEVNAME(sc),
- bwfm_task, sc, PRI_NONE, IPL_NET, WQ_MPSAFE);
+ bwfm_task, sc, PRI_NONE, IPL_NET, 0);
if (error != 0) {
printf("%s: could not create workqueue\n", DEVNAME(sc));
return;