DPDK usage discussions
 help / color / mirror / Atom feed
From: "Van Haaren, Harry" <harry.van.haaren@intel.com>
To: Victor Huertas <vhuertas@gmail.com>, "users@dpdk.org" <users@dpdk.org>
Subject: Re: [dpdk-users] running multiple pthreads in the same lcore id
Date: Fri, 16 Mar 2018 17:11:33 +0000	[thread overview]
Message-ID: <E923DB57A917B54B9182A2E928D00FA65E01002C@IRSMSX101.ger.corp.intel.com> (raw)
In-Reply-To: <CAGxG5chZaqSmnnQU6zNWKgTYr0H10DqySd=vG3_fSHebBtdJuQ@mail.gmail.com>

> From: users [mailto:users-bounces@dpdk.org] On Behalf Of Victor Huertas
> Sent: Friday, March 16, 2018 4:24 PM
> To: users@dpdk.org
> Subject: [dpdk-users] running multiple pthreads in the same lcore id
> 
> Hi all,

Hi Victor,

> I have developed a simple application which implements a network bridge. It
> captures packets in one port (port0), sends them into a software ring
> towards a second thread which receives them and sends them out via port1.
> 
> Same implementation is performed in the direction port1->port0. So there
> are 4 threads in total.
> 
> [port0]-->rx thread0 -->sw ring--> tx thread1-->[port 1]
> [port0]<--rx thread2 <--sw ring<-- tx thread3<--[port 1]
> 
> The thing is that this application is a first step of a functionality
> expansion by inserting additional threads (all connected with software
> rings) in the middle of the path so that it performs some packet
> manipulation before delivering them to the destination port:
> 
> [port0]-->rx thread0 -->sw ring--> add_thread 1-->sw ring--> add_thread
> N-->sw ring-> tx thread1-->[port 1]
> 
> The total number of threads can reach hundreds (much more than number of
> lcores) and I would like to assign every thread to a particular lcore, no
> mattering if more than one thread is being executed by the same lcore. This
> assignment would be done through an XML config file, which would be loaded
> at the very beginning of the application execution.

Understood.


> the rte_eal_remote_launch function at rte_launch.h can only launch one
> thread and attach it to one and unique lcore. So imagine that I want to
> launch another thread on the same lcore. DPDK doesn't seem to allow me to
> do that.

Correct, DPDK uses core pinning as this enables higher performance by reducing
overhead of context-switching between threads.


> I have read that using cgroups could make this possible but I haven't found
> an example application where DPDK and cgroups are used toghether.

I would advise to consider some form of "lightweight threads", which don't actually
perform a thread-switch, but instead run a different work function on the same
DPDK lcore.

DPDK provides infrastructure for doing this - which you might like to investigate.
The "service-cores" library enables running various functions on the same DPDK lcore.
Refer to the examples/service_cores code, and you can see different work() functions being
switched between DPDK lcores dynamically (aka, runtime movement of the work between threads).


> what is your recommendation on this as expert users? Is using cgroups an
> acceptable option?
> 
> Is DPDK contemplating in a future release to support natively multi pthread
> on one lcore on the rte_launch.h lib?

I'm not aware of any such ideas.

Hope the above helps! -Harry


> Thanks for your attention,
> 
> --
> Victor

  reply	other threads:[~2018-03-16 17:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-16 16:24 Victor Huertas
2018-03-16 17:11 ` Van Haaren, Harry [this message]
2018-03-16 18:20   ` Victor Huertas
     [not found] <855335141.522018.1521368574772.JavaMail.zimbra@viettel.com.vn>
2018-03-18 10:25 ` longtb5

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=E923DB57A917B54B9182A2E928D00FA65E01002C@IRSMSX101.ger.corp.intel.com \
    --to=harry.van.haaren@intel.com \
    --cc=users@dpdk.org \
    --cc=vhuertas@gmail.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).