DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>
To: Adrien Mazarguil <adrien.mazarguil@6wind.com>,
	"dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH 1/2] mempool: fix returned value on 64 bit after	counting objects
Date: Wed, 27 May 2015 00:43:27 +0000	[thread overview]
Message-ID: <2601191342CEEE43887BDE71AB97725821431E1D@irsmsx105.ger.corp.intel.com> (raw)
In-Reply-To: <1432571266-25840-1-git-send-email-adrien.mazarguil@6wind.com>



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Adrien Mazarguil
> Sent: Monday, May 25, 2015 5:28 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH 1/2] mempool: fix returned value on 64 bit after counting objects
> 
> rte_mempool_xmem_usage()'s return type is ssize_t which has the same
> architecture-dependent width as size_t but is signed.
> 
> On 64-bit architectures, returning a negative uint32_t value without casting
> to ssize_t first does not work as intended, the sign bit is lost and the
> returned value is garbage.
> 
> This commit fixes an assertion failure in testpmd on 64 bit architectures
> when combining --no-huge and --mp-anon outside of Xen Dom0:
> 
>  PANIC in mempool_anon_create():
>  line 170        assert "elt_num == mp->size" failed
> 
> Fixes: 148f963fb532 ("xen: core library changes")
> 
> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
> ---
>  lib/librte_mempool/rte_mempool.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_mempool/rte_mempool.c b/lib/librte_mempool/rte_mempool.c
> index 01972ba..d1a02a2 100644
> --- a/lib/librte_mempool/rte_mempool.c
> +++ b/lib/librte_mempool/rte_mempool.c
> @@ -361,7 +361,7 @@ rte_mempool_xmem_usage(void *vaddr, uint32_t elt_num, size_t elt_sz,
>  	if ((n = rte_mempool_obj_iter(vaddr, elt_num, elt_sz, 1,
>  			paddr, pg_num, pg_shift, mempool_lelem_iter,
>  			&uv)) != elt_num) {
> -		return (-n);
> +		return (-(ssize_t)n);
>  	}
> 
>  	uv = RTE_ALIGN_CEIL(uv, pg_sz);
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 2.1.0

  parent reply	other threads:[~2015-05-27  0:43 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-25 16:27 Adrien Mazarguil
2015-05-25 16:27 ` [dpdk-dev] [PATCH 2/2] mempool: fix pages computation to determine number of objects Adrien Mazarguil
2015-05-25 18:20   ` Ananyev, Konstantin
2015-05-26  9:14     ` Adrien Mazarguil
2015-05-27  0:41   ` [dpdk-dev] [PATCHv2] " Konstantin Ananyev
2015-05-27  7:52     ` Adrien Mazarguil
2015-05-27  8:40   ` [dpdk-dev] [PATCHv3] " Konstantin Ananyev
2015-05-29 15:58     ` Thomas Monjalon
2015-05-27  0:43 ` Ananyev, Konstantin [this message]
2015-05-29 15:57   ` [dpdk-dev] [PATCH 1/2] mempool: fix returned value on 64 bit after counting objects 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=2601191342CEEE43887BDE71AB97725821431E1D@irsmsx105.ger.corp.intel.com \
    --to=konstantin.ananyev@intel.com \
    --cc=adrien.mazarguil@6wind.com \
    --cc=dev@dpdk.org \
    /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).