DPDK usage discussions
 help / color / mirror / Atom feed
* [dpdk-users] Is it possible to use multiple ip fragmentation table?
@ 2018-11-02 21:44 Sungho Hong
  0 siblings, 0 replies; only message in thread
From: Sungho Hong @ 2018-11-02 21:44 UTC (permalink / raw)
  To: users

Hello DPDK experts,

I am trying to allocate multiple ip frag table for each rx-queue.
For example,

   for loop of rx-queues per logical cores

   if ((rxq->frag_tbl = *rte_ip_frag_table_create*(max_flow_num,
                        IP_FRAG_TBL_BUCKET_ENTRIES, max_flow_num,
frag_cycles,
                        socket)) == NULL) {
       return -1;
   }
    rxq->pool = *rte_pktmbuf_pool_create*(buf, nb_mbuf, MEMPOOL_CACHE_SIZE,
0, RTE_MBUF_DEFAULT_BUF_SIZE, socket);

   for loop end


However I could only create 1 fragmentation table and get the segmentation
fault when I try to allocate the second frag-table for the logical core.

Is it impossible to use multiple frag-table for DPDK?
Because I wanted to avoid a global fragmentation table due to
synchronization issues.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-11-02 21:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-02 21:44 [dpdk-users] Is it possible to use multiple ip fragmentation table? Sungho Hong

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).