From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9DCA83B530D for ; Mon, 15 Jun 2026 19:50:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781553037; cv=none; b=QIIQRVENFjwbWdwM3cLS2aoVKMs+u1XkhGTwD6ftCpz07S43ZtkKl7dWYSYlKHAR+Iy1NeeCroArTrrlrHPWyAh88WjG5+3B9uIqNSST38MRfHmPDr0odG8gsQdNgkVaCWUVqI7EOjFYJi17/7WNJ25xsQcoOH9Vjo4rpY46NE8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781553037; c=relaxed/simple; bh=26TukVbLG29rKT/ZGTbe03pFiFw9n88YYkgOf86J+0U=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=bz2zB+IgXlGKUxwvLws6JHsiZr7Kpj1yelV5ImwxUvkmA1efW3T7AxpXCQvBTouL0ynW9GR/m5p/lDt8JsoAepzhdPu+eI/pXnAyGwLI+WbuvV7aXlWLVw2Sgh7OqIbgqxah5hX9VtLUY88tbR0E1AS35Z5mLdYmh2i6+pYW0oE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fGUYKvVo; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fGUYKvVo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 82BCB1F000E9; Mon, 15 Jun 2026 19:50:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781553036; bh=Y9XOi9qTrmbwbiT8v+AtP/gm0n9V1iHHZRKPg8j/3K4=; h=Subject:From:Date:References:In-Reply-To:To:Cc; b=fGUYKvVoayRxwytGWq6Z4+FtcJawYR18i82H38zDVJ2LPaUiaK7DOy2GmAFTl6Q+o NLlvwxe9ZvZWZiX+BpQOTqGWcgpjWDtd1VgljcQGPaJ81xPDO/pSG1HZUoU1EDOLGT xlgbW8bc+4eBPOLHYkkqBFZcptSZaxmAMFJTYOxG411PI895MIrXmStSrYq9r8o8VF HPn4FEd4A15vh0vQjv0iZRSwX9lXpII68oI55nAjTicUrKNtvv5KrqWto5BEAOZUru 47u8qGsQYiKcuWXqN0spjD+D12spCwEzyzEb03tTtvuvG9mk+a3p0/hfsoVRok42u8 nG3X3oBw93YLw== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id D0A0B3839A06; Mon, 15 Jun 2026 19:50:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v1 net-next 0/5] ipv4: fib: Remove RTNL in fib_net_exit_batch(). From: patchwork-bot+netdevbpf@kernel.org Message-Id: <178155303138.269508.18385193981213232628.git-patchwork-notify@kernel.org> Date: Mon, 15 Jun 2026 19:50:31 +0000 References: <20260612063225.455191-1-kuniyu@google.com> In-Reply-To: <20260612063225.455191-1-kuniyu@google.com> To: Kuniyuki Iwashima Cc: dsahern@kernel.org, idosch@nvidia.com, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, horms@kernel.org, kuni1840@gmail.com, netdev@vger.kernel.org Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Fri, 12 Jun 2026 06:32:03 +0000 you wrote: > Currently, we flush all IPv4 routes at ->exit_batch() during > netns dismantle, which requires an extra RTNL. > > IPv4 routes are not added from the fast path unlike IPv6, so > we can flush routes before default_device_exit_batch(). > > However, there is implicit ordering between ip_fib_net_exit() > and default_device_exit_batch(). > > [...] Here is the summary with links: - [v1,net-next,1/5] ipv4: fib: Flush all fib_info in fib_table_flush() during netns dismantle. https://git.kernel.org/netdev/net-next/c/64587e936b65 - [v1,net-next,2/5] ipv4: fib: Call fib_proc_exit() and nl_fib_lookup_exit() at ->pre_exit(). https://git.kernel.org/netdev/net-next/c/c993bd0102aa - [v1,net-next,3/5] ipv4: fib: Free net->ipv4.{fib_table_hash,notifier_ops} without RTNL. https://git.kernel.org/netdev/net-next/c/49374d87e839 - [v1,net-next,4/5] ipv4: fib: Avoid calling fib_trie_table() in fib_new_table() for dying net. https://git.kernel.org/netdev/net-next/c/5a7fef12d931 - [v1,net-next,5/5] ipv4: fib: Convert fib_net_exit_batch() to ->exit_rtnl(). https://git.kernel.org/netdev/net-next/c/759923cf03b0 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html