-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'perf-urgent-for-mingo-4.15-20171218' of git://git.kernel.o…
…rg/pub/scm/linux/kernel/git/acme/linux into perf/urgent Pull perf/urgent fixes from Arnaldo Carvalho de Melo: - Fix up build in hardened environments, such as fedora 27 (Jiri Olsa) - Do not include header files from the kernel sources for the s/390 arch, fixing the detached tarball building (Arnaldo Carvalho de Melo) - Allow again using asm.h when building for the 'bpf' clang target, guarding x86 specific bits under ifndef __BPF__ (Arnaldo Carvalho de Melo) - Generate correct debug information for inlined code when generating ELF images for JITted java programs (Ben Gainey) Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>
- Loading branch information
Showing
8 changed files
with
186 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ | ||
#ifndef _ASM_S390_PERF_REGS_H | ||
#define _ASM_S390_PERF_REGS_H | ||
|
||
enum perf_event_s390_regs { | ||
PERF_REG_S390_R0, | ||
PERF_REG_S390_R1, | ||
PERF_REG_S390_R2, | ||
PERF_REG_S390_R3, | ||
PERF_REG_S390_R4, | ||
PERF_REG_S390_R5, | ||
PERF_REG_S390_R6, | ||
PERF_REG_S390_R7, | ||
PERF_REG_S390_R8, | ||
PERF_REG_S390_R9, | ||
PERF_REG_S390_R10, | ||
PERF_REG_S390_R11, | ||
PERF_REG_S390_R12, | ||
PERF_REG_S390_R13, | ||
PERF_REG_S390_R14, | ||
PERF_REG_S390_R15, | ||
PERF_REG_S390_FP0, | ||
PERF_REG_S390_FP1, | ||
PERF_REG_S390_FP2, | ||
PERF_REG_S390_FP3, | ||
PERF_REG_S390_FP4, | ||
PERF_REG_S390_FP5, | ||
PERF_REG_S390_FP6, | ||
PERF_REG_S390_FP7, | ||
PERF_REG_S390_FP8, | ||
PERF_REG_S390_FP9, | ||
PERF_REG_S390_FP10, | ||
PERF_REG_S390_FP11, | ||
PERF_REG_S390_FP12, | ||
PERF_REG_S390_FP13, | ||
PERF_REG_S390_FP14, | ||
PERF_REG_S390_FP15, | ||
PERF_REG_S390_MASK, | ||
PERF_REG_S390_PC, | ||
|
||
PERF_REG_S390_MAX | ||
}; | ||
|
||
#endif /* _ASM_S390_PERF_REGS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters