From patchwork Fri Nov 9 07:56:22 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rahul Lakkireddy X-Patchwork-Id: 47951 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C314E4C92; Fri, 9 Nov 2018 08:57:34 +0100 (CET) Received: from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8]) by dpdk.org (Postfix) with ESMTP id 29EB04C77 for ; Fri, 9 Nov 2018 08:57:32 +0100 (CET) Received: from localhost (scalar.blr.asicdesigners.com [10.193.185.94]) by stargate.chelsio.com (8.13.8/8.13.8) with ESMTP id wA97vTav014817; Thu, 8 Nov 2018 23:57:30 -0800 From: Rahul Lakkireddy To: dev@dpdk.org Cc: indranil@chelsio.com, nirranjan@chelsio.com Date: Fri, 9 Nov 2018 13:26:22 +0530 Message-Id: X-Mailer: git-send-email 2.5.3 Subject: [dpdk-dev] [PATCH 0/6] net/cxgbe: bug fixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Patch 1 adds a missing PCI un-initialization function for CXGBEVF to fix resource leaks. Patch 2 fixes VLAN strip offload always being enabled without looking at Rx offload flags. Patch 3 fixes issue with redefined match items in flows being offloaded to hardware. Patch 4 fixes flow offload timeouts under heavy load. Patch 5 fixes wrong ingress port value being written in filter spec passed to hardware while offloading flows. Patch 6 fixes freeing illegal memory location while destroying MPS table. Thanks, Rahul Rahul Lakkireddy (6): net/cxgbevf: add missing PCI uninitialization function for VF net/cxgbe: check Rx offload flags before doing VLAN strip offload net/cxgbe: fix check for redefined match items net/cxgbe: increase completion wait time for flow operations net/cxgbe: fix wrong ingress port value set in filter spec net/cxgbevf: fix illegal memory access when freeing MPS TCAM drivers/net/cxgbe/cxgbe_filter.c | 7 ++----- drivers/net/cxgbe/cxgbe_flow.c | 16 +++++++--------- drivers/net/cxgbe/cxgbe_flow.h | 5 +++-- drivers/net/cxgbe/cxgbe_main.c | 18 +++++++++++------- drivers/net/cxgbe/cxgbevf_ethdev.c | 12 +++++++++++- drivers/net/cxgbe/cxgbevf_main.c | 6 ++++++ drivers/net/cxgbe/mps_tcam.c | 4 +--- 7 files changed, 41 insertions(+), 27 deletions(-)