diff options
| author | Toomas Soome <tsoome@me.com> | 2017-07-15 14:00:24 +0300 |
|---|---|---|
| committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:40 +0200 |
| commit | 80e626097a0835083ba4adb104b6d24bc1b6c6b4 (patch) | |
| tree | b40941974dd70870360a978b569abe6692833405 | |
| parent | 5d14684d1c825f0a207f249ec1039984cf9d8fd5 (diff) | |
| download | illumos-joyent-80e626097a0835083ba4adb104b6d24bc1b6c6b4.tar.gz | |
9410 gld: this statement may fall through
Reviewed by: Sebastian Wiedenroth <sebastian.wiedenroth@skylime.net>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
| -rw-r--r-- | usr/src/uts/common/io/gld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/gld.c b/usr/src/uts/common/io/gld.c index ac0abe3263..c6c6b65900 100644 --- a/usr/src/uts/common/io/gld.c +++ b/usr/src/uts/common/io/gld.c @@ -1729,7 +1729,7 @@ gld_wput(queue_t *q, mblk_t *mp) */ GLD_CLEAR_MBLK_VTAG(mp); multidata = B_FALSE; - /* LINTED: E_CASE_FALLTHRU */ + /* FALLTHROUGH */ case M_MULTIDATA: /* Only call gld_start() directly if nothing queued ahead */ /* No guarantees about ordering with different threads */ @@ -3082,7 +3082,7 @@ gld_paccept(gld_t *gld, pktinfo_t *pktinfo) static void gld_passon(gld_t *gld, mblk_t *mp, pktinfo_t *pktinfo, - void (*send)(queue_t *qp, mblk_t *mp)) + void (*send)(queue_t *qp, mblk_t *mp)) { boolean_t is_phys = GLD_IS_PHYS(gld); int skiplen; |
