From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 0/4] fix mempool creation with Xen Dom0 Date: Mon, 11 Jul 2016 19:09:44 +0200 Message-ID: <5170616.VubuxP6OQF@xps13> References: <1468232428-24088-1-git-send-email-olivier.matz@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, huilongx.xu@intel.com, waterman.cao@intel.com, yuanhan.liu@intel.com, weichunx.chen@intel.com, yu.y.liu@intel.com To: Olivier Matz Return-path: Received: from mail-wm0-f44.google.com (mail-wm0-f44.google.com [74.125.82.44]) by dpdk.org (Postfix) with ESMTP id A6316E6D for ; Mon, 11 Jul 2016 19:09:50 +0200 (CEST) Received: by mail-wm0-f44.google.com with SMTP id f126so98737948wma.1 for ; Mon, 11 Jul 2016 10:09:50 -0700 (PDT) In-Reply-To: <1468232428-24088-1-git-send-email-olivier.matz@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 16.07. > > As I don't have a full testing platform, any help in validating > this patchset would be appreciated. > > [1] http://www.dpdk.org/ml/archives/dev/2016-May/039229.html > > 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 When building as shared library, the compiler complains for undefined reference to `rte_xen_mem_phy2mch' The symbol rte_xen_mem_phy2mch was introduced in DPDK 2.2 and has been called in mempool recently via rte_mem_phy2mch. Fixes: c042ba20674a ("mempool: rework support of Xen dom0")