From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758368AbdJMPaR (ORCPT ); Fri, 13 Oct 2017 11:30:17 -0400 Received: from terminus.zytor.com ([65.50.211.136]:48617 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753366AbdJMPaP (ORCPT ); Fri, 13 Oct 2017 11:30:15 -0400 Date: Fri, 13 Oct 2017 08:25:57 -0700 From: "tip-bot for Steven Rostedt (VMware)" Message-ID: Cc: linux-kernel@vger.kernel.org, rostedt@goodmis.org, tglx@linutronix.de, torvalds@linux-foundation.org, peterz@infradead.org, dave.hansen@linux.intel.com, hpa@zytor.com, mingo@kernel.org Reply-To: peterz@infradead.org, torvalds@linux-foundation.org, dave.hansen@linux.intel.com, mingo@kernel.org, hpa@zytor.com, tglx@linutronix.de, rostedt@goodmis.org, linux-kernel@vger.kernel.org In-Reply-To: <20171012180619.670b68b6@gandalf.local.home> References: <20171012180619.670b68b6@gandalf.local.home> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/fpu] x86/fpu/debug: Remove unused 'x86_fpu_state' and 'x86_fpu_deactivate_state' tracepoints Git-Commit-ID: 127a1bea40f7f2a36bc7207ea4d51bb6b4e936fa 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 Commit-ID: 127a1bea40f7f2a36bc7207ea4d51bb6b4e936fa Gitweb: https://git.kernel.org/tip/127a1bea40f7f2a36bc7207ea4d51bb6b4e936fa Author: Steven Rostedt (VMware) AuthorDate: Thu, 12 Oct 2017 18:06:19 -0400 Committer: Ingo Molnar CommitDate: Fri, 13 Oct 2017 07:32:18 +0200 x86/fpu/debug: Remove unused 'x86_fpu_state' and 'x86_fpu_deactivate_state' tracepoints Commit: d1898b733619 ("x86/fpu: Add tracepoints to dump FPU state at key points") ... added the 'x86_fpu_state' and 'x86_fpu_deactivate_state' trace points, but never used them. Today they are still not used. As they take up and waste memory, remove them. Signed-off-by: Steven Rostedt (VMware) Cc: Dave Hansen Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20171012180619.670b68b6@gandalf.local.home Signed-off-by: Ingo Molnar --- arch/x86/include/asm/trace/fpu.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/arch/x86/include/asm/trace/fpu.h b/arch/x86/include/asm/trace/fpu.h index 39f7a27..6b086c3 100644 --- a/arch/x86/include/asm/trace/fpu.h +++ b/arch/x86/include/asm/trace/fpu.h @@ -33,11 +33,6 @@ DECLARE_EVENT_CLASS(x86_fpu, ) ); -DEFINE_EVENT(x86_fpu, x86_fpu_state, - TP_PROTO(struct fpu *fpu), - TP_ARGS(fpu) -); - DEFINE_EVENT(x86_fpu, x86_fpu_before_save, TP_PROTO(struct fpu *fpu), TP_ARGS(fpu) @@ -73,11 +68,6 @@ DEFINE_EVENT(x86_fpu, x86_fpu_activate_state, TP_ARGS(fpu) ); -DEFINE_EVENT(x86_fpu, x86_fpu_deactivate_state, - TP_PROTO(struct fpu *fpu), - TP_ARGS(fpu) -); - DEFINE_EVENT(x86_fpu, x86_fpu_init_state, TP_PROTO(struct fpu *fpu), TP_ARGS(fpu)