diff options
| author | Kees Cook <[email protected]> | 2020-05-08 09:26:28 -0700 |
|---|---|---|
| committer | Kees Cook <[email protected]> | 2020-05-30 10:34:02 -0700 |
| commit | d195c39052d1da278a00a6744ce59c383b67b191 (patch) | |
| tree | 602e153404b0da6cb4993664876fd1601aa63b4e /tools | |
| parent | 563ca40ddf400dbf8c6254077f9b6887101d0f08 (diff) | |
pstore/platform: Use backend name for console registration
If the pstore backend changes, there's no indication in the logs what
the console is (it always says "pstore"). Instead, pass through the
active backend's name. (Also adjust the selftest to match.)
Link: https://lore.kernel.org/lkml/[email protected]/
Link: https://lore.kernel.org/lkml/20200526135429.GQ12456@shao2-debian
Signed-off-by: Kees Cook <[email protected]>
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/testing/selftests/pstore/pstore_tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/pstore/pstore_tests b/tools/testing/selftests/pstore/pstore_tests index 1cef54458aff..2aa9a3852a84 100755 --- a/tools/testing/selftests/pstore/pstore_tests +++ b/tools/testing/selftests/pstore/pstore_tests @@ -10,7 +10,7 @@ . ./common_tests prlog -n "Checking pstore console is registered ... " -dmesg | grep -q "console \[pstore" +dmesg | grep -Eq "console \[(pstore|${backend})" show_result $? prlog -n "Checking /dev/pmsg0 exists ... " |