lightnvm: don't print a warning for ADDR_EMPTY
authorDan Carpenter <dan.carpenter@oracle.com>
Fri, 21 Apr 2017 22:49:56 +0000 (16:49 -0600)
committerJens Axboe <axboe@fb.com>
Fri, 21 Apr 2017 22:49:56 +0000 (16:49 -0600)
commit659226eb630ff522b30d8b8a82c9e722756e6bd4
tree1490ddd2a5432289ce03f3623018a76aad30bc60
parent5bf1e1ee6269f4db307bdfce45d196d6c9bc818a
lightnvm: don't print a warning for ADDR_EMPTY

Reading from ADDR_EMPTY is out of bounds.  The current code generates a
static checker warning because we check for out of bounds "lba" before
we check for ADDR_EMPTY, so the second check is always false.  It looks
like we intended ADDR_EMPTY to be a no-op without printing a warning.

Fixes: a4bd217b4326 ("lightnvm: physical block device (pblk) target")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Javier González <javier@cnexlabs.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/lightnvm/pblk-read.c