DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>
To: "Alex Markuze (alex@weka.io)" <alex@weka.io>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] Aligned RX data.
Date: Mon, 13 Oct 2014 11:43:23 +0000	[thread overview]
Message-ID: <2601191342CEEE43887BDE71AB97725821393396@IRSMSX105.ger.corp.intel.com> (raw)
In-Reply-To: <2601191342CEEE43887BDE71AB9772582139336F@IRSMSX105.ger.corp.intel.com>



> -----Original Message-----
> From: Ananyev, Konstantin
> Sent: Monday, October 13, 2014 12:30 PM
> To: Ananyev, Konstantin
> Subject: FW: [dpdk-dev] Aligned RX data.
> 
> 
> 
> From: Alex Markuze [mailto:alex@weka.io]
> Sent: Monday, October 13, 2014 9:47 AM
> To: Ananyev, Konstantin
> Cc: dev@dpdk.org
> Subject: Re: [dpdk-dev] Aligned RX data.
> 
> Hi All,
> Is there a way to create a mempool such that all mbufs are aligned to X. lets say X is 512.
> 
> Thanks.
> 

For example something like that:

struct rte_mempool *
mempool_xz1_create(uint32_t elt_num, int32_t socket_id)
{
        struct rte_mempool *mp;
        const struct rte_memzone *mz;
        struct rte_mempool_objsz obj_sz;
        uint32_t flags, elt_size, total_size;
        size_t sz;
        phys_addr_t pa;
        void *va;

        /* mp element header_size==64B,  trailer_size==0. */
        flags = MEMPOOL_F_NO_SPREAD;

        /* to make total element size of mp 2K. */
        elt_size = 2048 - 64;

        total_size = rte_mempool_calc_obj_size(elt_size, flags, &obj_sz);
        sz = elt_num * total_size + 512;

        if ((mz = rte_memzone_reserve_aligned("xz1_obj", sz, socket_id,
                        0, 512)) == NULL)
                return (NULL);

        va = (char *)mz->addr + 512 - obj_sz.header_size;
        pa = mz->phys_addr + 512 - obj_sz.header_size;

        mp = rte_mempool_xmem_create("xz1", elt_num, elt_size,
                256, sizeof(struct rte_pktmbuf_pool_private),
                rte_pktmbuf_pool_init, NULL,
                rte_pktmbuf_init, NULL,
                socket_id, flags, va, &pa,
                MEMPOOL_PG_NUM_DEFAULT, MEMPOOL_PG_SHIFT_MAX);

        return (mp);
}

Each mbuf will be aligned on 512B boundary and  1856 (2K - 64B header - 128B mbuf).

Alternative way - is to provide your own element constructor instead of rte_pktmbuf_init() for mempool_create.
And inside it align buf_addr and buf_physaddr.
Though in that case you have to set RTE_MBUF_REFCNT=n in your config.
That's why I'd say it is a not recommended.

Konstantin

> 
> On Sat, Oct 11, 2014 at 5:04 PM, Alex Markuze <alex@weka.io> wrote:
> O.k, And how would I do that?
> I'm guessing there is something I can control in rte_pktmbuf_pool_init?
> I would appreciate If you could spare a word or two in the matter.
> 
> On Tue, Oct 7, 2014 at 7:11 PM, Ananyev, Konstantin <konstantin.ananyev@intel.com> wrote:
> 
> 
> > -----Original Message-----
> > From: Ananyev, Konstantin
> > Sent: Tuesday, October 07, 2014 5:03 PM
> > To: Ananyev, Konstantin
> > Subject: FW: [dpdk-dev] Aligned RX data.
> >
> >
> >
> > From: Alex Markuze [mailto:alex@weka.io]
> > Sent: Tuesday, October 07, 2014 4:52 PM
> > To: Ananyev, Konstantin
> > Cc: dev@dpdk.org
> > Subject: Re: [dpdk-dev] Aligned RX data.
> >
> > RTE_PKTMBUF_HEADROOM defines the headroom
> 
> Yes.
> 
> >this would be true only if the buff_start was aligned to 512 which is not.
> 
> As I said: " Make sure that your all your mbufs are aligned by 512".
> 
> Konstantin
> 
> >
> > On Tue, Oct 7, 2014 at 1:05 PM, Ananyev, Konstantin <konstantin.ananyev@intel.com> wrote:
> >
> >
> > > -----Original Message-----
> > > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Alex Markuze
> > > Sent: Tuesday, October 07, 2014 10:40 AM
> > > To: dev@dpdk.org
> > > Subject: [dpdk-dev] Aligned RX data.
> > >
> > > Hi , I'm trying to receive aligned packets from the wire.
> > > Meaning that for all received packets the pkt.data is always aligned to
> > > (512 -H).
> > >
> > > Looking at the pmds of ixgbe/vmxnet I see that the pmds call
> > > __rte_mbuf_raw_alloc and set the rx descriptor with a
> > > RTE_MBUF_DATA_DMA_ADDR_DEFAULT
> > > Instead of the more appropriate RTE_MBUF_DATA_DMA_ADDR.
> > >
> > > Do I need to modify each pmd I'm using to be able to receive aligned data?
> > Make sure that your all your mbufs are aligned by 512 and set in your config RTE_PKTMBUF_HEADROOM=512-H?
> >
> >
> > > Or have I missed something?
> > >
> > > Thanks
> 


  parent reply	other threads:[~2014-10-13 11:35 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-07  9:40 Alex Markuze
2014-10-07 10:05 ` Ananyev, Konstantin
2014-10-07 15:51   ` Alex Markuze
     [not found]     ` <2601191342CEEE43887BDE71AB9772582139126C@IRSMSX105.ger.corp.intel.com>
2014-10-07 16:11       ` Ananyev, Konstantin
2014-10-11 14:04         ` Alex Markuze
2014-10-13  8:47           ` Alex Markuze
     [not found]             ` <2601191342CEEE43887BDE71AB9772582139336F@IRSMSX105.ger.corp.intel.com>
2014-10-13 11:43               ` Ananyev, Konstantin [this message]
2014-10-13 15:20                 ` Alex Markuze

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=2601191342CEEE43887BDE71AB97725821393396@IRSMSX105.ger.corp.intel.com \
    --to=konstantin.ananyev@intel.com \
    --cc=alex@weka.io \
    --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).