DPDK usage discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: JeongHwan Kim <kjh.kernel.kr@gmail.com>
Cc: users@dpdk.org
Subject: Re: [dpdk-users] Attatching global memory pointer to mbuf and sending it to ethernet port.
Date: Thu, 2 Jan 2020 17:20:06 -0800	[thread overview]
Message-ID: <20200102172006.5b9eb3e4@hermes.lan> (raw)
In-Reply-To: <CAE-TMpA4CQEz5tMhGOGbUxZ7G8=Rr06SQBEiN-A9i3F-ugCZmg@mail.gmail.com>

On Fri, 3 Jan 2020 09:11:46 +0900
JeongHwan Kim <kjh.kernel.kr@gmail.com> wrote:

> Hi, everyone
> 
> I'd like to send the contents of global memory through ethernet port
> without memory copying to mbuf.
> So, I attached the pointer of global memory to mbuf's buffer address, but
> segfault occurs when I send it to ethernet port.
> I 'm using dpdk version 2019.11  and eal config with   "--iova-mode=pa"
> option.
> My hw platform is NXP ls2088a.
> 
> My routine is like this:
> 
> int buf_len = 100;
> struct rte_mbuf *m = rte_pktmbuf_alloc(mbuf_pool);
> struct rte_mbuf_ext_shared_info *shinfo =
> rte_pktmbuf_ext_shinfo_init_helper(buf_addr, &buf_len,  free_cb, fcb_arg);
> rte_pktmbuf_attach_extbuf(m, buf_addr, buf_iova, buf_len, shinfo);
> rte_pktmbuf_reset_headroom(m);
> ...
> and sent  "m"  to ethernet, the result was
> 
> Thread 4 "lcore-slave-1" received signal SIGSEGV, Segmentation fault.
> [Switching to Thread 0xffffbdb0c910 (LWP 10614)]
> 0x0000aaaaaab73f58 in eth_mbuf_to_sg_fd ()
> 
> The buffer was created as follows :
> user_mz = rte_memzone_reserve_aligned("user_mz", size, rte_socket_id(),
>                     RTE_MEMZONE_1GB|RTE_MEMZONE_IOVA_CONTIG,
>                     RTE_CACHE_LINE_SIZE);
> buf_addr = user_mz->addr;
> buf_iova = user_mz->iova;
> 
> Please give me a hint for this problem.
> Thanks in advance.
> 
> Jeong-Hwa Kim.

Are you using primary/secondary process model?
Is the memory zone being created in the primary process?

  reply	other threads:[~2020-01-03  1:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-03  0:11 JeongHwan Kim
2020-01-03  1:20 ` Stephen Hemminger [this message]
2020-01-03  2:01   ` JeongHwan Kim
2020-01-03  2:26     ` JeongHwan Kim
2020-01-03  4:52       ` JeongHwan Kim

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=20200102172006.5b9eb3e4@hermes.lan \
    --to=stephen@networkplumber.org \
    --cc=kjh.kernel.kr@gmail.com \
    --cc=users@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).