]> git.ipfire.org Git - thirdparty/mdadm.git/commit
mdopen: always try create_named_array()
authorNeilBrown <neilb@suse.de>
Tue, 14 Mar 2023 00:06:25 +0000 (11:06 +1100)
committerJes Sorensen <jes@trained-monkey.org>
Sun, 19 Mar 2023 16:35:40 +0000 (12:35 -0400)
commit2e10c46d0906b1a1ec40e8f5005ccb63125dcd9e
tree5a26789e3280e852fb9bec96f2fcc41f3960e960
parent723d1df4946eb40337bf494f9b2549500c1399b2
mdopen: always try create_named_array()

mdopen() will use create_named_array() to ask the kernel to create the
given md array, but only if it is given a number or name.
If it is NOT given a name and is required to choose one itself using
find_free_devnm() it does NOT use create_named_array().

On kernels with CONFIG_BLOCK_LEGACY_AUTOLOAD not set, this can result in
failure to assemble an array.  This can particularly seen when the
"name" of the array begins with a host name different to the name of the
host running the command.

So add the missing call to create_named_array().

Link: https://bugzilla.kernel.org/show_bug.cgi?id=217074
Signed-off-by: NeilBrown <neilb@suse.de>
Acked-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Signed-off-by: Jes Sorensen <jes@trained-monkey.org>
mdopen.c