From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 2/2] ethtool: add new library to provide ethtool-alike APIs Date: Tue, 02 Jun 2015 14:38:06 +0200 Message-ID: <2827467.MLJnnY93Dx@xps13> References: <1432927612-12244-1-git-send-email-liang-min.wang@intel.com> <1432927612-12244-3-git-send-email-liang-min.wang@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Liang-Min Larry Wang Return-path: Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by dpdk.org (Postfix) with ESMTP id C4AFF2EDA for ; Tue, 2 Jun 2015 14:38:54 +0200 (CEST) Received: by wibut5 with SMTP id ut5so67868946wib.1 for ; Tue, 02 Jun 2015 05:38:54 -0700 (PDT) In-Reply-To: <1432927612-12244-3-git-send-email-liang-min.wang@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" 2015-05-29 15:26, Liang-Min Larry Wang: > adding a new library based upon ethdev APIs to provide API's that bear > the same functionality as ethtool_ops (linux/ethtool.h) and net_device_ops > (linux/netdevice.h). > > Signed-off-by: Liang-Min Larry Wang > --- > MAINTAINERS | 4 + > config/common_linuxapp | 5 + > lib/Makefile | 1 + > lib/librte_ethtool/Makefile | 56 +++++++ > lib/librte_ethtool/rte_ethtool.c | 155 +++++++++++++++++ > lib/librte_ethtool/rte_ethtool.h | 257 +++++++++++++++++++++++++++++ > lib/librte_ethtool/rte_ethtool_version.map | 18 ++ > mk/rte.app.mk | 1 + NACK for several reasons: - It's unclear what benefits this ethdev wrapper is bringing - There is no obvious interest (how is it supposed to be used?) - There is no update in the doc/ directory Other comments: - the patches are not versionned - the copyright starts in 2010 I'm curious to understand how renaming rte_eth_dev_set_mtu() to rte_ethtool_net_change_mtu() will help anyone.