[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20211015235219.2191207-8-mcgrof@kernel.org>
Date: Fri, 15 Oct 2021 16:52:13 -0700
From: Luis Chamberlain <mcgrof@...nel.org>
To: axboe@...nel.dk, geoff@...radead.org, mpe@...erman.id.au,
benh@...nel.crashing.org, paulus@...ba.org, jim@...n.com,
minchan@...nel.org, ngupta@...are.org, senozhatsky@...omium.org,
richard@....at, miquel.raynal@...tlin.com, vigneshr@...com,
dan.j.williams@...el.com, vishal.l.verma@...el.com,
dave.jiang@...el.com, ira.weiny@...el.com, kbusch@...nel.org,
hch@....de, sagi@...mberg.me
Cc: linux-block@...r.kernel.org, linuxppc-dev@...ts.ozlabs.org,
linux-mtd@...ts.infradead.org, nvdimm@...ts.linux.dev,
linux-nvme@...ts.infradead.org, linux-kernel@...r.kernel.org,
Luis Chamberlain <mcgrof@...nel.org>
Subject: [PATCH 07/13] nvdimm/blk: 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.
Since nvdimm/blk uses devm we just need to move the devm
registration towards the end. And in hindsight, that seems
to also provide a fix given del_gendisk() should not be
called unless the disk was already added via add_disk().
The probably of that issue happening is low though, like
OOM while calling devm_add_action(), so the fix is minor.
We manually unwind in case of add_disk() failure prior
to the devm registration.
Signed-off-by: Luis Chamberlain <mcgrof@...nel.org>
---
drivers/nvdimm/blk.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/nvdimm/blk.c b/drivers/nvdimm/blk.c
index 591fa1f86f1e..9f1eb41404ac 100644
--- a/drivers/nvdimm/blk.c
+++ b/drivers/nvdimm/blk.c
@@ -265,7 +265,9 @@ static int nsblk_attach_disk(struct nd_namespace_blk *nsblk)
}
set_capacity(disk, available_disk_size >> SECTOR_SHIFT);
- device_add_disk(dev, disk, NULL);
+ rc = device_add_disk(dev, disk, NULL);
+ if (rc)
+ goto out_before_devm_err;
/* nd_blk_release_disk() is called if this fails */
if (devm_add_action_or_reset(dev, nd_blk_release_disk, disk))
--
2.30.2
Powered by blists - more mailing lists