From mboxrd@z Thu Jan 1 00:00:00 1970 From: Remy Horton Subject: [PATCH v2 0/2] User-space ethtool sample application Date: Mon, 26 Oct 2015 15:59:19 +0000 Message-ID: <1445875161-1808-1-git-send-email-remy.horton@intel.com> References: <1443593929-1804-1-git-send-email-remy.horton@intel.com> To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id AC1035A71 for ; Mon, 26 Oct 2015 16:59:51 +0100 (CET) In-Reply-To: <1443593929-1804-1-git-send-email-remy.horton@intel.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" Further enhancements to the userspace ethtool implementation that was submitted in 2.1 and packaged as a self-contained sample application. Implements an rte_ethtool shim layer based on rte_ethdev API, along with a command prompt driven demonstration application. This patchset depends on http://dpdk.org/dev/patchwork/patch/6563/ v2: * Replaced l2fwd base with simpler application. * Added ringparam functions. * Added documentation. Remy Horton (2): example: User-space ethtool sample application doc: User-space ethtool sample application doc/guides/sample_app_ug/ethtool.rst | 265 +++++++++++ doc/guides/sample_app_ug/index.rst | 1 + examples/ethtool/Makefile | 48 ++ examples/ethtool/app/Makefile | 54 +++ examples/ethtool/app/ethapp.c | 870 +++++++++++++++++++++++++++++++++++ examples/ethtool/app/ethapp.h | 40 ++ examples/ethtool/app/main.c | 281 +++++++++++ examples/ethtool/lib/Makefile | 57 +++ examples/ethtool/lib/rte_ethtool.c | 421 +++++++++++++++++ examples/ethtool/lib/rte_ethtool.h | 410 +++++++++++++++++ 10 files changed, 2447 insertions(+) create mode 100644 doc/guides/sample_app_ug/ethtool.rst create mode 100644 examples/ethtool/Makefile create mode 100644 examples/ethtool/app/Makefile create mode 100644 examples/ethtool/app/ethapp.c create mode 100644 examples/ethtool/app/ethapp.h create mode 100644 examples/ethtool/app/main.c create mode 100644 examples/ethtool/lib/Makefile create mode 100644 examples/ethtool/lib/rte_ethtool.c create mode 100644 examples/ethtool/lib/rte_ethtool.h -- 1.9.3