mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 09:44:18 +08:00
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>
This commit is contained in:
parent
3dc001f343
commit
f3236cef5a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user