From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Daley Subject: [PATCH v3 00/13] enic counter fixes and Tx optimization Date: Thu, 2 Jun 2016 17:22:44 -0700 Message-ID: <1464913377-30879-1-git-send-email-johndale@cisco.com> References: <1464071579-30072-1-git-send-email-johndale@cisco.com> Cc: bruce.richarsdon@intel.com, John Daley To: dev@dpdk.org Return-path: Received: from alln-iport-7.cisco.com (alln-iport-7.cisco.com [173.37.142.94]) by dpdk.org (Postfix) with ESMTP id 5CDE65A62 for ; Fri, 3 Jun 2016 02:23:15 +0200 (CEST) In-Reply-To: <1464071579-30072-1-git-send-email-johndale@cisco.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The first 3 patches are related to drop counters. The remaining patches make up refactoring, cleanup bug fixes and optimization of the Tx path. Changes since v2 are: - Piotr Azarewicz's ol_flags patch http://www.dpdk.org/dev/patchwork/patch/12642 - fix Tx IP and UDP/TCP checksum offload John Daley (13): enic: fix Rx drop counters enic: drop bad packets and remove unused Rx error flag enic: count truncated packets enic: put Tx and Rx functions into same file enic: remove some unused functions in Tx path enic: streamline mbuf handling in Tx path enic: use Tx completion messages instead of descriptors enic: refactor Tx mbuf recycling enic: optimize the Tx function enic: remove unused files and functions and variables enic: add an enic assert macro enic: expand local Tx mbuf flags variable to 64-bits enic: fix Tx IP and UDP/TCP checksum offload drivers/net/enic/Makefile | 2 +- drivers/net/enic/base/enic_vnic_wq.h | 79 ------ drivers/net/enic/base/vnic_cq.h | 44 ---- drivers/net/enic/base/vnic_wq.c | 80 ++---- drivers/net/enic/base/vnic_wq.h | 118 ++------- drivers/net/enic/enic.h | 48 +++- drivers/net/enic/enic_ethdev.c | 67 +---- drivers/net/enic/enic_main.c | 156 +++++------ drivers/net/enic/enic_res.h | 80 +----- drivers/net/enic/enic_rx.c | 351 ------------------------- drivers/net/enic/enic_rxtx.c | 490 +++++++++++++++++++++++++++++++++++ 11 files changed, 642 insertions(+), 873 deletions(-) delete mode 100644 drivers/net/enic/base/enic_vnic_wq.h delete mode 100644 drivers/net/enic/enic_rx.c create mode 100644 drivers/net/enic/enic_rxtx.c -- 2.7.0