examples/ethtool: add user-space ethtool sample application
authorRemy Horton <remy.horton@intel.com>
Mon, 7 Dec 2015 13:48:59 +0000 (13:48 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 8 Dec 2015 02:00:42 +0000 (03:00 +0100)
commitbda68ab9d1e73bda4d500fa6977e3d713f483de8
tree61473f19065aeed8fe58e90505be926447831101
parent341a1e0664a1a55709af60dde6f76963de0d731d
examples/ethtool: add user-space ethtool sample application

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.

Signed-off-by: Remy Horton <remy.horton@intel.com>
13 files changed:
MAINTAINERS
doc/guides/rel_notes/release_2_2.rst
doc/guides/sample_app_ug/ethtool.rst [new file with mode: 0644]
doc/guides/sample_app_ug/index.rst
examples/Makefile
examples/ethtool/Makefile [new file with mode: 0644]
examples/ethtool/ethtool-app/Makefile [new file with mode: 0644]
examples/ethtool/ethtool-app/ethapp.c [new file with mode: 0644]
examples/ethtool/ethtool-app/ethapp.h [new file with mode: 0644]
examples/ethtool/ethtool-app/main.c [new file with mode: 0644]
examples/ethtool/lib/Makefile [new file with mode: 0644]
examples/ethtool/lib/rte_ethtool.c [new file with mode: 0644]
examples/ethtool/lib/rte_ethtool.h [new file with mode: 0644]