From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id E8BB643699 for ; Thu, 7 Dec 2023 12:21:51 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E2F1442F04; Thu, 7 Dec 2023 12:21:51 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 27CCB42F04 for ; Thu, 7 Dec 2023 12:21:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1701948109; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=YdMbOAG2b2J8sUDK2UbKcxthzL3gEMGeFrnDx1H8V54=; b=dKzSHx/y5bCyhIakeU0GD7Bt6pjbA204UjNufO13DOpItkV26qOSdrKjx+mN0Z99IwAw7h ZoyIvq33NUln8UlJcNpNYUb+7z1L4wQJFXZgPLnP3yam0uiL+/KP87eXG37Lfc/jP1Ik+b TNKoKKuaGpjW94ObWBXGLVpZl0LOqAA= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-534-1AgLTa48OgGERtMtWVuIBA-1; Thu, 07 Dec 2023 06:21:46 -0500 X-MC-Unique: 1AgLTa48OgGERtMtWVuIBA-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.rdu2.redhat.com [10.11.54.8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 4B3713C2A1CC; Thu, 7 Dec 2023 11:21:46 +0000 (UTC) Received: from rh.Home (unknown [10.39.192.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id A7534C15A0C; Thu, 7 Dec 2023 11:21:45 +0000 (UTC) From: Kevin Traynor To: Alexander Kozyrev Cc: =?UTF-8?q?Morten=20Br=C3=B8rup?= , dpdk stable Subject: patch 'ethdev: fix ESP packet type description' has been queued to stable release 21.11.6 Date: Thu, 7 Dec 2023 11:21:10 +0000 Message-ID: <20231207112116.769502-18-ktraynor@redhat.com> In-Reply-To: <20231207112116.769502-1-ktraynor@redhat.com> References: <20231207112116.769502-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.8 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.6 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 12/12/23. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/f2151f9aa0bf102535a039c4e33504961e60126e Thanks. Kevin --- >From f2151f9aa0bf102535a039c4e33504961e60126e Mon Sep 17 00:00:00 2001 From: Alexander Kozyrev Date: Wed, 25 Oct 2023 23:32:15 +0300 Subject: [PATCH] ethdev: fix ESP packet type description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [ upstream commit f647d53bdebc1a9273c01caad280aadc64d0487e ] The correct protocol number for ESP (IP Encapsulating Security Payload) packet type is 50. 51 is IPSec AH (Authentication Header). Fixes: 1e84afd3906b ("mbuf: add security crypto flags and fields") Signed-off-by: Alexander Kozyrev Reviewed-by: Morten Brørup --- lib/mbuf/rte_mbuf_ptype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mbuf/rte_mbuf_ptype.h b/lib/mbuf/rte_mbuf_ptype.h index 17a2dd3576..f2276e2909 100644 --- a/lib/mbuf/rte_mbuf_ptype.h +++ b/lib/mbuf/rte_mbuf_ptype.h @@ -420,8 +420,8 @@ extern "C" { * Packet format: * <'ether type'=0x0800 - * | 'version'=4, 'protocol'=51> + * | 'version'=4, 'protocol'=50> * or, * <'ether type'=0x86DD - * | 'version'=6, 'next header'=51> + * | 'version'=6, 'next header'=50> */ #define RTE_PTYPE_TUNNEL_ESP 0x00009000 -- 2.43.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2023-12-07 11:19:00.032789359 +0000 +++ 0018-ethdev-fix-ESP-packet-type-description.patch 2023-12-07 11:18:59.638873965 +0000 @@ -1 +1 @@ -From f647d53bdebc1a9273c01caad280aadc64d0487e Mon Sep 17 00:00:00 2001 +From f2151f9aa0bf102535a039c4e33504961e60126e Mon Sep 17 00:00:00 2001 @@ -8,0 +9,2 @@ +[ upstream commit f647d53bdebc1a9273c01caad280aadc64d0487e ] + @@ -13 +14,0 @@ -Cc: stable@dpdk.org