diff options
author | Chris Webb <chris@arachsys.com> | 2022-06-01 13:03:07 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-08-03 01:14:40 +0200 |
commit | 05ce7fb946c37fc6fc8bf14073279e570f78f69e (patch) | |
tree | 268dc1f9fedfc1cfdf5d5d6239795bff20b2812d /drivers/md/md.h | |
parent | md: Notify sysfs sync_completed in md_reap_sync_thread() (diff) | |
download | linux-05ce7fb946c37fc6fc8bf14073279e570f78f69e.tar.xz linux-05ce7fb946c37fc6fc8bf14073279e570f78f69e.zip |
md: Explicitly create command-line configured devices
Boot-time assembly of arrays with md= command-line arguments breaks when
CONFIG_BLOCK_LEGACY_AUTOLOAD is unset. md_setup_drive() in md-autodetect.c
calls blkdev_get_by_dev(), assuming this implicitly creates the block
device.
Fix this by attempting to md_alloc() the array first. As in the probe path,
ignore any error as failure is caught by blkdev_get_by_dev() anyway.
Signed-off-by: Chris Webb <chris@arachsys.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Song Liu <song@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/md.h')
-rw-r--r-- | drivers/md/md.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/md/md.h b/drivers/md/md.h index 551c0a349cb5..861088b3d236 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h @@ -765,6 +765,7 @@ extern int md_integrity_add_rdev(struct md_rdev *rdev, struct mddev *mddev); extern int strict_strtoul_scaled(const char *cp, unsigned long *res, int scale); extern void mddev_init(struct mddev *mddev); +int md_alloc(dev_t dev, char *name); extern int md_run(struct mddev *mddev); extern int md_start(struct mddev *mddev); extern void md_stop(struct mddev *mddev); |