Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic tagging work queue as MPSAFE was premature. Revert.



details:   https://anonhg.NetBSD.org/src/rev/c119a642cb32
branches:  trunk
changeset: 459294:c119a642cb32
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Mon Sep 02 07:25:48 2019 +0000

description:
tagging work queue as MPSAFE was premature. Revert.

diffstat:

 sys/dev/ic/bwfm.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 9d3dc39f1bbd -r c119a642cb32 sys/dev/ic/bwfm.c
--- a/sys/dev/ic/bwfm.c Mon Sep 02 06:10:24 2019 +0000
+++ b/sys/dev/ic/bwfm.c Mon Sep 02 07:25:48 2019 +0000
@@ -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 @@
        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;



Home | Main Index | Thread Index | Old Index