From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 495BA21019E for ; Fri, 30 Jan 2026 02:48:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769741326; cv=none; b=h23BKHetsWSxrdNYroJwaZlYqeOwCls7xbxkpxipkW9fgQOY+ukfnbHy+ZKfrr8iAlXlipbFh66E1wnEflIDUlgr5dIC8YjYs/sSW2JqAEB29nna2ca0SoIQfuRV2Kf5WSjyZM1vGu0Ixnl9RBGJdf4Cqvvh7bOs3rF09tv8xjE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769741326; c=relaxed/simple; bh=YZJUQzO/HiYjNkjKiNig5HCSrb815nSS92FtBN6XGhw=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=sO/B9QKbncFLWYUXbTqB6sexM8hTnqgUY+mk+ptTPd8IXf7pPrl+8lFRBFSMzJewPq0ENutPnuMBJ1jr4Fgxmt0bo7mmnz2az0LiieL6sTvgT8C1pzxP+yONmm9jLL8Nn9qn7ft3k6Fjm3J0NhIswd9RF4YvhA7OAnyJcsLg9Ec= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gY8vFV4d; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="gY8vFV4d" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8180AC4CEF7; Fri, 30 Jan 2026 02:48:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769741325; bh=YZJUQzO/HiYjNkjKiNig5HCSrb815nSS92FtBN6XGhw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=gY8vFV4d+7VNmc+BibNkhTWTnt2ZyFfOHZQShC2WUlNCrIB7fw14XItnZyf4ukoWR IyVbLCNTx1yREy5aHSZQV3Us8HZ1xsDabEPxtvwivWjq2rJ6D/u8WDleXbAuO9YJcC sFut5/nT+MMTYpBGJr5DhMIcEiCG+gaXFVJefIUGDHLF6OTVUDOF1ybnvnCL4WhTmG 0revNH3i8ZQ4bYiehtXawOQe7mfwUARmaNYKmBKJjoJwxAVtenPAWyg5ZdQo+YxW/x Edu6HOqg/pQswC++/InTGaNV55LAO18oeakd1C1v2RWZCa/8WHrmwcIllW8+QAzMFu t388qS8lW2ZqA== Date: Thu, 29 Jan 2026 18:48:44 -0800 From: Jakub Kicinski To: Eric Dumazet Cc: "David S . Miller" , Paolo Abeni , Simon Horman , David Ahern , netdev@vger.kernel.org, eric.dumazet@gmail.com Subject: Re: [PATCH net-next] ipv6: optimize fl6_update_dst() Message-ID: <20260129184844.195df52e@kernel.org> In-Reply-To: <20260128185548.3738781-1-edumazet@google.com> References: <20260128185548.3738781-1-edumazet@google.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Wed, 28 Jan 2026 18:55:47 +0000 Eric Dumazet wrote: > - * Returns NULL if no txoptions or no srcrt, otherwise returns orig > + * Returns NULL if no srcrt or invalid srcrt type, otherwise returns orig I'm gonna take this opportunity to update this line to Return: in accordance with kdoc rules, hope you don't mind. Applied.