umd: Stop using split_argv
authorEric W. Biederman <ebiederm@xmission.com>
Mon, 29 Jun 2020 13:28:33 +0000 (08:28 -0500)
committerEric W. Biederman <ebiederm@xmission.com>
Tue, 7 Jul 2020 16:58:59 +0000 (11:58 -0500)
commit33c326014fe69304244868cc793c2c77be533125
treeab7c8a13fa7b10a9586ca1104534a009b2e41333
parent8c2f52663973e643c617663d826e2b0daa008b38
umd: Stop using split_argv

There is exactly one argument so there is nothing to split.  All
split_argv does now is cause confusion and avoid the need for a cast
when passing a "const char *" string to call_usermodehelper_setup.

So avoid confusion and the possibility of an odd driver name causing
problems by just using a fixed argv array with a cast in the call to
call_usermodehelper_setup.

v1: https://lkml.kernel.org/r/87sged3a9n.fsf_-_@x220.int.ebiederm.org
Link: https://lkml.kernel.org/r/20200702164140.4468-16-ebiederm@xmission.com
Acked-by: Alexei Starovoitov <ast@kernel.org>
Tested-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
kernel/usermode_driver.c