From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cmailsend01.nm.naver.com (cmailsend01.nm.naver.com [125.209.208.210]) by dpdk.org (Postfix) with ESMTP id 63AEF8D37 for ; Wed, 30 Sep 2015 07:45:23 +0200 (CEST) Received: (qmail 28671 invoked by uid 100); 30 Sep 2015 05:45:21 -0000 Received: from 10.114.49.164 (HELO cweb02.nm.nhnsystem.com) (10.114.49.164) by cmailsend01.nm.naver.com with SMTP;30 Sep 2015 05:45:20 -0000 Date: Wed, 30 Sep 2015 14:45:20 +0900 (KST) From: =?UTF-8?B?7LWc7J217ISx?= To: dev@dpdk.org Message-ID: <751f5a8892d7d504dd843a1a26ac3ac@cweb02.nm.nhnsystem.com> MIME-Version: 1.0 Importance: normal X-Priority: 3 (Normal) X-Naver-CIP: 129.254.191.249 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] =?utf-8?q?_Is_there_any_example_application_to_used_DP?= =?utf-8?q?DK_packet_distributor_library=3F?= X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: =?UTF-8?B?7LWc7J217ISx?= List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 05:45:24 -0000 RGVhciBEUERLIGV4cGVydHMuCiAKSSBhbSBJY2stU3VuZyBDaG9pIGxpdmluZyBpbiBTb3V0aCBL b3JlYS4KIApJIGhhdmUgYSBxdWVzdGlvbiBhYm91dCBEUERL7JeQIHBhY2tldCBkaXN0cmlidXRv ciBsaWJyYXJ5LgogCklzIHRoZXJlIGFueSBleGFtcGxlIGFwcGxpY2F0aW9uIHRvIHVzZWQgRFBE SyBwYWNrZXQgZGlzdHJpYnV0b3IgbGlicmFyeT8KIApJIGFtIHRyeWluZyB0byBleHBlcmltZW50 IHNpbXBsZSBmdW5jdGlvbiB1c2luZyBEUERLIHBhY2tldCBkaXN0cmlidXRvciBsaWJyYXJ5Lgog CklmIEkgY2FuIHN0dWR5IGFuIGV4YW1wbGUgYXBwbGljYXRpb24gb2YgRFBESyBwYWNrZXQgZGlz dHJpYnV0b3IgbGlicmFyeSwgaXQgd291bGQgYmUgdmVyeSBoZWxwZnVsIGZvciBteSBleHBlcmlt ZW50LgogCkkgd2lsbCBhcHByZWNpYXRlIGlmIEkgY2FuIGJlIGdpdmVuIGFueSBleGFtcGxlIGFw cGxpY2F0aW9ucywgYWR2aWNlLCBhbmQgaW5mb3JtYXRpb24uCiAKVGhhbmsgeW91IHZlcnkgbXVj aC4KIApTaW5jZXJlbHkgWW91cnMsCiAKSWNrLVN1bmcgQ2hvaS4KIAo= >From remy.horton@intel.com Wed Sep 30 08:18:55 2015 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 571EE8D91 for ; Wed, 30 Sep 2015 08:18:55 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 29 Sep 2015 23:18:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,611,1437462000"; d="scan'208";a="816032255" Received: from rhorton-mobl.ger.corp.intel.com (HELO localhost.ir.intel.com) ([163.33.229.80]) by orsmga002.jf.intel.com with ESMTP; 29 Sep 2015 23:18:53 -0700 From: Remy Horton To: dev@dpdk.org Date: Wed, 30 Sep 2015 07:18:47 +0100 Message-Id: <1443593929-1804-1-git-send-email-remy.horton@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dpdk-dev] [PATCH v1 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, 30 Sep 2015 06:18:55 -0000 Further enhancements to the userspace ethtool implementation that was submitted in 2.1 and packaged as a self-contained sample application. Implements an internal rte_ethtool shim layer based on rte_ethdev API, along with a command prompt driven demonstration application. Remy Horton (2): l2fwd: Fix coding standard errors User-space ethtool sample application examples/l2fwd/Makefile | 2 +- examples/l2fwd/ethapp.c | 792 +++++++++++++++++++++++++++++++++++++++++++ examples/l2fwd/ethapp.h | 38 +++ examples/l2fwd/main.c | 70 ++-- examples/l2fwd/rte_ethtool.c | 354 +++++++++++++++++++ examples/l2fwd/rte_ethtool.h | 371 ++++++++++++++++++++ 6 files changed, 1600 insertions(+), 27 deletions(-) create mode 100644 examples/l2fwd/ethapp.c create mode 100644 examples/l2fwd/ethapp.h create mode 100644 examples/l2fwd/rte_ethtool.c create mode 100644 examples/l2fwd/rte_ethtool.h -- 1.9.3