projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ebe2e5
)
block: don't set GENHD_FL_NO_PART for hidden gendisks
author
Christoph Hellwig
<hch@lst.de>
Mon, 22 Nov 2021 13:06:23 +0000
(14:06 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Mon, 29 Nov 2021 13:38:35 +0000
(06:38 -0700)
Hidden gendisks can't be opened using blkdev_get_*, so we can't really
reach any of the partition scanning paths or partitioning ioctls except
for the initial partition scan from add_disk.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link:
https://lore.kernel.org/r/20211122130625.1136848-13-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/genhd.c
patch
|
blob
|
history
diff --git
a/block/genhd.c
b/block/genhd.c
index 628632537129c68af810ceace460066b9dc16647..8e9cbf23c510afb66c89981c2b0b8560789bed9d 100644
(file)
--- a/
block/genhd.c
+++ b/
block/genhd.c
@@
-376,7
+376,7
@@
int disk_scan_partitions(struct gendisk *disk, fmode_t mode)
{
struct block_device *bdev;
- if (disk->flags &
GENHD_FL_NO_PART
)
+ if (disk->flags &
(GENHD_FL_NO_PART | GENHD_FL_HIDDEN)
)
return -EINVAL;
if (disk->open_partitions)
return -EBUSY;
@@
-493,12
+493,7
@@
int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
if (ret)
goto out_put_slave_dir;
- if (disk->flags & GENHD_FL_HIDDEN) {
- /*
- * Don't bother scanning for partitions.
- */
- disk->flags |= GENHD_FL_NO_PART;
- } else {
+ if (!(disk->flags & GENHD_FL_HIDDEN)) {
ret = bdi_register(disk->bdi, "%u:%u",
disk->major, disk->first_minor);
if (ret)