From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D5EA2C433F5 for ; Fri, 24 Sep 2021 09:40:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BEDEC61076 for ; Fri, 24 Sep 2021 09:40:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S245266AbhIXJlr (ORCPT ); Fri, 24 Sep 2021 05:41:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:47670 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245241AbhIXJlm (ORCPT ); Fri, 24 Sep 2021 05:41:42 -0400 Received: by mail.kernel.org (Postfix) with ESMTPS id 170D46105A; Fri, 24 Sep 2021 09:40:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1632476410; bh=dcW20119vH1g7DvDy7ncF76BOF84GbJy27wK89ohvK8=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=QJdJKPwtmbOSUzKYIhFKDloVu4gEqGOL0otZK6zhQzsMEsTx0BDsRdrDUBugQ9CeU hf77qOCPyQDwbXGP3tHxx/R/VULg1jMS8x8a/zi3K4yK7C8UCsp39d2y/KIAUA31M3 AU0Cwfk0blX8hw4T1mUh/f2O14Hwz1Ma5Gu+n+0hhiO9Zk0VZACUk0JRLB88f3MXty Ex8HJZNbqzrQeu3zfopWJGPQuu1E+6vs74ou5X6JfwYKVq0OkYSS7I7J2lzopuLVue rDn+378dtac4OS8XutXP/Cg2kFyZEWvgwhKiSG3tI2H3QerhEQPJNDu6hcQz/l4VV0 NN9PWu2zUNiQw== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH net-next 00/14] mlxsw: Add support for IP-in-IP with IPv6 underlay From: patchwork-bot+netdevbpf@kernel.org Message-Id: <163247641006.26581.76537304639283935.git-patchwork-notify@kernel.org> Date: Fri, 24 Sep 2021 09:40:10 +0000 References: <20210923123700.885466-1-idosch@idosch.org> In-Reply-To: <20210923123700.885466-1-idosch@idosch.org> To: Ido Schimmel Cc: netdev@vger.kernel.org, davem@davemloft.net, kuba@kernel.org, amcohen@nvidia.com, petrm@nvidia.com, jiri@nvidia.com, mlxsw@nvidia.com, idosch@nvidia.com Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Thu, 23 Sep 2021 15:36:46 +0300 you wrote: > From: Ido Schimmel > > Currently, mlxsw only supports IP-in-IP with IPv4 underlay. Traffic > routed through 'gre' netdevs is encapsulated with IPv4 and GRE headers. > Similarly, incoming IPv4 GRE packets are decapsulated and routed in the > overlay VRF (which can be the same as the underlay VRF). > > [...] Here is the summary with links: - [net-next,01/14] mlxsw: spectrum_router: Create common function for fib_entry_type_unset() code https://git.kernel.org/netdev/net-next/c/45bce5c99d46 - [net-next,02/14] mlxsw: spectrum_ipip: Pass IP tunnel parameters by reference and as 'const' https://git.kernel.org/netdev/net-next/c/aa6fd8f177d6 - [net-next,03/14] mlxsw: spectrum_router: Fix arguments alignment https://git.kernel.org/netdev/net-next/c/8aba32cea3f3 - [net-next,04/14] mlxsw: spectrum_ipip: Create common function for mlxsw_sp_ipip_ol_netdev_change_gre() https://git.kernel.org/netdev/net-next/c/80ef2abcddbc - [net-next,05/14] mlxsw: Take tunnel's type into account when searching underlay device https://git.kernel.org/netdev/net-next/c/59bf980dd90f - [net-next,06/14] mlxsw: reg: Add Router IP version Six Register https://git.kernel.org/netdev/net-next/c/dd8a9552d484 - [net-next,07/14] mlxsw: reg: Add support for rtdp_ipip6_pack() https://git.kernel.org/netdev/net-next/c/a917bb271d16 - [net-next,08/14] mlxsw: reg: Add support for ratr_ipip6_entry_pack() https://git.kernel.org/netdev/net-next/c/c729ae8d6cbc - [net-next,09/14] mlxsw: reg: Add support for ritr_loopback_ipip6_pack() https://git.kernel.org/netdev/net-next/c/36c2ab890b8f - [net-next,10/14] mlxsw: Create separate ipip_ops_arr for different ASICs https://git.kernel.org/netdev/net-next/c/a82feba686e8 - [net-next,11/14] mlxsw: spectrum_ipip: Add mlxsw_sp_ipip_gre6_ops https://git.kernel.org/netdev/net-next/c/713e8502fd3e - [net-next,12/14] mlxsw: Add IPV6_ADDRESS kvdl entry type https://git.kernel.org/netdev/net-next/c/53eedd61dea9 - [net-next,13/14] mlxsw: spectrum_router: Increase parsing depth for IPv6 decapsulation https://git.kernel.org/netdev/net-next/c/8d4f10463cd6 - [net-next,14/14] mlxsw: Add support for IP-in-IP with IPv6 underlay for Spectrum-2 and above https://git.kernel.org/netdev/net-next/c/ba1c71324bc2 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html