From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id D15C7C388 for ; Thu, 4 Jun 2015 16:52:43 +0200 (CEST) Received: by wibdt2 with SMTP id dt2so52244665wib.1 for ; Thu, 04 Jun 2015 07:52:43 -0700 (PDT) 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:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=9YC1+yTAFGOCxvCWr2ln4Q9Osbj7LeSRgz/HRMdNQ4o=; b=OMqCbwH8o1oRuT7CQgIsSCKJ1Reif2CWgLRFKEvYClQywpWlDk6A+Juk2ENibiaIKL n9vgLfK82XZ9BhtKz9HER7AreoluaXGHnL2/1CWtWVb1bQAtynK/7laowfSAE3gb3jTc c2EyzfeexyBVV7qTdsa3Mw0F2Q/LJoC1GzpBcn29diJlZmsf5X73DHxIIwOhJ0m9wbbu 5j4u7V++hvadvLqHhHE67uc1SsLJrimAxoGn3mUdxjvdOFYpF/vC8HiMd7Snl8A73t/B JQF2NQy3aOgM8EQT6W8fGA1rizRuwWJpS+mRLnP3cQfYRM0ypdkdut6inp7yjA3b/4jC K9fw== X-Gm-Message-State: ALoCoQnXyxO98kENjv7JWBZm1c5HcHjjOGKEcztbU8u4sw+xhLHhMDAPN3zQTqcEkAcJLMU/XmL1 X-Received: by 10.194.59.79 with SMTP id x15mr54371731wjq.81.1433429563718; Thu, 04 Jun 2015 07:52:43 -0700 (PDT) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id hn7sm6100468wjc.16.2015.06.04.07.52.42 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 04 Jun 2015 07:52:42 -0700 (PDT) From: Thomas Monjalon To: Helin Zhang Date: Thu, 04 Jun 2015 16:51:50 +0200 Message-ID: <4522406.UrXfWM9kLK@xps13> Organization: 6WIND User-Agent: KMail/4.14.8 (Linux/4.0.4-2-ARCH; KDE/4.14.8; x86_64; ; ) In-Reply-To: <1433429007-4640-2-git-send-email-stephen@networkplumber.org> References: <1433429007-4640-1-git-send-email-stephen@networkplumber.org> <1433429007-4640-2-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 1/9] kni: fix whitespace 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: Thu, 04 Jun 2015 14:52:44 -0000 2015-06-04 07:43, Stephen Hemminger: > From: Stephen Hemminger > > Ran this code base through a script which: > - removes trailing whitespace > - removes space before tabs > - removes blank lines at end of file > > Signed-off-by: Stephen Hemminger > --- > .../linuxapp/kni/ethtool/igb/e1000_api.c | 1 - > .../linuxapp/kni/ethtool/igb/e1000_manage.c | 2 - > .../linuxapp/kni/ethtool/igb/e1000_mbx.c | 1 - > .../linuxapp/kni/ethtool/igb/e1000_nvm.c | 2 - > lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h | 2 +- > .../linuxapp/kni/ethtool/igb/igb_debugfs.c | 1 - > .../linuxapp/kni/ethtool/igb/igb_ethtool.c | 26 ++++++------ > lib/librte_eal/linuxapp/kni/ethtool/igb/igb_main.c | 2 +- > .../linuxapp/kni/ethtool/igb/igb_param.c | 3 +- > .../linuxapp/kni/ethtool/igb/igb_procfs.c | 46 +++++++++++----------- > .../linuxapp/kni/ethtool/igb/igb_regtest.h | 2 - > lib/librte_eal/linuxapp/kni/ethtool/igb/igb_vmdq.c | 1 - > lib/librte_eal/linuxapp/kni/ethtool/igb/kcompat.h | 4 +- > .../linuxapp/kni/ethtool/igb/kcompat_ethtool.c | 11 +++--- > .../linuxapp/kni/ethtool/ixgbe/ixgbe_82599.c | 1 - > .../linuxapp/kni/ethtool/ixgbe/ixgbe_api.c | 1 - > .../linuxapp/kni/ethtool/ixgbe/ixgbe_common.c | 1 - > .../linuxapp/kni/ethtool/ixgbe/ixgbe_main.c | 5 --- > .../linuxapp/kni/ethtool/ixgbe/ixgbe_sriov.h | 1 - > .../linuxapp/kni/ethtool/ixgbe/ixgbe_x540.c | 7 ++-- > .../linuxapp/kni/ethtool/ixgbe/kcompat.h | 2 +- Helin, do you approve patching kni base driver?