On 7/22/24 10:14 PM, Song Liu wrote:
diff --git a/tools/testing/selftests/bpf/progs/mmap_inner_array.c b/tools/testing/selftests/bpf/progs/mmap_inner_array.c new file mode 100644 index 000000000000..db8ca2aa4347 --- /dev/null +++ b/tools/testing/selftests/bpf/progs/mmap_inner_array.c @@ -0,0 +1,59 @@ +// SPDX-License-Identifier: GPL-2.0 +/* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ + +#include "vmlinux.h" +#include <bpf/bpf_helpers.h> +#include <bpf/bpf_tracing.h>
nit. bpf_tracing.h is not needed.
+ +#include "bpf_misc.h" +#include "bpf_experimental.h"
Same for bpf_experimental.h. Removed before applying. Thanks.