[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <IA3PR11MB8986B7B866B98C12D6115E57E5A8A@IA3PR11MB8986.namprd11.prod.outlook.com>
Date: Thu, 18 Dec 2025 10:35:56 +0000
From: "Loktionov, Aleksandr" <aleksandr.loktionov@...el.com>
To: "mheib@...hat.com" <mheib@...hat.com>, "intel-wired-lan@...ts.osuosl.org"
<intel-wired-lan@...ts.osuosl.org>
CC: "Nguyen, Anthony L" <anthony.l.nguyen@...el.com>, "Kitszel, Przemyslaw"
<przemyslaw.kitszel@...el.com>, "davem@...emloft.net" <davem@...emloft.net>,
"aduyck@...antis.com" <aduyck@...antis.com>, "kuba@...nel.org"
<kuba@...nel.org>, "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"Keller, Jacob E" <jacob.e.keller@...el.com>
Subject: RE: [Intel-wired-lan] [PATCH net 1/2] i40e: drop
udp_tunnel_get_rx_info() call from i40e_open()
> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-bounces@...osl.org> On Behalf
> Of mheib@...hat.com
> Sent: Wednesday, December 17, 2025 8:00 PM
> To: intel-wired-lan@...ts.osuosl.org
> Cc: Nguyen, Anthony L <anthony.l.nguyen@...el.com>; Kitszel,
> Przemyslaw <przemyslaw.kitszel@...el.com>; davem@...emloft.net;
> aduyck@...antis.com; kuba@...nel.org; netdev@...r.kernel.org; Keller,
> Jacob E <jacob.e.keller@...el.com>; Mohammad Heib <mheib@...hat.com>
> Subject: [Intel-wired-lan] [PATCH net 1/2] i40e: drop
> udp_tunnel_get_rx_info() call from i40e_open()
>
> From: Mohammad Heib <mheib@...hat.com>
>
> The i40e driver calls udp_tunnel_get_rx_info() during i40e_open().
> This is redundant because UDP tunnel RX offload state is preserved
> across device down/up cycles. The udp_tunnel core handles
> synchronization automatically when required.
>
> Furthermore, recent changes in the udp_tunnel infrastructure require
> querying RX info while holding the udp_tunnel lock. Calling it
> directly from the ndo_open path violates this requirement, triggering
> the following lockdep warning:
>
> Call Trace:
> <TASK>
> ? __udp_tunnel_nic_assert_locked+0x39/0x40 [udp_tunnel]
> i40e_open+0x135/0x14f [i40e]
> __dev_open+0x121/0x2e0
> __dev_change_flags+0x227/0x270
> dev_change_flags+0x3d/0xb0
> devinet_ioctl+0x56f/0x860
> sock_do_ioctl+0x7b/0x130
> __x64_sys_ioctl+0x91/0xd0
> do_syscall_64+0x90/0x170
> ...
> </TASK>
>
> Remove the redundant and unsafe call to i40e_open() to resolve the
> locking violation.
I think it should be "call to udp_tunnel_get_rx_info() from i40e_open()", right?
Otherwise looks good.
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@...el.com>
>
> Fixes: 06a5f7f167c5 ("i40e: Move all UDP port notifiers to single
> function")
> Signed-off-by: Mohammad Heib <mheib@...hat.com>
> ---
> drivers/net/ethernet/intel/i40e/i40e_main.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c
> b/drivers/net/ethernet/intel/i40e/i40e_main.c
> index 50be0a60ae13..72358a34438b 100644
> --- a/drivers/net/ethernet/intel/i40e/i40e_main.c
> +++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
> @@ -9029,7 +9029,6 @@ int i40e_open(struct net_device *netdev)
> TCP_FLAG_FIN |
> TCP_FLAG_CWR) >> 16);
> wr32(&pf->hw, I40E_GLLAN_TSOMSK_L, be32_to_cpu(TCP_FLAG_CWR) >>
> 16);
> - udp_tunnel_get_rx_info(netdev);
>
> return 0;
> }
> --
> 2.52.0
Powered by blists - more mailing lists