From: Jerin Jacob <jerinjacobk@gmail.com>
To: Ferruh Yigit <ferruh.yigit@amd.com>
Cc: Adel Belkhiri <adel.belkhiri@gmail.com>,
dev@dpdk.org, Bruce Richardson <bruce.richardson@intel.com>,
Jerin Jacob Kollanukkaran <jerinj@marvell.com>
Subject: Re: Ethdev tracepoints optimization
Date: Mon, 19 Aug 2024 17:07:18 +0530 [thread overview]
Message-ID: <CALBAE1O2igzmVmntjVdQJgNTapjiD1YKwBdN1HVaT8YsL9mqPQ@mail.gmail.com> (raw)
In-Reply-To: <0cb77372-83b3-49f0-89bb-5c641e0522a6@amd.com>
On Mon, Aug 19, 2024 at 4:13 PM Ferruh Yigit <ferruh.yigit@amd.com> wrote:
>
> On 8/15/2024 8:32 PM, Adel Belkhiri wrote:
> > Hi DPDK Community,
> >
> > I am currently working on developing performance analyses for
> > applications using the ethdev library. These analyses are being
> > implemented in Trace Compass, an open-source performance analyzer. One
> > of the views I’ve implemented shows the rate of traffic received or sent
> > by an ethernet port, measured in packets per second. However, I've
> > encountered an issue with the lib.ethdev.rx.burst event, which triggers
> > even when no packets are polled, leading to a significant number of
> > irrelevant events in the trace. This becomes problematic as these
> > "empty" events can overwhelm the tracer buffer, potentially causing the
> > loss of more critical events due to their high frequency.
> >
> > To address this, I've modified the DPDK code in lib/ethdev/rte_ethdev.h
> > to add a conditional statement that only triggers the event when nb_rx >
> > 0. My question to the community is whether there are use cases where an
> > "empty" lib.ethdev.rx.burst event could be useful. If not, would there
> > be interest in submitting a patch with this modification?
> >
>
> Tracepoint is good way to get frequency of the calls, so I believe there
> can be value of getting empty burst calls too.
>
> But your usecase also a valid one. I wonder if it works to have separate
> trace calls, for empty and non-empty ones, and how this additional
> branching impacts the performance, at least branch should be wrapped
> with 'RTE_ENABLE_TRACE_FP' macro to not impact non-tracing usage.
CTF(Common trace format) post processing tools can check the value for
each field and timestap.
So it will easy to skip the ones with no packet for this case.
>
next prev parent reply other threads:[~2024-08-19 11:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-15 19:32 Adel Belkhiri
2024-08-16 12:11 ` Jerin Jacob
2024-08-19 9:25 ` Bruce Richardson
2024-08-19 10:43 ` Ferruh Yigit
2024-08-19 11:37 ` Jerin Jacob [this message]
2024-08-19 12:01 ` Bruce Richardson
2024-08-19 12:20 ` Morten Brørup
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=CALBAE1O2igzmVmntjVdQJgNTapjiD1YKwBdN1HVaT8YsL9mqPQ@mail.gmail.com \
--to=jerinjacobk@gmail.com \
--cc=adel.belkhiri@gmail.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=ferruh.yigit@amd.com \
--cc=jerinj@marvell.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).