From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 9F377374F for ; Wed, 19 Jul 2017 12:45:41 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jul 2017 03:45:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.40,380,1496127600"; d="scan'208";a="1197174283" Received: from irsmsx153.ger.corp.intel.com ([163.33.192.75]) by fmsmga002.fm.intel.com with ESMTP; 19 Jul 2017 03:45:39 -0700 Received: from irsmsx112.ger.corp.intel.com (10.108.20.5) by IRSMSX153.ger.corp.intel.com (163.33.192.75) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 19 Jul 2017 11:45:38 +0100 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.242]) by irsmsx112.ger.corp.intel.com ([169.254.1.42]) with mapi id 14.03.0319.002; Wed, 19 Jul 2017 11:45:38 +0100 From: "Trahe, Fiona" To: "Bie, Tiwei" , "dev@dpdk.org" CC: "thomas@monjalon.net" Thread-Topic: [dpdk-dev] [PATCH] all: refactor coding style Thread-Index: AQHTAG8MKXsxQEKPMku7Dnhw7m/O8KJa9zIw Date: Wed, 19 Jul 2017 10:45:37 +0000 Message-ID: <348A99DA5F5B7549AA880327E580B43589238850@IRSMSX101.ger.corp.intel.com> References: <1500455196-182365-1-git-send-email-tiwei.bie@intel.com> In-Reply-To: <1500455196-182365-1-git-send-email-tiwei.bie@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTAxZjAwZWQtMTk0My00OTU0LTkzMWUtOTIxODUwNDkzMDlkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IjVXVkd6TnBPRTVqMFo4Z3d3ZG1KTUFLa2tvTG81VytJMzE4ZnFkYllrMlk9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] all: refactor coding style 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: Wed, 19 Jul 2017 10:45:42 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Tiwei Bie > Sent: Wednesday, July 19, 2017 10:07 AM > To: dev@dpdk.org > Cc: thomas@monjalon.net > Subject: [dpdk-dev] [PATCH] all: refactor coding style >=20 > Remove the unwanted spaces before `;' across DPDK source code > by below one-liner with some minor manual refinements. >=20 > find . -name '*.[ch]' | xargs sed -i 's/\([^;(]\) \+;/\1;/g' >=20 > The fixes for cmdline library are skipped, because it has a > different coding style. It deserves a separate cleanup if > necessary. The fixes for drivers' base code are also skipped > to keep the base code intact. >=20 > Signed-off-by: Tiwei Bie Acked-by: Fiona Trahe