summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlok Tiwari <alok.a.tiwari@oracle.com>2026-03-06 10:08:19 -0800
committerJakub Kicinski <kuba@kernel.org>2026-03-09 19:17:48 -0700
commitdc9c9193c7c19a0163552da3a73a1706b7faea12 (patch)
treef4a32d09145a17d3787c418dfd72031bd7cde7c3
parent51aaf65bbd21e81a0a4d6827fad76ec8873a7703 (diff)
downloadlinux-dc9c9193c7c19a0163552da3a73a1706b7faea12.tar.gz
linux-dc9c9193c7c19a0163552da3a73a1706b7faea12.zip
selftests: fib_tests: fix link-local retrieval in fib6_nexthop()
fib6_nexthop() retrieves the link-local address for two interfaces used in the test. However, both lldummy and llv1 are obtained from dummy0. llv1 is expected to be retrieved from veth1, which is the interface used later in the test. The subsequent check and error message also expect the address to be retrieved from veth1. Fix this by retrieving llv1 from veth1. Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com> Link: https://patch.msgid.link/20260306180830.2329477-1-alok.a.tiwari@oracle.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rwxr-xr-xtools/testing/selftests/net/fib_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/fib_tests.sh b/tools/testing/selftests/net/fib_tests.sh
index c5694cc4ddd2..439461080c60 100755
--- a/tools/testing/selftests/net/fib_tests.sh
+++ b/tools/testing/selftests/net/fib_tests.sh
@@ -545,7 +545,7 @@ fib4_nexthop()
fib6_nexthop()
{
local lldummy=$(get_linklocal dummy0)
- local llv1=$(get_linklocal dummy0)
+ local llv1=$(get_linklocal veth1)
if [ -z "$lldummy" ]; then
echo "Failed to get linklocal address for dummy0"