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 1C4F3234 for ; Fri, 6 Feb 2015 06:43:08 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 05 Feb 2015 21:39:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,527,1418112000"; d="scan'208";a="648162187" Received: from pgsmsx107.gar.corp.intel.com ([10.221.44.105]) by orsmga001.jf.intel.com with ESMTP; 05 Feb 2015 21:43:07 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by PGSMSX107.gar.corp.intel.com (10.221.44.105) with Microsoft SMTP Server (TLS) id 14.3.195.1; Fri, 6 Feb 2015 13:43:05 +0800 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.197]) by shsmsx102.ccr.corp.intel.com ([169.254.2.62]) with mapi id 14.03.0195.001; Fri, 6 Feb 2015 13:43:05 +0800 From: "Tang, HaifengX" To: "Qiu, Michael" , "dts@dpdk.org" Thread-Topic: [dts] [PATCH] add x86_x32 abi target support Thread-Index: AQHQQcqDDN8RPBn/Y0S3nX7nXZlVP5zjGwaA Date: Fri, 6 Feb 2015 05:43:04 +0000 Message-ID: References: <1423188053-29367-1-git-send-email-haifengx.tang@intel.com> <533710CFB86FA344BFBF2D6802E60286CE2696@SHSMSX101.ccr.corp.intel.com> In-Reply-To: <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 05:43:09 -0000 You can find it dpdk code :config/defconfig_x86_x32_native-linuxapp-gcc When u have merged the patch into the code. http://dpdk.org/ml/archives/dev/2014-November/008111.html -----Original Message----- From: Qiu, Michael=20 Sent: Friday, February 06, 2015 1:05 PM To: Tang, HaifengX; dts@dpdk.org Subject: Re: [dts] [PATCH] add x86_x32 abi target support On 2/6/2015 10:02 AM, Haifeng Tang wrote: > From: tanghaix Better to explain, what x86_x32 abi target is, also better to add some com= mit log here. > > Signed-off-by: tanghaix > --- > framework/dut.py | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/framework/dut.py b/framework/dut.py index=20 > 9879335..1db6722 100644 > --- a/framework/dut.py > +++ b/framework/dut.py > @@ -195,6 +195,9 @@ class Dut(Crb): > arch_huge_pages =3D hugepages if hugepages > 0 else 1024 > elif self.architecture =3D=3D "i686": > arch_huge_pages =3D hugepages if hugepages > 0 else 512 > + #set huge pagesize for x86_x32 abi target > + elif self.architecture =3D=3D "x86_x32": Where you get "x86_x32"? from "uname"? Thanks, Michael > + arch_huge_pages =3D hugepages if hugepages > 0 else 256 > =20 > total_huge_pages =3D self.get_total_huge_pages() > =20