diff options
author | Mark Rutland <mark.rutland@arm.com> | 2021-06-09 13:23:01 +0300 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2021-06-11 13:19:27 +0300 |
commit | 3e00e39d9dad48360ebd518726ebf81da1b84c10 (patch) | |
tree | 47b4ad9a277ec6d5f6c2fe8adb5a57b5b0266231 /arch/arm64/net | |
parent | 78b92c7337e10519312e8aab64d7a1651206bd61 (diff) | |
download | linux-3e00e39d9dad48360ebd518726ebf81da1b84c10.tar.xz |
arm64: insn: move AARCH64_INSN_SIZE into <asm/insn.h>
For histroical reasons, we define AARCH64_INSN_SIZE in
<asm/alternative-macros.h>, but it would make more sense to do so in
<asm/insn.h>. Let's move it into <asm/insn.h>, and add the necessary
include directives for this.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com>
Cc: Will Deacon <will@kernel.org>
Link: https://lore.kernel.org/r/20210609102301.17332-3-mark.rutland@arm.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'arch/arm64/net')
-rw-r--r-- | arch/arm64/net/bpf_jit_comp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/net/bpf_jit_comp.c b/arch/arm64/net/bpf_jit_comp.c index f7b194878a99..dd5000da18b8 100644 --- a/arch/arm64/net/bpf_jit_comp.c +++ b/arch/arm64/net/bpf_jit_comp.c @@ -16,6 +16,7 @@ #include <asm/byteorder.h> #include <asm/cacheflush.h> #include <asm/debug-monitors.h> +#include <asm/insn.h> #include <asm/set_memory.h> #include "bpf_jit.h" |