projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e7af8a
)
nvdimm/btt: do not call del_gendisk() if not needed
author
Luis Chamberlain
<mcgrof@kernel.org>
Wed, 3 Nov 2021 16:58:43 +0000
(09:58 -0700)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Thu, 18 Nov 2021 18:17:06 +0000
(19:17 +0100)
[ Upstream commit
3aefb5ee843fbe4789d03bb181e190d462df95e4
]
del_gendisk() should not called if the disk has not been added. Fix this.
Fixes: 41cd8b70c37a ("libnvdimm, btt: add support for blk integrity")
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Link:
https://lore.kernel.org/r/20211103165843.1402142-1-mcgrof@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/nvdimm/btt.c
patch
|
blob
|
history
diff --git
a/drivers/nvdimm/btt.c
b/drivers/nvdimm/btt.c
index 92dec49522972fb0ad3486417be6ce66dd3d23c6..3fd1bdb9fc05bb87d333ce8dc3c4e6254b3abc1d 100644
(file)
--- a/
drivers/nvdimm/btt.c
+++ b/
drivers/nvdimm/btt.c
@@
-1538,7
+1538,6
@@
static int btt_blk_init(struct btt *btt)
int rc = nd_integrity_init(btt->btt_disk, btt_meta_size(btt));
if (rc) {
- del_gendisk(btt->btt_disk);
blk_cleanup_disk(btt->btt_disk);
return rc;
}