From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 7E07DF11 for ; Wed, 16 Jan 2019 06:37:33 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2019 21:37:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,484,1539673200"; d="scan'208";a="310793784" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga006.fm.intel.com with ESMTP; 15 Jan 2019 21:37:32 -0800 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 15 Jan 2019 21:37:32 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.196]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.160]) with mapi id 14.03.0415.000; Wed, 16 Jan 2019 13:37:30 +0800 From: "Tu, Lijuan" To: Rami Rosen , "dts@dpdk.org" Thread-Topic: [dts] [PATCH] framework/crb: fix typos Thread-Index: AQHUrJ28QQOfKzouhUSCLs7T11nTG6WxYeKg Date: Wed, 16 Jan 2019 05:37:29 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BA03174@SHSMSX101.ccr.corp.intel.com> References: <1547534632-3990-1-git-send-email-ramirose@gmail.com> In-Reply-To: <1547534632-3990-1-git-send-email-ramirose@gmail.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.400.15 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMmYyOThiYjUtMmEzYi00NTdkLWFjOWUtNGU4ZmFkNTQ1NGRlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiQnR2N0ZmTlY4SWpJdE42NUJTczJkY2ZjWFUyN1wvaDdma2RITUJEZ1AxZHR6SW5iNEdrQzlqK3lpMkZQWFJiRzYifQ== x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dts] [PATCH] framework/crb: fix typos X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2019 05:37:34 -0000 Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Rami Rosen > Sent: Tuesday, January 15, 2019 2:44 PM > To: dts@dpdk.org > Cc: Rami Rosen > Subject: [dts] [PATCH] framework/crb: fix typos >=20 > This patch fixes the following typos in framework/crb.py: > useage->usage > addtional->additional >=20 > Signed-off-by: Rami Rosen > --- > framework/crb.py | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/framework/crb.py b/framework/crb.py index a6eb69e..e15fd77 > 100644 > --- a/framework/crb.py > +++ b/framework/crb.py > @@ -92,7 +92,7 @@ class Crb(object): >=20 > def create_session(self, name=3D""): > """ > - Create new session for addtional useage. This session will not e= nable log. > + Create new session for additional usage. This session will not e= nable log. > """ > logger =3D getLogger(name) > session =3D SSHConnection(self.get_ip_address(), > @@ -106,7 +106,7 @@ class Crb(object): >=20 > def destroy_session(self, session=3DNone): > """ > - Destroy addtional session. > + Destroy additional session. > """ > for save_session in self.sessions: > if save_session =3D=3D session: > @@ -552,7 +552,7 @@ class Crb(object): >=20 > cpuinfo =3D cpuinfo.split() > # haswell cpu on cottonwood core id not correct > - # need addtional coremap for haswell cpu > + # need additional coremap for haswell cpu > core_id =3D 0 > coremap =3D {} > for line in cpuinfo: > -- > 1.8.3.1