DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Liu, Jijiang" <jijiang.liu@intel.com>
To: "Zhang, Helin" <helin.zhang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] i40e: support xen domain0
Date: Wed, 20 Aug 2014 01:43:50 +0000	[thread overview]
Message-ID: <1ED644BD7E0A5F4091CF203DAFB8E4CC01D61B74@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1407996773-7055-1-git-send-email-helin.zhang@intel.com>

Acked-by:  Jijiang Liu <jijiang.liu@intel.com>

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Helin Zhang
> Sent: Thursday, August 14, 2014 2:13 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH] i40e: support xen domain0
> 
> i40e was failing to run in XEN domain0, as the physical memory for adminq
> DMA should be allocated and translated in a different way for XEN domain0.
> So
> rte_memzone_reserve_bounded() should be used for DMA memory allocation,
> and rte_mem_phy2mch() should be used for DMA memory address translation
> to support running i40e PMD in XEN domain0.
> 
> Signed-off-by: Helin Zhang <helin.zhang@intel.com>
> ---
>  lib/librte_pmd_i40e/i40e_ethdev.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/lib/librte_pmd_i40e/i40e_ethdev.c
> b/lib/librte_pmd_i40e/i40e_ethdev.c
> index 9ed31b5..7a823a0 100644
> --- a/lib/librte_pmd_i40e/i40e_ethdev.c
> +++ b/lib/librte_pmd_i40e/i40e_ethdev.c
> @@ -1515,14 +1515,23 @@
> i40e_allocate_dma_mem_d(__attribute__((unused)) struct i40e_hw *hw,
> 
>  	id++;
>  	snprintf(z_name, sizeof(z_name), "i40e_dma_%"PRIu64, id);
> +#ifdef RTE_LIBRTE_XEN_DOM0
> +	mz = rte_memzone_reserve_bounded(z_name, size, 0, 0, alignment,
> +							RTE_PGSIZE_2M);
> +#else
>  	mz = rte_memzone_reserve_aligned(z_name, size, 0, 0, alignment);
> +#endif
>  	if (!mz)
>  		return I40E_ERR_NO_MEMORY;
> 
>  	mem->id = id;
>  	mem->size = size;
>  	mem->va = mz->addr;
> +#ifdef RTE_LIBRTE_XEN_DOM0
> +	mem->pa = rte_mem_phy2mch(mz->memseg_id, mz->phys_addr); #else
>  	mem->pa = mz->phys_addr;
> +#endif
> 
>  	return I40E_SUCCESS;
>  }
> --
> 1.8.1.4

  parent reply	other threads:[~2014-08-20  1:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-14  6:12 Helin Zhang
2014-08-14  7:16 ` Zhan, Zhaochen
2014-08-20  1:43 ` Liu, Jijiang [this message]
2014-08-25 13:59   ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1ED644BD7E0A5F4091CF203DAFB8E4CC01D61B74@SHSMSX101.ccr.corp.intel.com \
    --to=jijiang.liu@intel.com \
    --cc=dev@dpdk.org \
    --cc=helin.zhang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).