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 4F43620F for ; Fri, 6 Feb 2015 06:05:27 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 05 Feb 2015 21:01:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,527,1418112000"; d="scan'208";a="648152801" Received: from kmsmsx152.gar.corp.intel.com ([172.21.73.87]) by orsmga001.jf.intel.com with ESMTP; 05 Feb 2015 21:05:25 -0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by KMSMSX152.gar.corp.intel.com (172.21.73.87) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 6 Feb 2015 13:05:23 +0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.192]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.46]) with mapi id 14.03.0195.001; Fri, 6 Feb 2015 13:05:23 +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 05:05:22 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E60286CE2696@SHSMSX101.ccr.corp.intel.com> References: <1423188053-29367-1-git-send-email-haifengx.tang@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 05:05:27 -0000 On 2/6/2015 10:02 AM, Haifeng Tang wrote:=0A= > From: tanghaix =0A= =0A= Better to explain, what x86_x32 abi target is, also better to add some=0A= commit log here.=0A= =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=0A= > index 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 1024= =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= =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=