diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-15 13:48:43 +0300 |
---|---|---|
committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:40 +0200 |
commit | b80bb91b66c2de22d944d93cdc98304eb32be782 (patch) | |
tree | 4ba352b57d19d9d3828547dfeee199be56d70989 | |
parent | 80e626097a0835083ba4adb104b6d24bc1b6c6b4 (diff) | |
download | illumos-joyent-b80bb91b66c2de22d944d93cdc98304eb32be782.tar.gz |
9411 ptem: this statement may fall through
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Gary Mills <gary_mills@fastmail.fm>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
-rw-r--r-- | usr/src/uts/common/io/ptem.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/uts/common/io/ptem.c b/usr/src/uts/common/io/ptem.c index 6b19cdde89..481169daf3 100644 --- a/usr/src/uts/common/io/ptem.c +++ b/usr/src/uts/common/io/ptem.c @@ -419,6 +419,7 @@ ptemrput(queue_t *q, mblk_t *mp) qenable(WR(q)); } } + /* FALLTHROUGH */ default: putnext(q, mp); break; @@ -865,6 +866,7 @@ out: } if (ntp->state & OFLOW_CTL) return (0); + /* FALLTHROUGH */ default: putnext(q, mp); |