From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (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 DE43239B97D; Thu, 19 Mar 2026 22:11:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773958280; cv=none; b=kWKGdaUrQ8Hk544egmcZY4G9s26dKjWsAqYriaakCFMKGybB3fQwG8FfgMmI+GEaxiepQlWMe/7tRC58MAbvaZ+QhQFXQrtMdGjl6KD2btPES3SZUySCL2rcEb5hP0bZ8V7H2agqCiToIn8QlBInZjcvrYCeSNxy4DcBtiP8lsk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773958280; c=relaxed/simple; bh=9SEPiWDtYK915dM/C6koVFsZw+XgKzFlGBbVBs7PxtM=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=MzEjXS5gzZrZkZGAmcYXqg6ggZw+FTbJkmA62SBe40+IACfVIxzKTC8oU1VIJOB8SQshKX+uUpTILAG/pgvaBu8s3JW0u/AdcadaKqJ5SB+b5BVAE62eK+Up3EwaR1guPsc+EYVsGF4WUqQMGAFQRMpQEg4GnBM4GjCQJCokHds= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=mljWtymt; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="mljWtymt" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 67A8041209 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1773958272; bh=pMssSaY3o+6SS7PX7iNNHD9bSiFr2yXyJvC2G9sajBQ=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=mljWtymtW29QF0H6t3+rbQc9YPQR49BsqrPMLyyFIshT5SpcYDZpbG3hfx3zEa+2B DIy1R3nrrX13dniiEpKa4qoHRqJ1xuzG4M3/7U0621Um6WLKxAoZtySyyn8s1DUWaH 5VkMJLibBjFeXjJSyrg751f9M7+/rzEi/YgKDubiWlPflAh23i/07ez2O4FaVezYc/ KojiIJWUbDIo1jjZoj/xSIMTbrdaPOkQsRsChjW7IWzMTjiHUdqQZcq7pLZJssTRpg 4trJfpaAgh68brPeN0q7f6+68hd5F5tf+DKHib6A3f5cNInhgsXKnWSnfZGQjdonig R0LphD1pLmivQ== Received: from localhost (unknown [IPv6:2601:280:4600:27b::1fe]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 67A8041209; Thu, 19 Mar 2026 22:11:12 +0000 (UTC) From: Jonathan Corbet To: Ralf Lici , netdev@vger.kernel.org Cc: Daniel =?utf-8?Q?Gr=C3=B6ber?= , Antonio Quartulli , Ralf Lici , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Simon Horman , Shuah Khan , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC net-next 15/15] Documentation: networking: add ipxlat translator guide In-Reply-To: <20260319151230.655687-16-ralf@mandelbit.com> References: <20260319151230.655687-1-ralf@mandelbit.com> <20260319151230.655687-16-ralf@mandelbit.com> Date: Thu, 19 Mar 2026 16:11:11 -0600 Message-ID: <87se9vh3ls.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ralf Lici writes: > From: Daniel Gr=C3=B6ber > > Add user and reviewer documentation for the ipxlat virtual netdevice in > Documentation/networking/ipxlat.rst. > > The document describes the datapath model, stateless IPv4/IPv6 address > translation rules, ICMP handling, control-plane configuration, and test > topology assumptions. It also records the intended runtime configuration > contract and current behavior limits so deployment expectations are > clear. > > Signed-off-by: Daniel Gr=C3=B6ber > Signed-off-by: Ralf Lici > --- > Documentation/networking/ipxlat.rst | 190 ++++++++++++++++++++++++++++ > 1 file changed, 190 insertions(+) > create mode 100644 Documentation/networking/ipxlat.rst You need to add this new file to Documentation/networking/index.rst or it won't be included in the build (and you'll get a warning). Thanks, jon