From: Luis Chamberlain Date: Mon, 27 Sep 2021 22:01:56 +0000 (-0700) Subject: pf: add error handling support for add_disk() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4fac63f8a871bc2e38dce4944c9d964a62bac3e6;p=linux.git pf: add error handling support for add_disk() We never checked for errors on add_disk() as this function returned void. Now that this is fixed, use the shiny new error handling. Signed-off-by: Luis Chamberlain Signed-off-by: Jens Axboe --- diff --git a/drivers/block/paride/pf.c b/drivers/block/paride/pf.c index f471d48a87bc1..380d80e507c7a 100644 --- a/drivers/block/paride/pf.c +++ b/drivers/block/paride/pf.c @@ -962,7 +962,9 @@ static int __init pf_init_unit(struct pf_unit *pf, bool autoprobe, int port, if (pf_probe(pf)) goto out_pi_release; - add_disk(disk); + ret = add_disk(disk); + if (ret) + goto out_pi_release; pf->present = 1; return 0;