From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751964AbcF0Mzv (ORCPT ); Mon, 27 Jun 2016 08:55:51 -0400 Received: from terminus.zytor.com ([198.137.202.10]:41560 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751879AbcF0Mzt (ORCPT ); Mon, 27 Jun 2016 08:55:49 -0400 Date: Mon, 27 Jun 2016 05:55:10 -0700 From: tip-bot for David Carrillo-Cisneros Message-ID: Cc: davidcc@google.com, kan.liang@intel.com, acme@redhat.com, vincent.weaver@maine.edu, mingo@kernel.org, torvalds@linux-foundation.org, alexander.shishkin@linux.intel.com, peterz@infradead.org, linux-kernel@vger.kernel.org, jolsa@redhat.com, hpa@zytor.com, ak@linux.intel.com, tglx@linutronix.de, eranian@google.com Reply-To: vincent.weaver@maine.edu, acme@redhat.com, kan.liang@intel.com, davidcc@google.com, eranian@google.com, ak@linux.intel.com, tglx@linutronix.de, jolsa@redhat.com, linux-kernel@vger.kernel.org, peterz@infradead.org, hpa@zytor.com, alexander.shishkin@linux.intel.com, torvalds@linux-foundation.org, mingo@kernel.org In-Reply-To: <1466533874-52003-4-git-send-email-davidcc@google.com> References: <1466533874-52003-4-git-send-email-davidcc@google.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf/x86/intel: Fix trivial formatting and style bug Git-Commit-ID: 3812bba84f3d721ff7dc3bb90360bc5ed6771994 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: 3812bba84f3d721ff7dc3bb90360bc5ed6771994 Gitweb: http://git.kernel.org/tip/3812bba84f3d721ff7dc3bb90360bc5ed6771994 Author: David Carrillo-Cisneros AuthorDate: Tue, 21 Jun 2016 11:31:12 -0700 Committer: Ingo Molnar CommitDate: Mon, 27 Jun 2016 11:34:19 +0200 perf/x86/intel: Fix trivial formatting and style bug Replace spaces by tabs in LBR_FROM_* constants to align with newly defined constant. Use BIT_ULL. Signed-off-by: David Carrillo-Cisneros Signed-off-by: Peter Zijlstra (Intel) Reviewed-by: Stephane Eranian Reviewed-by: Andi Kleen Cc: Alexander Shishkin Cc: Arnaldo Carvalho de Melo Cc: Jiri Olsa Cc: Kan Liang Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: Vince Weaver Link: http://lkml.kernel.org/r/1466533874-52003-4-git-send-email-davidcc@google.com Signed-off-by: Ingo Molnar --- arch/x86/events/intel/lbr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/x86/events/intel/lbr.c b/arch/x86/events/intel/lbr.c index 88093e0..0da0eb0 100644 --- a/arch/x86/events/intel/lbr.c +++ b/arch/x86/events/intel/lbr.c @@ -77,9 +77,9 @@ static enum { LBR_IND_JMP |\ LBR_FAR) -#define LBR_FROM_FLAG_MISPRED (1ULL << 63) -#define LBR_FROM_FLAG_IN_TX (1ULL << 62) -#define LBR_FROM_FLAG_ABORT (1ULL << 61) +#define LBR_FROM_FLAG_MISPRED BIT_ULL(63) +#define LBR_FROM_FLAG_IN_TX BIT_ULL(62) +#define LBR_FROM_FLAG_ABORT BIT_ULL(61) #define LBR_FROM_SIGNEXT_2MSB (BIT_ULL(60) | BIT_ULL(59))