OSDN Git Service

bcache: Fix a compiler warning in bcache_device_init()
authorBart Van Assche <bart.vanassche@wdc.com>
Mon, 19 Mar 2018 00:36:33 +0000 (17:36 -0700)
committerJens Axboe <axboe@kernel.dk>
Mon, 19 Mar 2018 02:15:20 +0000 (20:15 -0600)
commit5f2b18ec8e1643410a2369f06888951cdedea0bf
tree19fffc596284b0b162301b0020a2c873ee5d6ed5
parent20d3a518713e394efa5a899c84574b4b79ec5098
bcache: Fix a compiler warning in bcache_device_init()

Avoid that building with W=1 triggers the following compiler warning:

drivers/md/bcache/super.c:776:20: warning: comparison is always false due to limited range of data type [-Wtype-limits]
      d->nr_stripes > SIZE_MAX / sizeof(atomic_t)) {
                    ^

Reviewed-by: Coly Li <colyli@suse.de>
Reviewed-by: Michael Lyle <mlyle@lyle.org>
Signed-off-by: Bart Van Assche <bart.vanassche@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c