From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 81A54A0530; Tue, 21 Jan 2020 03:07:44 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 60CD144C7; Tue, 21 Jan 2020 03:07:44 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 7A58E34F3 for ; Tue, 21 Jan 2020 03:07:43 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Jan 2020 18:07:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,344,1574150400"; d="scan'208";a="250110252" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga004.fm.intel.com with ESMTP; 20 Jan 2020 18:07:42 -0800 Received: from fmsmsx602.amr.corp.intel.com (10.18.126.82) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 20 Jan 2020 18:07:41 -0800 Received: from fmsmsx602.amr.corp.intel.com (10.18.126.82) by fmsmsx602.amr.corp.intel.com (10.18.126.82) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Mon, 20 Jan 2020 18:07:41 -0800 Received: from shsmsx105.ccr.corp.intel.com (10.239.4.158) by fmsmsx602.amr.corp.intel.com (10.18.126.82) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256) id 15.1.1713.5 via Frontend Transport; Mon, 20 Jan 2020 18:07:41 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.30]) by SHSMSX105.ccr.corp.intel.com ([169.254.11.28]) with mapi id 14.03.0439.000; Tue, 21 Jan 2020 10:07:40 +0800 From: "Tu, Lijuan" To: "Ma, LihongX" , "dts@dpdk.org" CC: "Ma, LihongX" Thread-Topic: [dts] [PATCH V1] framework/project_dpdk: set the RTE_EAL_IGB_UIO to y by default Thread-Index: AQHVz/0cg8Uh3H6FXEq9sdPymeTOj6f0Xx0w Date: Tue, 21 Jan 2020 02:07:39 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBAF2B3@SHSMSX101.ccr.corp.intel.com> References: <1579544550-12799-1-git-send-email-lihongx.ma@intel.com> In-Reply-To: <1579544550-12799-1-git-send-email-lihongx.ma@intel.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.2.0.6 dlp-reaction: no-action 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 V1] framework/project_dpdk: set the RTE_EAL_IGB_UIO to y by default 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" applied > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of lihong > Sent: Tuesday, January 21, 2020 2:23 AM > To: dts@dpdk.org > Cc: Ma, LihongX > Subject: [dts] [PATCH V1] framework/project_dpdk: set the > RTE_EAL_IGB_UIO to y by default >=20 > from dpdk-20.02-rc1, disable all kmods by default, but our dts will use i= t, so > re-enable it on framework. >=20 > Signed-off-by: lihong > --- > framework/project_dpdk.py | 2 ++ > 1 file changed, 2 insertions(+) >=20 > diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index > 7030abb..6cc0e67 100644 > --- a/framework/project_dpdk.py > +++ b/framework/project_dpdk.py > @@ -213,6 +213,8 @@ class DPDKdut(Dut): > if use_shared_lib =3D=3D 'true' and 'Virt' not in str(self): > self.send_expect("sed -i > 's/CONFIG_RTE_BUILD_SHARED_LIB=3Dn/CONFIG_RTE_BUILD_SHARED_LIB=3Dy/g > ' " > "config/common_base", '#') > + self.send_expect("sed -i > 's/CONFIG_RTE_EAL_IGB_UIO=3Dn/CONFIG_RTE_EAL_IGB_UIO=3Dy/g' " > + "config/common_base", '#') > build_install_dpdk =3D getattr(self, 'build_install_dpdk_%s' % > self.get_os_type()) > build_install_dpdk(target, extra_options) >=20 > -- > 2.7.4