From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 8FED92BA1 for ; Tue, 12 Jul 2016 02:31:17 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 11 Jul 2016 17:31:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,348,1464678000"; d="scan'208";a="1019836235" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga002.fm.intel.com with ESMTP; 11 Jul 2016 17:31:17 -0700 Received: from fmsmsx116.amr.corp.intel.com (10.18.116.20) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 11 Jul 2016 17:31:16 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx116.amr.corp.intel.com (10.18.116.20) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 11 Jul 2016 17:31:15 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.8]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.116]) with mapi id 14.03.0248.002; Tue, 12 Jul 2016 08:31:14 +0800 From: "Chen, WeichunX" To: Thomas Monjalon , Olivier Matz , "Xu, HuilongX" CC: "dev@dpdk.org" , "Xu, HuilongX" , "Cao, Waterman" , "Liu, Yuanhan" , "Liu, Yu Y" Thread-Topic: [PATCH 0/4] fix mempool creation with Xen Dom0 Thread-Index: AQHR213smEtJ3CNbL0KMTTqIvS2uD6AS8TEAgAEBaRA= Date: Tue, 12 Jul 2016 00:31:13 +0000 Message-ID: <2F49FDB6EFE3E047BF58B7A7DC05541F219379B4@SHSMSX101.ccr.corp.intel.com> References: <1468232428-24088-1-git-send-email-olivier.matz@6wind.com> <5170616.VubuxP6OQF@xps13> In-Reply-To: <5170616.VubuxP6OQF@xps13> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMGM1OTY3M2ItNzllMS00YjVkLWJjNDItZjBkNzA1OGM3YjEyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkZYbk5JeEdCdVFrdzE3TGxyU2NLQkF2MnpjQVRxM1ROWlwvUmtHVVwvTmNGYz0ifQ== 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: [dpdk-dev] [PATCH 0/4] fix mempool creation with Xen Dom0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2016 00:31:18 -0000 Add huilong -----Original Message----- From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]=20 Sent: Tuesday, July 12, 2016 1:10 AM To: Olivier Matz Cc: dev@dpdk.org; Xu, HuilongX ; Cao, Waterman ; Liu, Yuanhan ; Chen, WeichunX <= weichunx.chen@intel.com>; Liu, Yu Y Subject: Re: [PATCH 0/4] fix mempool creation with Xen Dom0 2016-07-11 12:20, Olivier Matz: > Since the recent mempool rework [1], Xen Dom0 is broken. > This series aims at fixing it. I think it should be integrated in=20 > 16.07. >=20 > As I don't have a full testing platform, any help in validating this=20 > patchset would be appreciated. >=20 > [1] http://www.dpdk.org/ml/archives/dev/2016-May/039229.html >=20 > Olivier Matz (4): > eal: fix typo in Xen Dom0 specific code > mbuf: set errno on pool creation error > eal: fix retrieval of phys address with Xen Dom0 > mempool: fix creation with Xen Dom0 Applied with an additional fix: xen: fix build as shared library =20 When building as shared library, the compiler complains for undefined reference to `rte_xen_mem_phy2mch' =20 The symbol rte_xen_mem_phy2mch was introduced in DPDK 2.2 and has been called in mempool recently via rte_mem_phy2mch. =20 Fixes: c042ba20674a ("mempool: rework support of Xen dom0")