diff mbox series

[1/1] lightnvm: pblk: Fix error return code in pblk_recov_pad_lineq()

Message ID 20210515033844.6930-1-thunder.leizhen@huawei.com (mailing list archive)
State New, archived
Headers show
Series [1/1] lightnvm: pblk: Fix error return code in pblk_recov_pad_lineq() | expand

Commit Message

Zhen Lei May 15, 2021, 3:38 a.m. UTC
Fix to return -EFAULT from the error handling case instead of 0, as done
elsewhere in this function.

Fixes: ee8d5c1ad54e ("lightnvm: pblk: remove target using async. I/Os")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 drivers/lightnvm/pblk-recovery.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/drivers/lightnvm/pblk-recovery.c b/drivers/lightnvm/pblk-recovery.c
index 0e6f0c76e93027a..0772bd46bf61495 100644
--- a/drivers/lightnvm/pblk-recovery.c
+++ b/drivers/lightnvm/pblk-recovery.c
@@ -207,6 +207,7 @@  static int pblk_recov_pad_line(struct pblk *pblk, struct pblk_line *line,
 next_pad_rq:
 	rq_ppas = pblk_calc_secs(pblk, left_ppas, 0, false);
 	if (rq_ppas < pblk->min_write_pgs) {
+		ret = -EFAULT;
 		pblk_err(pblk, "corrupted pad line %d\n", line->id);
 		goto fail_complete;
 	}