From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8BD5CA0542 for ; Fri, 7 Feb 2020 16:14:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6FF7A1C123; Fri, 7 Feb 2020 16:14:24 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 6D9601BF8E for ; Fri, 7 Feb 2020 16:14:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581088462; 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=7cR0iSPzhmC2ZfZvzV+lHuwze+AwrgpPJ8JwlSe0kSE=; b=SipfJ538XBm1YllPMwiabO2ruAeyYl/MaNJtap99xzvxEdB2eQIs+GopJw8vuoZRifdX0j JXFARue59s5WuV2sq4WdEGVuLehxRd0LzbdjkxXfMjBPhz8gvo3lV3T6Z34QWSepyfgN1D HNIFXsFy1dBBf4adbes9QO6756WbuFU= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-429-3cv54pKuMlSfrDZsS52F0A-1; Fri, 07 Feb 2020 10:14:06 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 303CE1005F7B; Fri, 7 Feb 2020 15:14:05 +0000 (UTC) Received: from rh.redhat.com (unknown [10.33.36.76]) by smtp.corp.redhat.com (Postfix) with ESMTP id 241F910016DA; Fri, 7 Feb 2020 15:14:03 +0000 (UTC) From: Kevin Traynor To: Rahul Lakkireddy Cc: Chas Williams <3chas3@gmail.com>, dpdk stable Date: Fri, 7 Feb 2020 15:12:46 +0000 Message-Id: <20200207151248.29804-34-ktraynor@redhat.com> In-Reply-To: <20200207151248.29804-1-ktraynor@redhat.com> References: <20200207151248.29804-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: 3cv54pKuMlSfrDZsS52F0A-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] patch 'net/cxgbe: announce Tx multi-segments offload' has been queued to LTS release 18.11.7 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.11.7 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/13/20. 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 rebasi= ng (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-queue This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable-queue/commit/7e4cdeccb0790b8f53= d2b34761719def7a0200e6 Thanks. Kevin. --- >From 7e4cdeccb0790b8f53d2b34761719def7a0200e6 Mon Sep 17 00:00:00 2001 From: Rahul Lakkireddy Date: Tue, 14 Jan 2020 15:13:22 +0530 Subject: [PATCH] net/cxgbe: announce Tx multi-segments offload [ upstream commit acbe92bdb2d25f47a690c917f577a0918ba562a1 ] Multi-segs Tx is already supported by CXGBE PMD. So, add the missing DEV_TX_OFFLOAD_MULTI_SEGS flag to the list of supported Tx offload features. Fixes: 436125e64174 ("net/cxgbe: update to Rx/Tx offload API") Reported-by: Chas Williams <3chas3@gmail.com> Signed-off-by: Rahul Lakkireddy --- drivers/net/cxgbe/cxgbe.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/cxgbe/cxgbe.h b/drivers/net/cxgbe/cxgbe.h index cf2621344a..b6c5e03095 100644 --- a/drivers/net/cxgbe/cxgbe.h +++ b/drivers/net/cxgbe/cxgbe.h @@ -40,5 +40,6 @@ =09=09=09 DEV_TX_OFFLOAD_UDP_CKSUM | \ =09=09=09 DEV_TX_OFFLOAD_TCP_CKSUM | \ -=09=09=09 DEV_TX_OFFLOAD_TCP_TSO) +=09=09=09 DEV_TX_OFFLOAD_TCP_TSO | \ +=09=09=09 DEV_TX_OFFLOAD_MULTI_SEGS) =20 #define CXGBE_RX_OFFLOADS (DEV_RX_OFFLOAD_VLAN_STRIP | \ --=20 2.21.1 --- Diff of the applied patch vs upstream commit (please double-check if non-= empty: --- --- -=092020-02-07 15:08:19.294032772 +0000 +++ 0034-net-cxgbe-announce-Tx-multi-segments-offload.patch=092020-02-07 15= :08:17.570062206 +0000 @@ -1 +1 @@ -From acbe92bdb2d25f47a690c917f577a0918ba562a1 Mon Sep 17 00:00:00 2001 +From 7e4cdeccb0790b8f53d2b34761719def7a0200e6 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit acbe92bdb2d25f47a690c917f577a0918ba562a1 ] + @@ -11 +12,0 @@ -Cc: stable@dpdk.org @@ -20 +21 @@ -index 6c1f73ac4b..75a2e9931b 100644 +index cf2621344a..b6c5e03095 100644 @@ -23 +24 @@ -@@ -41,5 +41,6 @@ +@@ -40,5 +40,6 @@