DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Xie, Huawei" <huawei.xie@intel.com>
To: "Tan, Jianfeng" <jianfeng.tan@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH] vhost: fix mmap failure as len not aligned with	hugepage size
Date: Wed, 11 Nov 2015 03:57:07 +0000	[thread overview]
Message-ID: <C37D651A908B024F974696C65296B57B4B183A1C@SHSMSX101.ccr.corp.intel.com> (raw)
In-Reply-To: <1446162713-130100-1-git-send-email-jianfeng.tan@intel.com>

On 10/30/2015 2:52 PM, Jianfeng Tan wrote:
> This patch fixes a bug under lower version linux kernel, mmap() fails when
Since which version Linux hugetlbfs changes the requirement of size
alignment?
> length is not aligned with hugepage size.
>
> Signed-off-by: Jianfeng Tan <jianfeng.tan@intel.com>
> ---
>  lib/librte_vhost/vhost_user/virtio-net-user.c | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/lib/librte_vhost/vhost_user/virtio-net-user.c b/lib/librte_vhost/vhost_user/virtio-net-user.c
> index a998ad8..641561c 100644
> --- a/lib/librte_vhost/vhost_user/virtio-net-user.c
> +++ b/lib/librte_vhost/vhost_user/virtio-net-user.c
> @@ -147,6 +147,10 @@ user_set_mem_table(struct vhost_device_ctx ctx, struct VhostUserMsg *pmsg)
>  		/* This is ugly */
>  		mapped_size = memory.regions[idx].memory_size +
>  			memory.regions[idx].mmap_offset;
> +
> +		alignment = get_blk_size(pmsg->fds[idx]);
> +		mapped_size = RTE_ALIGN_CEIL(mapped_size, alignment);
Probably we could remove the alignment of mapped size in free_mem_region
as well.
   RTE_ALIGN_CEIL(
        region[idx].mapped_size, alignment)
If we are not sure, leave it as it is.
> +
>  		mapped_address = (uint64_t)(uintptr_t)mmap(NULL,
>  			mapped_size,
>  			PROT_READ | PROT_WRITE, MAP_SHARED,
> @@ -154,9 +158,11 @@ user_set_mem_table(struct vhost_device_ctx ctx, struct VhostUserMsg *pmsg)
>  			0);
>  
>  		RTE_LOG(INFO, VHOST_CONFIG,
> -			"mapped region %d fd:%d to %p sz:0x%"PRIx64" off:0x%"PRIx64"\n",
> +			"mapped region %d fd:%d to:%p sz:0x%"PRIx64" "
> +			"off:0x%"PRIx64" align:0x%"PRIx64"\n",
>  			idx, pmsg->fds[idx], (void *)(uintptr_t)mapped_address,
> -			mapped_size, memory.regions[idx].mmap_offset);
> +			mapped_size, memory.regions[idx].mmap_offset,
> +			alignment);
>  
>  		if (mapped_address == (uint64_t)(uintptr_t)MAP_FAILED) {
>  			RTE_LOG(ERR, VHOST_CONFIG,
> @@ -166,7 +172,7 @@ user_set_mem_table(struct vhost_device_ctx ctx, struct VhostUserMsg *pmsg)
>  
>  		pregion_orig[idx].mapped_address = mapped_address;
>  		pregion_orig[idx].mapped_size = mapped_size;
> -		pregion_orig[idx].blksz = get_blk_size(pmsg->fds[idx]);
> +		pregion_orig[idx].blksz = alignment;
>  		pregion_orig[idx].fd = pmsg->fds[idx];
>  
>  		mapped_address +=  memory.regions[idx].mmap_offset;


  parent reply	other threads:[~2015-11-11  3:57 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-29 23:51 Jianfeng Tan
2015-11-06  1:23 ` Changchun Ouyang
2015-11-11  3:57 ` Xie, Huawei [this message]
2015-11-12  2:35   ` Tan, Jianfeng
2015-11-12  2:46     ` Xie, Huawei

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=C37D651A908B024F974696C65296B57B4B183A1C@SHSMSX101.ccr.corp.intel.com \
    --to=huawei.xie@intel.com \
    --cc=dev@dpdk.org \
    --cc=jianfeng.tan@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).