summaryrefslogtreecommitdiff
path: root/net/devlink
diff options
context:
space:
mode:
authorZhangjin Wu <falcon@tinylab.org>2023-07-07 21:32:05 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-09-23 12:11:00 +0300
commita0300edca5df23b7b7913ff857c5a159000834da (patch)
tree485cf5f631a55180c2869373f4763354f1e0ebb7 /net/devlink
parent1ea7e47807279369c82718efd2677ea25c6579e3 (diff)
downloadlinux-a0300edca5df23b7b7913ff857c5a159000834da.tar.xz
selftests/nolibc: fix up kernel parameters support
[ Upstream commit c388c9920da2679f62bec48d00ca9e80e9d0a364 ] kernel parameters allow pass two types of strings, one type is like 'noapic', another type is like 'panic=5', the first type is passed as arguments of the init program, the second type is passed as environment variables of the init program. when users pass kernel parameters like this: noapic NOLIBC_TEST=syscall our nolibc-test program will use the test setting from argv[1] and ignore the one from NOLIBC_TEST environment variable, and at last, it will print the following line and ignore the whole test setting. Ignoring unknown test name 'noapic' reversing the parsing order does solve the above issue: test = getenv("NOLIBC_TEST"); if (test) test = argv[1]; but it still doesn't work with such kernel parameters (without NOLIBC_TEST environment variable): noapic FOO=bar To support all of the potential kernel parameters, let's verify the test setting from both of argv[1] and NOLIBC_TEST environment variable. Reviewed-by: Thomas Weißschuh <linux@weissschuh.net> Signed-off-by: Zhangjin Wu <falcon@tinylab.org> Signed-off-by: Willy Tarreau <w@1wt.eu> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/devlink')
0 files changed, 0 insertions, 0 deletions