From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 8FCF08DA6 for ; Wed, 28 Oct 2015 12:12:24 +0100 (CET) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 28 Oct 2015 04:12:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,209,1444719600"; d="scan'208";a="837430773" Received: from rhorton-mobl.ger.corp.intel.com (HELO localhost.ir.intel.com) ([163.33.229.162]) by fmsmga002.fm.intel.com with ESMTP; 28 Oct 2015 04:12:22 -0700 From: Remy Horton To: dev@dpdk.org Date: Wed, 28 Oct 2015 11:12:14 +0000 Message-Id: <1446030736-11046-1-git-send-email-remy.horton@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1445875161-1808-1-git-send-email-remy.horton@intel.com> Subject: [dpdk-dev] [PATCH v3 0/2] User-space ethtool sample application 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: Wed, 28 Oct 2015 11:12:25 -0000 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/ * http://dpdk.org/dev/patchwork/patch/7340/ * http://dpdk.org/dev/patchwork/patch/8070/ * http://dpdk.org/dev/patchwork/patch/8067/ * http://dpdk.org/dev/patchwork/patch/8075/ * http://dpdk.org/dev/patchwork/patch/8074/ * http://dpdk.org/dev/patchwork/patch/8072/ * http://dpdk.org/dev/patchwork/patch/8071/ * http://dpdk.org/dev/patchwork/patch/8073/ * http://dpdk.org/dev/patchwork/patch/8068/ * http://dpdk.org/dev/patchwork/patch/8069/ v3: * Made use of enums for core state. * Fixed Makefile issue. * Fixed incorrect assumption with core ids. * Changed handling of more ports than cores. v2: * Replaced l2fwd base with simpler application. * Added ringparam functions. * Added documentation. Remy Horton (2): example: User-space ethtool sample application doc: add user-space ethtool sample app guide doc/guides/sample_app_ug/index.rst | 1 + doc/guides/sample_app_ug/keep_alive.rst | 191 +++++++ examples/ethtool/Makefile | 48 ++ examples/ethtool/ethtool-app/Makefile | 54 ++ examples/ethtool/ethtool-app/ethapp.c | 873 ++++++++++++++++++++++++++++++++ examples/ethtool/ethtool-app/ethapp.h | 41 ++ examples/ethtool/ethtool-app/main.c | 288 +++++++++++ examples/ethtool/lib/Makefile | 57 +++ examples/ethtool/lib/rte_ethtool.c | 421 +++++++++++++++ examples/ethtool/lib/rte_ethtool.h | 410 +++++++++++++++ 10 files changed, 2384 insertions(+) create mode 100644 doc/guides/sample_app_ug/keep_alive.rst create mode 100644 examples/ethtool/Makefile create mode 100644 examples/ethtool/ethtool-app/Makefile create mode 100644 examples/ethtool/ethtool-app/ethapp.c create mode 100644 examples/ethtool/ethtool-app/ethapp.h create mode 100644 examples/ethtool/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