* [PATCH][next] kernel: watchdog: fix spelling mistake: "permanetely" -> "permanently"
@ 2017-09-26 9:36 Colin King
2017-09-26 14:58 ` Don Zickus
2017-09-28 10:27 ` [tip:core/watchdog] watchdog/hardlockup/perf: Fix " tip-bot for Colin Ian King
0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2017-09-26 9:36 UTC (permalink / raw)
To: Don Zickus, Ingo Molnar, Thomas Gleixner, Andrew Morton, Babu Moger
Cc: linux-kernel
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in pr_info message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
kernel/watchdog_hld.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/watchdog_hld.c b/kernel/watchdog_hld.c
index b2931154b5f2..17b659bbaf61 100644
--- a/kernel/watchdog_hld.c
+++ b/kernel/watchdog_hld.c
@@ -275,7 +275,7 @@ int __init hardlockup_detector_perf_init(void)
int ret = hardlockup_detector_event_create();
if (ret) {
- pr_info("Perf NMI watchdog permanetely disabled\n");
+ pr_info("Perf NMI watchdog permanently disabled\n");
} else {
perf_event_release_kernel(this_cpu_read(watchdog_ev));
this_cpu_write(watchdog_ev, NULL);
--
2.14.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][next] kernel: watchdog: fix spelling mistake: "permanetely" -> "permanently"
2017-09-26 9:36 [PATCH][next] kernel: watchdog: fix spelling mistake: "permanetely" -> "permanently" Colin King
@ 2017-09-26 14:58 ` Don Zickus
2017-09-28 10:27 ` [tip:core/watchdog] watchdog/hardlockup/perf: Fix " tip-bot for Colin Ian King
1 sibling, 0 replies; 3+ messages in thread
From: Don Zickus @ 2017-09-26 14:58 UTC (permalink / raw)
To: Colin King
Cc: Ingo Molnar, Thomas Gleixner, Andrew Morton, Babu Moger, linux-kernel
On Tue, Sep 26, 2017 at 09:36:03AM +0000, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in pr_info message
Acked-by: Don Zickus <dzickus@redhat.com>
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> kernel/watchdog_hld.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/watchdog_hld.c b/kernel/watchdog_hld.c
> index b2931154b5f2..17b659bbaf61 100644
> --- a/kernel/watchdog_hld.c
> +++ b/kernel/watchdog_hld.c
> @@ -275,7 +275,7 @@ int __init hardlockup_detector_perf_init(void)
> int ret = hardlockup_detector_event_create();
>
> if (ret) {
> - pr_info("Perf NMI watchdog permanetely disabled\n");
> + pr_info("Perf NMI watchdog permanently disabled\n");
> } else {
> perf_event_release_kernel(this_cpu_read(watchdog_ev));
> this_cpu_write(watchdog_ev, NULL);
> --
> 2.14.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:core/watchdog] watchdog/hardlockup/perf: Fix spelling mistake: "permanetely" -> "permanently"
2017-09-26 9:36 [PATCH][next] kernel: watchdog: fix spelling mistake: "permanetely" -> "permanently" Colin King
2017-09-26 14:58 ` Don Zickus
@ 2017-09-28 10:27 ` tip-bot for Colin Ian King
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Colin Ian King @ 2017-09-28 10:27 UTC (permalink / raw)
To: linux-tip-commits
Cc: dzickus, babu.moger, akpm, hpa, linux-kernel, colin.king, mingo, tglx
Commit-ID: 77c01d11bbb2b5c005347061bf543ab94878314c
Gitweb: https://git.kernel.org/tip/77c01d11bbb2b5c005347061bf543ab94878314c
Author: Colin Ian King <colin.king@canonical.com>
AuthorDate: Tue, 26 Sep 2017 10:36:03 +0100
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 28 Sep 2017 12:24:54 +0200
watchdog/hardlockup/perf: Fix spelling mistake: "permanetely" -> "permanently"
Trivial fix to spelling mistake in pr_info message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Don Zickus <dzickus@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Babu Moger <babu.moger@oracle.com>
Link: https://lkml.kernel.org/r/20170926093603.7756-1-colin.king@canonical.com
---
kernel/watchdog_hld.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/watchdog_hld.c b/kernel/watchdog_hld.c
index 204a8ca..71a62ce 100644
--- a/kernel/watchdog_hld.c
+++ b/kernel/watchdog_hld.c
@@ -280,7 +280,7 @@ int __init hardlockup_detector_perf_init(void)
int ret = hardlockup_detector_event_create();
if (ret) {
- pr_info("Perf NMI watchdog permanetely disabled\n");
+ pr_info("Perf NMI watchdog permanently disabled\n");
} else {
perf_event_release_kernel(this_cpu_read(watchdog_ev));
this_cpu_write(watchdog_ev, NULL);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-09-28 10:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-26 9:36 [PATCH][next] kernel: watchdog: fix spelling mistake: "permanetely" -> "permanently" Colin King
2017-09-26 14:58 ` Don Zickus
2017-09-28 10:27 ` [tip:core/watchdog] watchdog/hardlockup/perf: Fix " tip-bot for Colin Ian King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome