From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id BD3681E2F for ; Mon, 29 Oct 2018 13:54:11 +0100 (CET) Received: by mail-wm1-f67.google.com with SMTP id r63-v6so8118802wma.4 for ; Mon, 29 Oct 2018 05:54:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=KGsHjOXqT9mTh99v9zxRVSoGVKv1mnY2BaegqqIZwFk=; b=cwTAXRf/TneyKt6vAY4hkapNBGLNV/yjntFJJWKwjdPozrg9lRzPpNYhTX8Drs1HSf ojFF0ULcGHLvCOEebD1PRT5D7JK4Dy8f5hqFivTOILuCB9Jr6mHDzeQUF00TUVidgO6Y VAzCi6XfGN0iAdtlya2BRCvD3VfhzHZwAVB5IhWeYFilxHaxEeemv8bX5CUSpQgyB57h n+w/N4x0sm/2xTjhGBnZhj9TKskyXEvEt/fL0+37/c0xbdUX/q7tRknQqh1iWKA+uiOV SAs6kiTtoMaCISc0pa9rYxcfNq3Ea3X3xXvdRG9cINyEKsVVDR6YYIqwFXALmniE90LF Xu1w== X-Gm-Message-State: AGRZ1gLYCCGkou2R4oG+o4vOrxtC9EobKfsjpCrjqeQPYipGvP2MdoTQ NgDPSDutg7q0k5DeFhgwnfQ= X-Google-Smtp-Source: AJdET5eO0B+Hp5LIN6XApJGn9dJelzunAXZJCTIbxhi/+Z8mLVUup3eA9YPCSLyZ15H2DjC/Onbpeg== X-Received: by 2002:a7b:c096:: with SMTP id r22-v6mr14093852wmh.40.1540817651301; Mon, 29 Oct 2018 05:54:11 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id 68-v6sm2999476wmg.26.2018.10.29.05.54.10 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 29 Oct 2018 05:54:10 -0700 (PDT) From: Luca Boccassi To: Zhirun Yan Cc: Xiaolong Ye , dpdk stable Date: Mon, 29 Oct 2018 12:53:24 +0000 Message-Id: <20181029125329.17729-15-bluca@debian.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181029125329.17729-1-bluca@debian.org> References: <20181015115144.27626-1-bluca@debian.org> <20181029125329.17729-1-bluca@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'net/ixgbe: update Tx offload mask' has been queued to LTS release 16.11.9 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Oct 2018 12:54:11 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 10/31/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Luca Boccassi --- >>From 7ed945f3a189cae493662c6f4b403efa3ce88677 Mon Sep 17 00:00:00 2001 From: Zhirun Yan Date: Thu, 25 Oct 2018 14:58:40 +0000 Subject: [PATCH] net/ixgbe: update Tx offload mask [ upstream commit aa1e69aebb12a57038f7ed5664605b7bcccbbe20 ] Tx offload mask is updated in following commit: commit 1037ed842c37 ("mbuf: fix Tx offload mask"). Currently, the new added offload flags are not supported in PMD and application will fail to call PMD transmit prepare function. This patch updates IXGBE_TX_OFFFLOAD_MASK. Fixes: 1037ed842c37 ("mbuf: fix Tx offload mask") Signed-off-by: Zhirun Yan Reviewed-by: Xiaolong Ye --- drivers/net/ixgbe/ixgbe_rxtx.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_rxtx.c b/drivers/net/ixgbe/ixgbe_rxtx.c index 8b18b5302..55afb5393 100644 --- a/drivers/net/ixgbe/ixgbe_rxtx.c +++ b/drivers/net/ixgbe/ixgbe_rxtx.c @@ -81,6 +81,10 @@ /* Bit Mask to indicate what bits required for building TX context */ #define IXGBE_TX_OFFLOAD_MASK ( \ + PKT_TX_OUTER_IPV6 | \ + PKT_TX_OUTER_IPV4 | \ + PKT_TX_IPV6 | \ + PKT_TX_IPV4 | \ PKT_TX_VLAN_PKT | \ PKT_TX_IP_CKSUM | \ PKT_TX_L4_MASK | \ -- 2.19.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-10-29 12:48:14.769128535 +0000 +++ 0015-net-ixgbe-update-Tx-offload-mask.patch 2018-10-29 12:48:14.470417981 +0000 @@ -1,8 +1,10 @@ -From aa1e69aebb12a57038f7ed5664605b7bcccbbe20 Mon Sep 17 00:00:00 2001 +From 7ed945f3a189cae493662c6f4b403efa3ce88677 Mon Sep 17 00:00:00 2001 From: Zhirun Yan Date: Thu, 25 Oct 2018 14:58:40 +0000 Subject: [PATCH] net/ixgbe: update Tx offload mask +[ upstream commit aa1e69aebb12a57038f7ed5664605b7bcccbbe20 ] + Tx offload mask is updated in following commit: commit 1037ed842c37 ("mbuf: fix Tx offload mask"). Currently, the new added offload flags are not supported in PMD and application will fail to call @@ -11,7 +13,6 @@ This patch updates IXGBE_TX_OFFFLOAD_MASK. Fixes: 1037ed842c37 ("mbuf: fix Tx offload mask") -Cc: stable@dpdk.org Signed-off-by: Zhirun Yan Reviewed-by: Xiaolong Ye @@ -20,11 +21,11 @@ 1 file changed, 4 insertions(+) diff --git a/drivers/net/ixgbe/ixgbe_rxtx.c b/drivers/net/ixgbe/ixgbe_rxtx.c -index 9e2fbba3e..2f0262ae1 100644 +index 8b18b5302..55afb5393 100644 --- a/drivers/net/ixgbe/ixgbe_rxtx.c +++ b/drivers/net/ixgbe/ixgbe_rxtx.c -@@ -58,6 +58,10 @@ - #endif +@@ -81,6 +81,10 @@ + /* Bit Mask to indicate what bits required for building TX context */ #define IXGBE_TX_OFFLOAD_MASK ( \ + PKT_TX_OUTER_IPV6 | \