diff options
author | Bart Van Assche <bart.vanassche@wdc.com> | 2017-10-11 10:49:23 -0700 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-10-14 20:47:07 -0400 |
commit | 2caaa2335b3d3b3a750308baa8677454e5cf3ada (patch) | |
tree | 61acccad7c7ec6951bc525a89d26e1145cdd443c /drivers/infiniband/sw/rdmavt/qp.c | |
parent | 2055d1f067509e2dac75faf275a8ee59dcd2b97a (diff) | |
download | talos-op-linux-2caaa2335b3d3b3a750308baa8677454e5cf3ada.tar.gz talos-op-linux-2caaa2335b3d3b3a750308baa8677454e5cf3ada.zip |
RDMA/rdmavt: Suppress gcc 7 fall-through complaints
Avoid that gcc 7 reports the following warning when building with W=1:
warning: this statement may fall through [-Wimplicit-fallthrough=]
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw/rdmavt/qp.c')
-rw-r--r-- | drivers/infiniband/sw/rdmavt/qp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/sw/rdmavt/qp.c b/drivers/infiniband/sw/rdmavt/qp.c index 22df09ae809e..efcff7056496 100644 --- a/drivers/infiniband/sw/rdmavt/qp.c +++ b/drivers/infiniband/sw/rdmavt/qp.c @@ -807,6 +807,7 @@ struct ib_qp *rvt_create_qp(struct ib_pd *ibpd, if (init_attr->port_num == 0 || init_attr->port_num > ibpd->device->phys_port_cnt) return ERR_PTR(-EINVAL); + /* fall through */ case IB_QPT_UC: case IB_QPT_RC: case IB_QPT_UD: |