Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752729AbdI1K34 (ORCPT ); Thu, 28 Sep 2017 06:29:56 -0400 Received: from terminus.zytor.com ([65.50.211.136]:56363 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751082AbdI1K3y (ORCPT ); Thu, 28 Sep 2017 06:29:54 -0400 Date: Thu, 28 Sep 2017 03:27:42 -0700 From: tip-bot for Colin Ian King Message-ID: Cc: dzickus@redhat.com, babu.moger@oracle.com, akpm@linux-foundation.org, hpa@zytor.com, linux-kernel@vger.kernel.org, colin.king@canonical.com, mingo@kernel.org, tglx@linutronix.de Reply-To: dzickus@redhat.com, babu.moger@oracle.com, akpm@linux-foundation.org, linux-kernel@vger.kernel.org, hpa@zytor.com, colin.king@canonical.com, tglx@linutronix.de, mingo@kernel.org In-Reply-To: <20170926093603.7756-1-colin.king@canonical.com> References: <20170926093603.7756-1-colin.king@canonical.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:core/watchdog] watchdog/hardlockup/perf: Fix spelling mistake: "permanetely" -> "permanently" Git-Commit-ID: 77c01d11bbb2b5c005347061bf543ab94878314c X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1349 Lines: 35 Commit-ID: 77c01d11bbb2b5c005347061bf543ab94878314c Gitweb: https://git.kernel.org/tip/77c01d11bbb2b5c005347061bf543ab94878314c Author: Colin Ian King AuthorDate: Tue, 26 Sep 2017 10:36:03 +0100 Committer: Thomas Gleixner 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 Signed-off-by: Thomas Gleixner Acked-by: Don Zickus Cc: Andrew Morton Cc: Babu Moger 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);