mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
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 <davidcc@google.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Stephane Eranian <eranian@google.com> Reviewed-by: Andi Kleen <ak@linux.intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Kan Liang <kan.liang@intel.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vince Weaver <vincent.weaver@maine.edu> Link: http://lkml.kernel.org/r/1466533874-52003-4-git-send-email-davidcc@google.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
19fc9ddd61
commit
3812bba84f
@ -77,9 +77,9 @@ static enum {
|
|||||||
LBR_IND_JMP |\
|
LBR_IND_JMP |\
|
||||||
LBR_FAR)
|
LBR_FAR)
|
||||||
|
|
||||||
#define LBR_FROM_FLAG_MISPRED (1ULL << 63)
|
#define LBR_FROM_FLAG_MISPRED BIT_ULL(63)
|
||||||
#define LBR_FROM_FLAG_IN_TX (1ULL << 62)
|
#define LBR_FROM_FLAG_IN_TX BIT_ULL(62)
|
||||||
#define LBR_FROM_FLAG_ABORT (1ULL << 61)
|
#define LBR_FROM_FLAG_ABORT BIT_ULL(61)
|
||||||
|
|
||||||
#define LBR_FROM_SIGNEXT_2MSB (BIT_ULL(60) | BIT_ULL(59))
|
#define LBR_FROM_SIGNEXT_2MSB (BIT_ULL(60) | BIT_ULL(59))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user