riscv, bpf: Fix patch_text implicit declaration
authorRandy Dunlap <rdunlap@infradead.org>
Mon, 27 Feb 2023 07:20:16 +0000 (23:20 -0800)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 27 Feb 2023 21:14:33 +0000 (22:14 +0100)
commit2d311f480b52eeb2e1fd432d64b78d82952c3808
treeddefb7c7440bb0292df83b0b929180a2355dc9ed
parenta07484c083eabc809e45a198bd639bfd37ac70b6
riscv, bpf: Fix patch_text implicit declaration

bpf_jit_comp64.c uses patch_text(), so add <asm/patch.h> to it
to prevent the build error:

../arch/riscv/net/bpf_jit_comp64.c: In function 'bpf_arch_text_poke':
../arch/riscv/net/bpf_jit_comp64.c:691:23: error: implicit declaration of function 'patch_text'; did you mean 'path_get'? [-Werror=implicit-function-declaration]
  691 |                 ret = patch_text(ip, new_insns, ninsns);
      |                       ^~~~~~~~~~

Fixes: 596f2e6f9cf4 ("riscv, bpf: Add bpf_arch_text_poke support for RV64")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Pu Lehui <pulehui@huawei.com>
Acked-by: Björn Töpel <bjorn@rivosinc.com>
Link: https://lore.kernel.org/r/202302271000.Aj4nMXbZ-lkp@intel.com
Link: https://lore.kernel.org/bpf/20230227072016.14618-1-rdunlap@infradead.org
arch/riscv/net/bpf_jit_comp64.c