From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from rcdn-iport-6.cisco.com (rcdn-iport-6.cisco.com [173.37.86.77]) by dpdk.org (Postfix) with ESMTP id 3C99E567A for ; Tue, 24 May 2016 08:33:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cisco.com; i=@cisco.com; l=1773; q=dns/txt; s=iport; t=1464071583; x=1465281183; h=from:to:cc:subject:date:message-id; bh=biwvccyXKEdXYsb2YYYS9CquYnr7uXvH1jqGoa681nY=; b=GIORqSQ3L+WG7wcUJC7Drfj9xBY6l9w6HOXeTqdFSBqEjH01jk7zbuJE ZNDhsB/nlnyWvYeRWDt/BDpYl4/atKVsQxB2ozh+b+8ZFY3hGJdf+hFID jbZj7K5Jfbm3ASLmKZu9wq6GR+NHHfv/ErsNQDnXZWMUAuKoVjUk4yTZ4 k=; X-IronPort-AV: E=Sophos;i="5.26,359,1459814400"; d="scan'208";a="107511382" Received: from rcdn-core-4.cisco.com ([173.37.93.155]) by rcdn-iport-6.cisco.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 May 2016 06:33:02 +0000 Received: from cisco.com (savbu-usnic-a.cisco.com [10.193.184.48]) by rcdn-core-4.cisco.com (8.14.5/8.14.5) with ESMTP id u4O6X2KE010701; Tue, 24 May 2016 06:33:02 GMT Received: by cisco.com (Postfix, from userid 392789) id 53F323FAADF0; Mon, 23 May 2016 23:33:02 -0700 (PDT) From: John Daley To: dev@dpdk.org Cc: John Daley Date: Mon, 23 May 2016 23:32:48 -0700 Message-Id: <1464071579-30072-1-git-send-email-johndale@cisco.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH v2 00/11] enic counter fixes and Tx optimization X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 May 2016 06:33:03 -0000 The first 3 patches are related to drop counters. The remaining patches make up a refactoring, cleanup and optimization of the Tx path. Changes since v1 are: - subject line fixups after running check-git-log.sh. - Errors reported from patchworks fixed. Note: ./scripts/checkpatches.pl was run locally before upstreaming v1 and the same errors were not caught. The local host had perl version v5.16.3. John Daley (11): 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 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 | 47 +++- 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 | 482 +++++++++++++++++++++++++++++++++++ 11 files changed, 634 insertions(+), 872 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