summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/softmac/softmac_dev.c
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2019-04-12 12:02:04 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2019-04-12 12:02:04 +0000
commit5d9c1f58e33b02b709b5e031eec7e3e63d646ef7 (patch)
tree102ca03680a7180c99b84addda71e420ece2f59f /usr/src/uts/common/io/softmac/softmac_dev.c
parente4f70ac1007dda1e42e5f5a7f307834cb429824c (diff)
parent78a53e201c2691debc57ede24c524118299ab18c (diff)
downloadillumos-joyent-5d9c1f58e33b02b709b5e031eec7e3e63d646ef7.tar.gz
[illumos-gate merge]
commit 78a53e201c2691debc57ede24c524118299ab18c 10687 Service routine cast changes need smatch fixes commit ef623aa14b0dc34c6b9edb213cbcda88461ecfc3 10680 fasttrap: NULL pointer errors commit 314d13c90091499eb12548353dfa2d2ca0b0b840 10679 dcpc: NULL pointer errors commit f7ecc608dd732e7b1f2760725ded79c8afba20bd 10678 dtrace: NULL pointer errors commit cd717361fac4e95d6ef3d8ce64cbaaeeddf8725c 10677 systrace: NULL pointer errors commit 68deb3360e8e161517e8eda768aa13357247893e 10676 fbt: NULL pointer errors commit fa30bfac67a47bb941ce78809508c530f9853f0a 10675 sdt: NULL pointer issues commit fd826efa0fbcbc82b734a8db80a074204cf11b22 10686 Debug macros causes smatch issues commit 58447f688d5e308373ab16a3b129bc0ba0fbc154 10701 Correct lock ASSERTs in vdev_label_read/write
Diffstat (limited to 'usr/src/uts/common/io/softmac/softmac_dev.c')
-rw-r--r--usr/src/uts/common/io/softmac/softmac_dev.c5
1 files changed, 4 insertions, 1 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);