-
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' of git://git.kernel.org/pub/scm/lin…
…ux/kernel/git/acme/linux into perf/urgent Pull perf/urgent fixes from Arnaldo Carvalho de Melo: - Don't build 'perf kvm stat" on non-x86 arches, fix from Xiao Guangrong. - UAPI fixes to get perf building again in non-x86 arches, from David Howells. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@kernel.org>
- Loading branch information
Showing
20 changed files
with
181 additions
and
126 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
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 |
---|---|---|
|
@@ -415,3 +415,4 @@ header-y += wireless.h | |
header-y += x25.h | ||
header-y += xattr.h | ||
header-y += xfrm.h | ||
header-y += hw_breakpoint.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#ifndef _UAPI_LINUX_HW_BREAKPOINT_H | ||
#define _UAPI_LINUX_HW_BREAKPOINT_H | ||
|
||
enum { | ||
HW_BREAKPOINT_LEN_1 = 1, | ||
HW_BREAKPOINT_LEN_2 = 2, | ||
HW_BREAKPOINT_LEN_4 = 4, | ||
HW_BREAKPOINT_LEN_8 = 8, | ||
}; | ||
|
||
enum { | ||
HW_BREAKPOINT_EMPTY = 0, | ||
HW_BREAKPOINT_R = 1, | ||
HW_BREAKPOINT_W = 2, | ||
HW_BREAKPOINT_RW = HW_BREAKPOINT_R | HW_BREAKPOINT_W, | ||
HW_BREAKPOINT_X = 4, | ||
HW_BREAKPOINT_INVALID = HW_BREAKPOINT_RW | HW_BREAKPOINT_X, | ||
}; | ||
|
||
enum bp_type_idx { | ||
TYPE_INST = 0, | ||
#ifdef CONFIG_HAVE_MIXED_BREAKPOINTS_REGS | ||
TYPE_DATA = 0, | ||
#else | ||
TYPE_DATA = 1, | ||
#endif | ||
TYPE_MAX | ||
}; | ||
|
||
#endif /* _UAPI_LINUX_HW_BREAKPOINT_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
Oops, something went wrong.