From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id CFC391B00B for ; Fri, 5 Jan 2018 22:09:50 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 3768C21FDF; Fri, 5 Jan 2018 16:09:50 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 05 Jan 2018 16:09:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=pcGJy3UM6qV7OR+9VzoeAmAIvD kf83ARYTlETtoJmaE=; b=lBH9R1Qv77jL4ecRIaedjKwGREZTDWsXr6j0ajmqz3 b+/CHX2WvCkThGJpAwsjUvHBieIUq+PkOlKrPSfxWhzB38bRIi/7/LZtMRtsT4qf kQmjx42bmeiGe+paTy0ZdRXops1d0j4D82Irl1RVqRmesJJnJzio8g2aChhzLEiv k= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=pcGJy3 UM6qV7OR+9VzoeAmAIvDkf83ARYTlETtoJmaE=; b=FbHmLJRUyaE3jKLLB2+f7I FOp8FUR09E/6DbaD6Gbpb634Z9JesVH2MSM9K71J+tNn7eV9hIKcbylysLci6c0K z2sYNGcfPLsIULO/PT/pNPJ2HxAk9iIJz3L0WJElnfMHQF7kgJX494tboRmsTJOa gTHQyDSwKvN602Dw8HqkqD0FMcmnQK+AnNyEOTN2t/wYVNrvjoQmL19CJNnQNrC3 7vtzxlpAyM/7tDDNVqnhqkfCp3ZHRkSQH5Wum8RdpgtCKRFdBA0cWR3B+RsoAU/I a53mUxKMRGvXvpAtxnT51GisJHByOkb3PD8mwS7k1Z/+F6vqktgLQrXRvuMN96Wg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id DC5DF24741; Fri, 5 Jan 2018 16:09:49 -0500 (EST) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org Date: Fri, 05 Jan 2018 22:09:28 +0100 Message-ID: <5948881.4ayu02MO7x@xps> In-Reply-To: <20171214233221.30928-1-stephen@networkplumber.org> References: <20171214233221.30928-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH 0/5] remove double parenthesis X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jan 2018 21:09:51 -0000 15/12/2017 00:32, Stephen Hemminger: > Noticed in ethdev an obvious case of extra parenthesis so > went hunting for others as well. There seems to be some weird > coding standard that loves extra parenthesis (or developers > don't understand basic C precedence rules). > > Stephen Hemminger (5): > bnx2x: remove (redundant) parenthesis > kni: remove (redundant) parenthesis > ethdev: remove (redundant) parenthesis > distributor: remove (unnecessary) parenthesis > loadbalancer: remove (unnecessary) parenthesis Applied, thanks