From 6db9990640cdf7bc0880149f2707904506518fb8 Mon Sep 17 00:00:00 2001 From: David Faust Date: Tue, 15 Sep 2020 10:33:49 +0100 Subject: Change the /nop directive for the BPF port of the assembler to use the encoding expected by the kernel. * config/tc-bpf.h (md_single_noop_insn): Use 'ja 0' for no-op. --- gas/config/tc-bpf.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gas/config/tc-bpf.h') diff --git a/gas/config/tc-bpf.h b/gas/config/tc-bpf.h index cb02d6c..e7e505c 100644 --- a/gas/config/tc-bpf.h +++ b/gas/config/tc-bpf.h @@ -48,4 +48,6 @@ /* Values passed to md_apply_fix don't include the symbol value. */ #define MD_APPLY_SYM_VALUE(FIX) 0 -#define md_single_noop_insn "mov %r1,%r1" +/* The Linux kernel verifier expects NOPs to be encoded in this way; + a jump to offset 0 means jump to the next instruction. */ +#define md_single_noop_insn "ja 0" -- cgit v1.1