summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/net/udpgro.sh
diff options
context:
space:
mode:
authorHangbin Liu <liuhangbin@gmail.com>2022-06-30 09:22:28 +0300
committerJakub Kicinski <kuba@kernel.org>2022-07-02 06:16:02 +0300
commitd28b25a62a47a8c8aa19bd543863aab6717e68c9 (patch)
tree5881c0a6ad40f857f1c5a277dad3f07b6646a756 /tools/testing/selftests/net/udpgro.sh
parentbc38fae3a68b5140a39e2948de2b5b301438abfe (diff)
downloadlinux-d28b25a62a47a8c8aa19bd543863aab6717e68c9.tar.xz
selftests/net: fix section name when using xdp_dummy.o
Since commit 8fffa0e3451a ("selftests/bpf: Normalize XDP section names in selftests") the xdp_dummy.o's section name has changed to xdp. But some tests are still using "section xdp_dummy", which make the tests failed. Fix them by updating to the new section name. Fixes: 8fffa0e3451a ("selftests/bpf: Normalize XDP section names in selftests") Signed-off-by: Hangbin Liu <liuhangbin@gmail.com> Acked-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/r/20220630062228.3453016-1-liuhangbin@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/testing/selftests/net/udpgro.sh')
-rwxr-xr-xtools/testing/selftests/net/udpgro.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/udpgro.sh b/tools/testing/selftests/net/udpgro.sh
index f8a19f548ae9..ebbd0b282432 100755
--- a/tools/testing/selftests/net/udpgro.sh
+++ b/tools/testing/selftests/net/udpgro.sh
@@ -34,7 +34,7 @@ cfg_veth() {
ip -netns "${PEER_NS}" addr add dev veth1 192.168.1.1/24
ip -netns "${PEER_NS}" addr add dev veth1 2001:db8::1/64 nodad
ip -netns "${PEER_NS}" link set dev veth1 up
- ip -n "${PEER_NS}" link set veth1 xdp object ../bpf/xdp_dummy.o section xdp_dummy
+ ip -n "${PEER_NS}" link set veth1 xdp object ../bpf/xdp_dummy.o section xdp
}
run_one() {