diff options
| author | Catalin Marinas <catalin.marinas@arm.com> | 2016-11-29 18:38:57 +0300 |
|---|---|---|
| committer | Catalin Marinas <catalin.marinas@arm.com> | 2016-11-29 18:38:57 +0300 |
| commit | 00cc2e07453796dc99a32c390ded964f33ac7e89 (patch) | |
| tree | 3021c842270e2873e7ae4b183000dc8c0c7012b7 /include | |
| parent | 1650ac49c2a0fb8188a2c8eac36537640ed57892 (diff) | |
| parent | f43365ee17f8d22b1f887d2b26faa0837ca85138 (diff) | |
| download | linux-00cc2e07453796dc99a32c390ded964f33ac7e89.tar.xz | |
Merge Will Deacon's for-next/perf branch into for-next/core
* will/for-next/perf:
selftests: arm64: add test for unaligned/inexact watchpoint handling
arm64: Allow hw watchpoint of length 3,5,6 and 7
arm64: hw_breakpoint: Handle inexact watchpoint addresses
arm64: Allow hw watchpoint at varied offset from base address
hw_breakpoint: Allow watchpoint of length 3,5,6 and 7
Diffstat (limited to 'include')
| -rw-r--r-- | include/uapi/linux/hw_breakpoint.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uapi/linux/hw_breakpoint.h b/include/uapi/linux/hw_breakpoint.h index b04000a2296a..2b65efd19a46 100644 --- a/include/uapi/linux/hw_breakpoint.h +++ b/include/uapi/linux/hw_breakpoint.h @@ -4,7 +4,11 @@ enum { HW_BREAKPOINT_LEN_1 = 1, HW_BREAKPOINT_LEN_2 = 2, + HW_BREAKPOINT_LEN_3 = 3, HW_BREAKPOINT_LEN_4 = 4, + HW_BREAKPOINT_LEN_5 = 5, + HW_BREAKPOINT_LEN_6 = 6, + HW_BREAKPOINT_LEN_7 = 7, HW_BREAKPOINT_LEN_8 = 8, }; |
