[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <159bb793-508c-42f3-af60-20c1c688f5f9@intel.com>
Date: Tue, 25 Nov 2025 11:59:05 +0100
From: Jakub Slepecki <jakub.slepecki@...el.com>
To: Alexander Lobakin <aleksander.lobakin@...el.com>
CC: Przemek Kitszel <przemyslaw.kitszel@...el.com>, Tony Nguyen
<anthony.l.nguyen@...el.com>, <nxne.cnse.osdt.itp.upstreaming@...el.com>,
<intel-wired-lan@...ts.osuosl.org>, <netdev@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, Andrew Lunn <andrew+netdev@...n.ch>, "David
S. Miller" <davem@...emloft.net>, Eric Dumazet <edumazet@...gle.com>, "Jakub
Kicinski" <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>
Subject: Re: [PATCH net-next] ice: fix broken Rx on VFs
Tested-by: Jakub Slepecki <jakub.slepecki@...el.com>
As expected, the issue reproduced with commit 53ffcce6fe91 ("ixd: add
devlink support, 2025-11-17"). Applying this patch on top of this commit
allows VFs to receive packets. Network configuration used:
ip netns add $pf_netns
ip l set $pf netns $pf_netns
ip netns exec $pf_netns ip l set lo up
ip netns exec $pf_netns ip l set $pf address $pf_mac up
ip netns exec $pf_netns ip a add 10.0.0.1/24 dev $pf
ip netns add $vf0_netns
ip l set $vf0 netns $vf0_netns
ip netns exec $vf0_netns ip l set lo up
ip netns exec $vf0_netns ip l set $vf0 up
ip netns exec $vf0_netns ip a add 10.0.0.2/24 dev $vf0
ip netns add $vf1_netns
ip l set $vf1 netns $vf1_netns
ip netns exec $vf1_netns ip l set lo up
ip netns exec $vf1_netns ip l set $vf1 up
ip netns exec $vf1_netns ip a add 10.0.0.3/24 dev $vf1
Assume all variables are known and network namespaces are distinct.
External host was able to successfully ping each 10.0.0.[123].
Powered by blists - more mailing lists