From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f46.google.com (mail-wm0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 900E32A5B for ; Sat, 5 Nov 2016 15:58:40 +0100 (CET) Received: by mail-wm0-f46.google.com with SMTP id f82so41631939wmf.1 for ; Sat, 05 Nov 2016 07:58:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:subject:date:message-id:user-agent:in-reply-to:references :mime-version:content-transfer-encoding; bh=/wK/q0UFpMr1iU4ffDRSuJ1j0q3NTSAkfZu20Z0rTEs=; b=GbuAu2F8Sqdic4OqctrEqWfTg3gWvItjyoTZJQ2LtbHMoBR+0Ytp6V1u4BFhWzd/KW +BGFLwGb1y+80LKJ9Fr0HN8BdOFsaHVsCMfJmCgqVqXdWTlGjd+heebBW3pOhh7v4HFQ Gh29WRjWuyayRCZqfJH04QI5WtamXEQNOlCsoyPWK4ycIm6PO1mFaWU3LrAuV0M8642Z o+AytK4tC7Egv+xoMHjMDKCj2/wMPSqhlDV7e5i0UXu/rj51brkGeXMvkj2rBiUWrfYw kPNGClXNbybGT71XRmh5hELMayLA9QWxZ14ZfdIlUtRWyZyUHGtyN/FWUPFXrNfeQTDL yvyA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=/wK/q0UFpMr1iU4ffDRSuJ1j0q3NTSAkfZu20Z0rTEs=; b=CustY+dOr/hLpyqeblRLZNWEKHdzk3PGa34eB73BM328aIgYmesje9fJEtKlV6Yv9Q /OvIwH7y8qlLqbvOe36+cxgQRqssIkAIsEaLqlD+D7GnZci8R2HtZKXV/6uxfEm+fe0J QqwQwOi2e2N4snHHDghKepcfBQjjNXBHRXRVq85oA+MajF0yDFcE75AgQcfDUU9esyVt 9AvRE8lhUWr9NQBD4reNs639x6o0WucMMg4yD9xZQg1ds24jdbzdjDSzje1I9BMgZ2O6 xozeXwSAfrZNaSd4hw8r/PSqDUIP/hRF3f1SRYKrWIHMBBxFxFYgzt+dj9laF4QEEFBe 7vsw== X-Gm-Message-State: ABUngve3etgC+ltVqWHER//yCO50u30su3X/hifBH4poFTCnHwnPvrIFKyy+Unw6yHjwIdal X-Received: by 10.28.132.202 with SMTP id g193mr2146731wmd.117.1478357920007; Sat, 05 Nov 2016 07:58:40 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id k74sm2634135wmd.18.2016.11.05.07.58.39 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 05 Nov 2016 07:58:39 -0700 (PDT) From: Thomas Monjalon To: dev@dpdk.org Date: Sat, 05 Nov 2016 15:58:38 +0100 Message-ID: <1695776.P9K2xFtafR@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1478103009-22581-1-git-send-email-thomas.monjalon@6wind.com> References: <1478103009-22581-1-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] scripts: fix quiet checkpatch 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: Sat, 05 Nov 2016 14:58:40 -0000 2016-11-02 17:10, Thomas Monjalon: > The commit e13fbc065c7f ("scripts: improve quiet checkpatch") > removed the line "total: 1 errors, 0 warnings, 7 lines checked" > from the quiet report. > Later, commit e7c38f471384 ("scripts: remove useless checkpatch notes") > removed few lines before "total:.*lines checked", so it was not working > well for quiet reporting. > > Better to keep the "total:" line in quiet mode and remove the other ones. > That's why the checkpatch.pl option --no-summary is not used anymore > by reverting the commit "improve quiet checkpatch". > > Signed-off-by: Thomas Monjalon Applied