RDMA/rtrs: Avoid Wtautological-constant-out-of-range-compare
authorJack Wang <jinpu.wang@ionos.com>
Mon, 31 May 2021 12:28:35 +0000 (14:28 +0200)
committerJason Gunthorpe <jgg@nvidia.com>
Mon, 31 May 2021 18:38:08 +0000 (15:38 -0300)
commit0e8558476faf02ec51256cad9c487c93c346198c
tree3a00d20a6be2c14cb4c28731f2986cd191c4e61b
parent7ecd7e290bee0ab9cf75b79a367a4cc113cf8292
RDMA/rtrs: Avoid Wtautological-constant-out-of-range-compare

drivers/infiniband/ulp/rtrs/rtrs-clt.c:1786:19: warning: result of comparison of
constant 'MAX_SESS_QUEUE_DEPTH' (65536) with expression of type 'u16'
(aka 'unsigned short') is always false [-Wtautological-constant-out-of-range-compare]

To fix it, limit MAX_SESS_QUEUE_DEPTH to u16 max, which is 65535, and
drop the check in rtrs-clt, as it's the type u16 max.

Link: https://lore.kernel.org/r/20210531122835.58329-1-jinpu.wang@ionos.com
Signed-off-by: Jack Wang <jinpu.wang@ionos.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
drivers/infiniband/ulp/rtrs/rtrs-clt.c
drivers/infiniband/ulp/rtrs/rtrs-pri.h