Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754859AbcCWLkO (ORCPT ); Wed, 23 Mar 2016 07:40:14 -0400 Received: from terminus.zytor.com ([198.137.202.10]:51492 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751929AbcCWLkD (ORCPT ); Wed, 23 Mar 2016 07:40:03 -0400 Date: Wed, 23 Mar 2016 04:39:41 -0700 From: tip-bot for Yaowei Bai Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de, mingo@kernel.org, baiyaowei@cmss.chinamobile.com Reply-To: baiyaowei@cmss.chinamobile.com, tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: <1458697210-3027-1-git-send-email-baiyaowei@cmss.chinamobile.com> References: <1458697210-3027-1-git-send-email-baiyaowei@cmss.chinamobile.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/apic: Remove declaration of unused hw_nmi_is_cpu_stuck Git-Commit-ID: f09e3f4fe42caad0c0f59c1489d2b3f512c070b5 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: 1292 Lines: 34 Commit-ID: f09e3f4fe42caad0c0f59c1489d2b3f512c070b5 Gitweb: http://git.kernel.org/tip/f09e3f4fe42caad0c0f59c1489d2b3f512c070b5 Author: Yaowei Bai AuthorDate: Wed, 23 Mar 2016 09:40:09 +0800 Committer: Thomas Gleixner CommitDate: Wed, 23 Mar 2016 12:34:17 +0100 x86/apic: Remove declaration of unused hw_nmi_is_cpu_stuck Commit 10f9014912 ("x86: Cleanup hw_nmi.c cruft") removed unused code in the hw_nmi.c file because of the redesign of the hardlockup watchdog but left declaration of hw_nmi_is_cpu_stuck in linux/nmi.h, so remvoe it. Signed-off-by: Yaowei Bai Link: http://lkml.kernel.org/r/1458697210-3027-1-git-send-email-baiyaowei@cmss.chinamobile.com Signed-off-by: Thomas Gleixner --- include/linux/nmi.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/nmi.h b/include/linux/nmi.h index 7ec5b86..4630eea 100644 --- a/include/linux/nmi.h +++ b/include/linux/nmi.h @@ -65,7 +65,6 @@ static inline bool trigger_allbutself_cpu_backtrace(void) #endif #ifdef CONFIG_LOCKUP_DETECTOR -int hw_nmi_is_cpu_stuck(struct pt_regs *); u64 hw_nmi_get_sample_period(int watchdog_thresh); extern int nmi_watchdog_enabled; extern int soft_watchdog_enabled;