diff options
Diffstat (limited to 'usr/src/uts/common/io/softmac')
-rw-r--r-- | usr/src/uts/common/io/softmac/softmac_dev.c | 5 | ||||
-rw-r--r-- | usr/src/uts/common/io/softmac/softmac_fp.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/usr/src/uts/common/io/softmac/softmac_dev.c b/usr/src/uts/common/io/softmac/softmac_dev.c index 3b9c76a7e2..60415e3422 100644 --- a/usr/src/uts/common/io/softmac/softmac_dev.c +++ b/usr/src/uts/common/io/softmac/softmac_dev.c @@ -23,6 +23,9 @@ * Use is subject to license terms. */ +/* + * Copyright 2019, Joyent, Inc. + */ #include <sys/types.h> #include <inet/common.h> @@ -662,7 +665,7 @@ softmac_drv_wsrv(queue_t *wq) */ sup->su_tx_inprocess++; mutex_exit(&sup->su_mutex); - dld_wsrv(wq); + (void) dld_wsrv(wq); mutex_enter(&sup->su_mutex); if (--sup->su_tx_inprocess == 0) cv_signal(&sup->su_cv); diff --git a/usr/src/uts/common/io/softmac/softmac_fp.c b/usr/src/uts/common/io/softmac/softmac_fp.c index 8286ac4013..174a7b2e86 100644 --- a/usr/src/uts/common/io/softmac/softmac_fp.c +++ b/usr/src/uts/common/io/softmac/softmac_fp.c @@ -24,6 +24,10 @@ */ /* + * Copyright 2019, Joyent, Inc. + */ + +/* * Softmac data-path switching: * * - Fast-path model @@ -764,7 +768,7 @@ softmac_wput_single_nondata(softmac_upper_t *sup, mblk_t *mp) * operation is is serialized by softmac_wput_nondata_task(). */ if (sup->su_mode != SOFTMAC_FASTPATH) { - dld_wput(sup->su_wq, mp); + (void) dld_wput(sup->su_wq, mp); return; } @@ -986,7 +990,7 @@ softmac_wput_data(softmac_upper_t *sup, mblk_t *mp) * process of switching. */ if (sup->su_mode != SOFTMAC_FASTPATH) - dld_wput(sup->su_wq, mp); + (void) dld_wput(sup->su_wq, mp); else (void) softmac_fastpath_wput_data(sup, mp, (uintptr_t)NULL, 0); } |