From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 548E72B98 for ; Wed, 5 Oct 2016 15:45:56 +0200 (CEST) Received: by mail-wm0-f42.google.com with SMTP id b201so210677425wmb.0 for ; Wed, 05 Oct 2016 06:45:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=7JAZT85hIYJhKafVd+0Fz7H+fXJC5rkFt6n2MEwn8Lk=; b=ewz0uhOMAtaEuZElR/3JLZ+rrcsYln4hicIzgpdD4FTHRjUho2UMeRIyISoNOrhbFH JBIN9xaqndfVKClh6shpmMWlZGvKM0mr5JJPKp4qhiI2Zy59jsaRihbtetoIJ9b5bJNk jDw/QfO+2V1ErGOGZkX3HVeewMH91maixFhPRYgvfMR6x+7L05n0nspBI71MF6gXEfxr 8FHFNsPol+19K9qclh0WKwIxfrBLeKxpKgpaRycGn2Lc7MMs5PE2UaIen8UqRuAjHa0g Yp2qtGO/mhFHKdFlRezL5oQnxVSkwVWXPENOfsTGYh+pwR2MTl83lIGJucCgg65+tgsl QLcA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=7JAZT85hIYJhKafVd+0Fz7H+fXJC5rkFt6n2MEwn8Lk=; b=Uc2QoRjrFgsOGKCOA2ErzzASPY2LtLwIaU+KoUjGe8jwzZXDTFI4nUbpvC2pkgE3fz ReYFI/DIH93dFXki9WKMaU7YIqpPVv495GV6bIIWmqhw5bokUy5lGeE2Whfr6iujW/3F tQsj4P5cO/h2wnkc7muRtFkMIgq7/KiXBM0jQyZG2M8wbqx0DQcTSm2ltSwQkxmeqAGz uo0tCV60jrPwEIs6UTbigIRKwdQJ9ceWPGvFz3WvmJ0P1iyn4cupnXREqtkOaNJRfPqZ qsN1aLyio/kLLbh5pSCVBoZoJOqzRKgCe8fvr2+0friFgzRziSfbtQf/RfJfsY6bVa4f 4OMw== X-Gm-Message-State: AA6/9Rn+KQy34f2XiW/BkZEoh+6IkjhWgnE6jqjq2+JPnhZfyP6Zkkm0lexch2Ijj42sYS+4 X-Received: by 10.28.54.39 with SMTP id d39mr9942641wma.11.1475675156013; Wed, 05 Oct 2016 06:45:56 -0700 (PDT) Received: from xps13.localnet (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id ce6sm9095169wjc.27.2016.10.05.06.45.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 05 Oct 2016 06:45:54 -0700 (PDT) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org, Remy Horton Date: Wed, 05 Oct 2016 15:45:52 +0200 Message-ID: <4379682.7FKqMqKq8R@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <28679b7e-7005-6d3e-4c1c-0f962f1eacbf@intel.com> References: <20160930101030.1178-1-ferruh.yigit@intel.com> <20160930101030.1178-2-ferruh.yigit@intel.com> <28679b7e-7005-6d3e-4c1c-0f962f1eacbf@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 2/2] kni: remove unnecessary ethtool files 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, 05 Oct 2016 13:45:56 -0000 2016-10-05 09:58, Remy Horton: > > On 30/09/2016 11:10, Ferruh Yigit wrote: > > Signed-off-by: Ferruh Yigit > > --- > > lib/librte_eal/linuxapp/kni/Makefile | 3 - > > .../linuxapp/kni/ethtool/igb/igb_debugfs.c | 28 -- > > .../linuxapp/kni/ethtool/igb/igb_hwmon.c | 260 --------------- > > .../linuxapp/kni/ethtool/igb/igb_procfs.c | 363 --------------------- > > 4 files changed, 654 deletions(-) > > delete mode 100644 lib/librte_eal/linuxapp/kni/ethtool/igb/igb_debugfs.c > > delete mode 100644 lib/librte_eal/linuxapp/kni/ethtool/igb/igb_hwmon.c > > delete mode 100644 lib/librte_eal/linuxapp/kni/ethtool/igb/igb_procfs.c > > Acked-by: Remy Horton Applied, thanks