diff options
author | Daniel T. Lee <danieltimlee@gmail.com> | 2023-01-15 08:16:13 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2023-01-15 22:32:45 +0100 |
commit | e04946f54cd99fa1bd92e22f4540720d76d88058 (patch) | |
tree | 059e4cedf8d2015617268672584b31c5db88c6ff /samples/bpf/lwt_len_hist.sh | |
parent | samples/bpf: use vmlinux.h instead of implicit headers in BPF test program (diff) | |
download | linux-e04946f54cd99fa1bd92e22f4540720d76d88058.tar.xz linux-e04946f54cd99fa1bd92e22f4540720d76d88058.zip |
samples/bpf: change _kern suffix to .bpf with BPF test programs
This commit changes the _kern suffix to .bpf with the BPF test programs.
With this modification, test programs will inherit the benefit of the
new CLANG-BPF compile target.
Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Link: https://lore.kernel.org/r/20230115071613.125791-11-danieltimlee@gmail.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'samples/bpf/lwt_len_hist.sh')
-rwxr-xr-x | samples/bpf/lwt_len_hist.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/bpf/lwt_len_hist.sh b/samples/bpf/lwt_len_hist.sh index ff7d1ba0f7ed..7078bfcc4f4d 100755 --- a/samples/bpf/lwt_len_hist.sh +++ b/samples/bpf/lwt_len_hist.sh @@ -4,7 +4,7 @@ NS1=lwt_ns1 VETH0=tst_lwt1a VETH1=tst_lwt1b -BPF_PROG=lwt_len_hist_kern.o +BPF_PROG=lwt_len_hist.bpf.o TRACE_ROOT=/sys/kernel/debug/tracing function cleanup { |