1
0
Fork 0

lightnvm: pblk: fix bad error check

Fix bad error check

Fixes: a4bd217b43 "lightnvm: physical block device (pblk) target"

Signed-off-by: Javier González <javier@cnexlabs.com>
Reviewed-by: Matias Bjørling <matias@cnexlabs.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
hifive-unleashed-5.1
Javier González 2017-04-22 01:32:46 +02:00 committed by Jens Axboe
parent 3dc001f343
commit f3236cef5a
1 changed files with 1 additions and 1 deletions

View File

@ -1273,7 +1273,7 @@ retry_meta:
retry_setup:
if (!pblk_line_set_metadata(pblk, new, cur)) {
new = pblk_line_retry(pblk, new);
if (new)
if (!new)
return NULL;
goto retry_setup;