block/rnbd-clt: fix wrong max ID in ida_alloc_max
authorGuoqing Jiang <guoqing.jiang@linux.dev>
Fri, 30 Dec 2022 01:09:26 +0000 (09:09 +0800)
committerJens Axboe <axboe@kernel.dk>
Tue, 17 Jan 2023 15:33:36 +0000 (08:33 -0700)
commit9d6033e350694a67885605674244d43c9559dc36
tree0ead31a084c7d70ba3d00b46190fd77ec16d996b
parente3ff8887e7db757360f97634e0d6f4b8e27a8c46
block/rnbd-clt: fix wrong max ID in ida_alloc_max

We need to pass 'end - 1' to ida_alloc_max after switch from
ida_simple_get to ida_alloc_max.

Otherwise smatch warns.

drivers/block/rnbd/rnbd-clt.c:1460 init_dev() error: Calling ida_alloc_max() with a 'max' argument which is a power of 2. -1 missing?

Fixes: 24afc15dbe21 ("block/rnbd: Remove a useless mutex")
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Guoqing Jiang <guoqing.jiang@linux.dev>
Acked-by: Jack Wang <jinpu.wang@ionos.com>
Link: https://lore.kernel.org/r/20221230010926.32243-1-guoqing.jiang@linux.dev
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/rnbd/rnbd-clt.c