DPDK patches and discussions
 help / color / mirror / Atom feed
From: Olivier MATZ <olivier.matz@6wind.com>
To: Vithal Mohare <vmohare@arubanetworks.com>, "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] mbuf pool and ring size...
Date: Tue, 22 Sep 2015 11:07:39 +0200	[thread overview]
Message-ID: <56011A5B.5080704@6wind.com> (raw)
In-Reply-To: <98DB008FA2AC6644B40AD8C766FAB271020CB4B3FE@BOREAL.arubanetworks.com>

Hi Vithal,

On 09/22/2015 07:10 AM, Vithal Mohare wrote:
> Hi,
> 
> While creating mbuf pool, suppose if mbuf-pool size passed to DPDK API is already pow-of-2  [ rte_mempool_create()-->rte_mempool_xmem_create()].  Then, noticed that, corresponding size of the ring created for this pool will be double the size of mbuf-pool.  This is because of below code snippet:
>                 rte_mempool_xmem_create(...) {
>                                 ....
> r = rte_ring_create(rg_name, rte_align32pow2(n+1), socket_id, rg_flags);  <<<<<<<< Notice that its 'n+1' here,  rte_align32pow2(n+1)
> ....
>                 }
> Question: why is this 'n+1'? Shouldn't this be just 'n'?

>From rte_ring_init() documentation:

 The ring size is set to *count*, which must be a power of two.
 The real usable ring size is *count-1* instead of *count* to
 differentiate a free ring from an empty ring.

Therefore, if the user asks for a mempool with 2048 elements,
the ring size has to be 4096.

>From mempool documentation:

 The optimum size (in terms of memory usage) for a mempool is
 when n is a power of two minus 1:  n = (2^q - 1).

Regards,
Olivier

      reply	other threads:[~2015-09-22  9:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-22  5:10 Vithal Mohare
2015-09-22  9:07 ` Olivier MATZ [this message]

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=56011A5B.5080704@6wind.com \
    --to=olivier.matz@6wind.com \
    --cc=dev@dpdk.org \
    --cc=vmohare@arubanetworks.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).