aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <[email protected]>2022-09-07 18:09:02 +0100
committerCatalin Marinas <[email protected]>2022-09-07 18:56:11 +0100
commit537addee1e8e843a00f6cb0f656af19655b13107 (patch)
tree4bb85bf7ebfe57c4a05bb78be5470be2ea62b539
parentaf3ce550a6590551a88383382983301c431e3153 (diff)
kselftest/arm64: Fix spelling misakes of signal names
There are a couple of spelling mistakes of signame names. Fix them. Signed-off-by: Colin Ian King <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Catalin Marinas <[email protected]>
-rw-r--r--tools/testing/selftests/arm64/fp/fp-stress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/arm64/fp/fp-stress.c b/tools/testing/selftests/arm64/fp/fp-stress.c
index 01cef1962ab5..a5c0ebef2419 100644
--- a/tools/testing/selftests/arm64/fp/fp-stress.c
+++ b/tools/testing/selftests/arm64/fp/fp-stress.c
@@ -247,7 +247,7 @@ static void handle_child_signal(int sig, siginfo_t *info, void *context)
}
if (!found)
- ksft_print_msg("SIGCHILD for unknown PID %d with status %d\n",
+ ksft_print_msg("SIGCHLD for unknown PID %d with status %d\n",
info->si_pid, info->si_status);
}
@@ -457,7 +457,7 @@ int main(int argc, char **argv)
strerror(errno), errno);
ret = sigaction(SIGTERM, &sa, NULL);
if (ret < 0)
- ksft_print_msg("Failed to install SIGTEM handler: %s (%d)\n",
+ ksft_print_msg("Failed to install SIGTERM handler: %s (%d)\n",
strerror(errno), errno);
sa.sa_sigaction = handle_child_signal;
ret = sigaction(SIGCHLD, &sa, NULL);