From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 489741F7 for ; Fri, 6 Feb 2015 07:23:51 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP; 05 Feb 2015 22:17:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,527,1418112000"; d="scan'208";a="523456654" Received: from pgsmsx108.gar.corp.intel.com ([10.221.44.103]) by orsmga003.jf.intel.com with ESMTP; 05 Feb 2015 22:16:02 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX108.gar.corp.intel.com (10.221.44.103) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 6 Feb 2015 14:23:47 +0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.192]) by shsmsx102.ccr.corp.intel.com ([169.254.2.62]) with mapi id 14.03.0195.001; Fri, 6 Feb 2015 14:23:47 +0800 From: "Qiu, Michael" To: "Tang, HaifengX" , "dts@dpdk.org" Thread-Topic: [dts] [PATCH] add x86_x32 abi target support Thread-Index: AQHQQbDqGxi6ZqoG8Uix9ceSV108RA== Date: Fri, 6 Feb 2015 06:23:46 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E60286CE3845@SHSMSX101.ccr.corp.intel.com> References: <1423188053-29367-1-git-send-email-haifengx.tang@intel.com> <533710CFB86FA344BFBF2D6802E60286CE2696@SHSMSX101.ccr.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: 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] add x86_x32 abi target support 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: Fri, 06 Feb 2015 06:23:51 -0000 On 2015/2/6 13:43, Tang, HaifengX wrote:=0A= > You can find it dpdk code :config/defconfig_x86_x32_native-linuxapp-gcc= =0A= > When u have merged the patch into the code.=0A= > http://dpdk.org/ml/archives/dev/2014-November/008111.html=0A= =0A= What I mean is you could explain it your commit log=0A= =0A= =0A= >=0A= > -----Original Message-----=0A= > From: Qiu, Michael =0A= > Sent: Friday, February 06, 2015 1:05 PM=0A= > To: Tang, HaifengX; dts@dpdk.org=0A= > Subject: Re: [dts] [PATCH] add x86_x32 abi target support=0A= >=0A= > On 2/6/2015 10:02 AM, Haifeng Tang wrote:=0A= >> From: tanghaix =0A= > Better to explain, what x86_x32 abi target is, also better to add some c= ommit log here.=0A= >=0A= >=0A= >> Signed-off-by: tanghaix =0A= >> ---=0A= >> framework/dut.py | 3 +++=0A= >> 1 file changed, 3 insertions(+)=0A= >>=0A= >> diff --git a/framework/dut.py b/framework/dut.py index =0A= >> 9879335..1db6722 100644=0A= >> --- a/framework/dut.py=0A= >> +++ b/framework/dut.py=0A= >> @@ -195,6 +195,9 @@ class Dut(Crb):=0A= >> arch_huge_pages =3D hugepages if hugepages > 0 else 102= 4=0A= >> elif self.architecture =3D=3D "i686":=0A= >> arch_huge_pages =3D hugepages if hugepages > 0 else 512= =0A= >> + #set huge pagesize for x86_x32 abi target=0A= >> + elif self.architecture =3D=3D "x86_x32":=0A= > Where you get "x86_x32"? from "uname"?=0A= >=0A= > Thanks,=0A= > Michael=0A= >=0A= >=0A= >> + arch_huge_pages =3D hugepages if hugepages > 0 else 256= =0A= >> =0A= >> total_huge_pages =3D self.get_total_huge_pages()=0A= >> =0A= >=0A= =0A=