OSDN Git Service

selftests/bpf: Fix build error for LoongArch
authorTiezhu Yang <yangtiezhu@loongson.cn>
Wed, 15 Feb 2023 11:01:07 +0000 (19:01 +0800)
committerAlexei Starovoitov <ast@kernel.org>
Wed, 15 Feb 2023 16:47:53 +0000 (08:47 -0800)
commit524581d1216411a807d34181cb880d991fcb4b96
tree65ae729b25b197e39f412185ecd7c2fe92e517a1
parente2d323a1f009cbeb4fbc0bad81bf44d6401bd359
selftests/bpf: Fix build error for LoongArch

There exists build error when make -C tools/testing/selftests/bpf/
on LoongArch:

  BINARY   test_verifier
In file included from test_verifier.c:27:
tools/include/uapi/linux/bpf_perf_event.h:14:28: error: field 'regs' has incomplete type
   14 |         bpf_user_pt_regs_t regs;
      |                            ^~~~
make: *** [Makefile:577: tools/testing/selftests/bpf/test_verifier] Error 1
make: Leaving directory 'tools/testing/selftests/bpf'

Add missing uapi header for LoongArch to use the following definition:
typedef struct user_pt_regs bpf_user_pt_regs_t;

Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Link: https://lore.kernel.org/r/1676458867-22052-1-git-send-email-yangtiezhu@loongson.cn
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/include/uapi/asm/bpf_perf_event.h