From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from nbfkord-smmo01.seg.att.com (nbfkord-smmo01.seg.att.com [209.65.160.76]) by dpdk.org (Postfix) with ESMTP id A1F182A5D for ; Thu, 15 Dec 2016 13:51:44 +0100 (CET) Received: from unknown [12.187.104.26] (EHLO webmail.solarflare.com) by nbfkord-smmo01.seg.att.com(mxl_mta-7.2.4-7) with ESMTP id 0e192585.2b9fa5007940.721101.00-2494.1504180.nbfkord-smmo01.seg.att.com (envelope-from ); Thu, 15 Dec 2016 12:51:44 +0000 (UTC) X-MXL-Hash: 585291e01fc196e4-bbede17e267324a481f8dd1bfd01fcda1d9e86f1 Received: from unknown [12.187.104.26] (EHLO webmail.solarflare.com) by nbfkord-smmo01.seg.att.com(mxl_mta-7.2.4-7) over TLS secured channel with ESMTP id ed192585.0.721095.00-2349.1504163.nbfkord-smmo01.seg.att.com (envelope-from ); Thu, 15 Dec 2016 12:51:43 +0000 (UTC) X-MXL-Hash: 585291df4885aca1-67b5c9aaeb3a63ab063047bef1a4c0c755dbb906 Received: from ocex03.SolarFlarecom.com (10.20.40.36) by ocex03.SolarFlarecom.com (10.20.40.36) with Microsoft SMTP Server (TLS) id 15.0.1044.25; Thu, 15 Dec 2016 04:51:39 -0800 Received: from opal.uk.solarflarecom.com (10.17.10.1) by ocex03.SolarFlarecom.com (10.20.40.36) with Microsoft SMTP Server (TLS) id 15.0.1044.25 via Frontend Transport; Thu, 15 Dec 2016 04:51:39 -0800 Received: from uklogin.uk.solarflarecom.com (uklogin.uk.solarflarecom.com [10.17.10.10]) by opal.uk.solarflarecom.com (8.13.8/8.13.8) with ESMTP id uBFCpcH0006312; Thu, 15 Dec 2016 12:51:38 GMT Received: from uklogin.uk.solarflarecom.com (localhost.localdomain [127.0.0.1]) by uklogin.uk.solarflarecom.com (8.13.8/8.13.8) with ESMTP id uBFCpceZ010431; Thu, 15 Dec 2016 12:51:38 GMT From: Andrew Rybchenko To: CC: Date: Thu, 15 Dec 2016 12:50:51 +0000 Message-ID: <1481806283-10387-1-git-send-email-arybchenko@solarflare.com> X-Mailer: git-send-email 1.8.2.3 In-Reply-To: <1480664691-26561-1-git-send-email-arybchenko@solarflare.com> References: <1480664691-26561-1-git-send-email-arybchenko@solarflare.com> MIME-Version: 1.0 Content-Type: text/plain X-AnalysisOut: [v=2.1 cv=I8xjMYUg c=1 sm=1 tr=0 a=8BlWFWvVlq5taO8ncb8nKg==] X-AnalysisOut: [:17 a=n5n_aSjo0skA:10 a=8NcrgI7jAP-HYUjwtdMA:9 a=87PQgcXWO] X-AnalysisOut: [eMdbYNq:21 a=O5D37YsPNmsoADnu:21] X-Spam: [F=0.2000000000; CM=0.500; S=0.200(2015072901)] X-MAIL-FROM: X-SOURCE-IP: [12.187.104.26] Subject: [dpdk-dev] [PATCH v2 00/32] Support more features in Solarflare PMD 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: , X-List-Received-Date: Thu, 15 Dec 2016 12:51:45 -0000 The patch series adds a number of features to Solarflare libefx-based PMD. Basically one patch per feature. The patches are grouped into one series since they touch nearby lines in either PMD feature list, or dev_ops structure, or documentation. So, patches cannot be applied in arbitrary order. --- v2: * Fix ICC and clang warnings * Slightly change sfc_tso_{alloc,free}_tsoh_objs() prototypes Andrew Rybchenko (17): net/sfc: implement MCDI logging callback net/sfc: support parameter to choose performance profile net/sfc: implement ethdev hook to get basic statistics net/sfc: support extended statistics net/sfc: support flow control settings get/set net/sfc: support link status change interrupt net/sfc: implement device operation to change MTU net/sfc: support link speed and duplex settings net/sfc: support checksum offloads on receive net/sfc: handle received packet type info provided by HW net/sfc: support callback to get receive queue information net/sfc: support Rx free threshold net/sfc: add callback to get RxQ pending descriptors count net/sfc: add RxQ descriptor done callback net/sfc: support scattered Rx DMA net/sfc: support deferred start of receive queues net/sfc/base: do not use enum type when values are bitmask Artem Andreev (1): net/sfc: support link up/down Ivan Malov (14): net/sfc: support promiscuous and all-multicast control net/sfc: support main (the first) MAC address change net/sfc: support multicast addresses list controls net/sfc: add callback to get transmit queue information net/sfc: support Tx free threshold net/sfc: support deferred start of transmit queues net/sfc: support VLAN offload on transmit path net/sfc: add basic stubs for RSS support on driver attach net/sfc: support RSS hash offload net/sfc: add callback to query RSS key and hash types config net/sfc: add callback to set RSS key and hash types config net/sfc: add callback to query RSS redirection table net/sfc: add callback to update RSS redirection table net/sfc: support firmware-assisted TSOv2 config/common_base | 1 + doc/guides/nics/features/sfc_efx.ini | 22 +- doc/guides/nics/sfc_efx.rst | 58 ++- drivers/net/sfc/Makefile | 4 + drivers/net/sfc/base/ef10_rx.c | 8 +- drivers/net/sfc/base/efx.h | 12 +- drivers/net/sfc/base/efx_rx.c | 8 +- drivers/net/sfc/efsys.h | 8 +- drivers/net/sfc/sfc.c | 126 ++++- drivers/net/sfc/sfc.h | 46 ++ drivers/net/sfc/sfc_ethdev.c | 893 ++++++++++++++++++++++++++++++++++- drivers/net/sfc/sfc_ev.c | 64 ++- drivers/net/sfc/sfc_ev.h | 2 + drivers/net/sfc/sfc_intr.c | 204 ++++++++ drivers/net/sfc/sfc_kvargs.c | 2 + drivers/net/sfc/sfc_kvargs.h | 12 + drivers/net/sfc/sfc_mcdi.c | 69 +++ drivers/net/sfc/sfc_port.c | 107 ++++- drivers/net/sfc/sfc_rx.c | 288 ++++++++++- drivers/net/sfc/sfc_rx.h | 16 + drivers/net/sfc/sfc_tso.c | 200 ++++++++ drivers/net/sfc/sfc_tweak.h | 3 + drivers/net/sfc/sfc_tx.c | 166 ++++++- drivers/net/sfc/sfc_tx.h | 41 +- 24 files changed, 2274 insertions(+), 86 deletions(-) create mode 100644 drivers/net/sfc/sfc_tso.c -- 2.5.5