Re: Ethdev tracepoints optimization

2024-08-19 Thread Bruce Richardson
On Thu, Aug 15, 2024 at 03:32:50PM -0400, 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

Re: [PATCH v1 1/2] usertools/cpu_layout: update coding style

2024-08-19 Thread Robin Jarry
Anatoly Burakov, Aug 14, 2024 at 13:19: Update coding style: - make it PEP-484 compliant - address all flake8, mypy etc. warnings - use f-strings in place of old-style string interpolation - refactor printing to make the code more readable Signed-off-by: Anatoly Burakov --- Hi Anatoly, than

Re: [PATCH v1] dts: correct typos in conf.yaml

2024-08-19 Thread Luca Vizzarro
Nice one. Reviewed-by: Luca Vizzarro

Re: [PATCH v1 1/2] usertools/cpu_layout: update coding style

2024-08-19 Thread Burakov, Anatoly
On 8/19/2024 11:26 AM, Robin Jarry wrote: Anatoly Burakov, Aug 14, 2024 at 13:19: Update coding style: - make it PEP-484 compliant - address all flake8, mypy etc. warnings - use f-strings in place of old-style string interpolation - refactor printing to make the code more readable Signed-off-b

Re: [PATCH v3] net/gve: add support for TSO in DQO RDA

2024-08-19 Thread Tathagat Priyadarshi
On Sat, Aug 10, 2024 at 12:19 AM Tathagat Priyadarshi wrote: > > The patch intends on adding support for TSO in DQO RDA format. > > Signed-off-by: Tathagat Priyadarshi > Signed-off-by: Varun Lakkur Ambaji Rao > --- > drivers/net/gve/gve_tx_dqo.c | 26 +++--- > 1 file changed

Re: Ethdev tracepoints optimization

2024-08-19 Thread Ferruh Yigit
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 implement

Re: [PATCH] net/tap: avoid memcpy with NULL arg

2024-08-19 Thread Ferruh Yigit
On 8/14/2024 3:34 AM, Stephen Hemminger wrote: > Calling memcpy with a null pointer even if zero length is > undefined, so check if data_length is zero. > Problem reported by Gcc analyzer. > > Signed-off-by: Stephen Hemminger > Acked-by: Ferruh Yigit Applied to dpdk-next-net/main, thanks.

Re: [PATCH] net/tap: avoid memcpy with NULL arg

2024-08-19 Thread Ferruh Yigit
On 8/19/2024 12:03 PM, Ferruh Yigit wrote: > On 8/14/2024 3:34 AM, Stephen Hemminger wrote: >> Calling memcpy with a null pointer even if zero length is >> undefined, so check if data_length is zero. >> Problem reported by Gcc analyzer. >> Btw, how do you run the GCC analyzer? Is this something ca

Re: [PATCH v2 1/4] usertools/cpu_layout: update coding style

2024-08-19 Thread Robin Jarry
Anatoly Burakov, Aug 16, 2024 at 14:16: Update coding style: - make it PEP-484 compliant - address all flake8, mypy etc. warnings - use f-strings in place of old-style string interpolation - refactor printing to make the code more readable Signed-off-by: Anatoly Burakov --- usertools/cpu_layo

Re: [PATCH v2 2/4] usertools/cpu_layout: print out NUMA nodes

2024-08-19 Thread Robin Jarry
Anatoly Burakov, Aug 16, 2024 at 14:16: In traditional NUMA case, NUMA nodes and physical sockets were used interchangeably, but there are cases where there can be multiple NUMA nodes per socket, as well as all CPU's being assigned NUMA node 0 even in cases of multiple sockets. Use sysfs to print

Re: [PATCH v2 3/4] usertools/dpdk-hugepages.py: sort by NUMA node

2024-08-19 Thread Robin Jarry
Anatoly Burakov, Aug 16, 2024 at 14:16: Currently, the list of per-NUMA node hugepages is displayed in glob order, which can be arbitrary. Fix it to sort the glob order. Signed-off-by: Anatoly Burakov Hey Anatoly, I mean no offense to anyone but dpdk-hugepages.py is really ugly :( Is this s

Re: [PATCH v2 4/4] usertools/dpdk-devbind: print NUMA node

2024-08-19 Thread Robin Jarry
Anatoly Burakov, Aug 16, 2024 at 14:16: Currently, devbind does not print out any NUMA information, which makes figuring out which NUMA node device belongs to not trivial. Add printouts for NUMA information if NUMA support is enabled on the system. Signed-off-by: Anatoly Burakov --- Acked-by:

Re: Ethdev tracepoints optimization

2024-08-19 Thread Jerin Jacob
On Mon, Aug 19, 2024 at 4:13 PM Ferruh Yigit 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 o

Re: Ethdev tracepoints optimization

2024-08-19 Thread Bruce Richardson
On Mon, Aug 19, 2024 at 05:07:18PM +0530, Jerin Jacob wrote: > On Mon, Aug 19, 2024 at 4:13 PM Ferruh Yigit 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 ethd

RE: Ethdev tracepoints optimization

2024-08-19 Thread Morten Brørup
> From: Jerin Jacob [mailto:jerinjac...@gmail.com] > > On Mon, Aug 19, 2024 at 4:13 PM Ferruh Yigit 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 libr

Re: [PATCH v1] dts: correct typos in conf.yaml

2024-08-19 Thread Jeremy Spewock
Took me a few reads to even find the differences, haha. On Tue, Aug 13, 2024 at 1:17 PM Dean Marx wrote: > > correct docstring error in conf.yaml showing incorrect > example pci address for TG nodes > > Signed-off-by: Dean Marx Reviewed-by: Jeremy Spewock

Re: [PATCH v1 0/2] dts: port over checksum offload suite

2024-08-19 Thread Alex Chapman
Hi Dean, I went over the test suite and it looks really solid, but noticed you didn't update the `conf_yaml_schema.json`, is there any reason for this? On 8/16/24 15:20, Dean Marx wrote: Port over checksum hardware offload testing suite from old DTS. The suite verifies the ability of the PMD

Re: [PATCH v1 2/2] dts: checksum offload test suite

2024-08-19 Thread Alex Chapman
Hi Dean, Just though I would point out a few things. On 8/16/24 15:20, Dean Marx wrote: +def send_packet_and_verify( Should this not be `send_packets_and_verify(` as the argument is `packet_list`. +isL4 = any( +VerboseOLFlag.RTE_MBUF_F_RX_L4_CKSUM_GOOD in packet.ol

Re: [PATCH v17 5/5] dts: add API doc generation

2024-08-19 Thread Dean Marx
I ran into some dependency issues while testing that I figured I'd mention here. My build failed while running meson setup with the -Denable_docs=true option since I didn't have the sphinx-build module installed, then my compilation failed while running ninja -C because I didn't have a package call

Re: [PATCH v1 1/2] usertools/cpu_layout: update coding style

2024-08-19 Thread Stephen Hemminger
On Mon, 19 Aug 2024 11:36:44 +0200 "Burakov, Anatoly" wrote: > On 8/19/2024 11:26 AM, Robin Jarry wrote: > > Anatoly Burakov, Aug 14, 2024 at 13:19: > >> Update coding style: > >> > >> - make it PEP-484 compliant > >> - address all flake8, mypy etc. warnings > >> - use f-strings in place of old

Re: [PATCH v1 2/2] dts: checksum offload test suite

2024-08-19 Thread Dean Marx
> > > > +def send_packet_and_verify( > > Should this not be `send_packets_and_verify(` as the argument is > `packet_list`. > Yeah that would definitely make more sense, I'll change that in the next version. > > > +isL4 = any( > > +VerboseOLFlag.RTE_MBUF_F_RX_L4_CKSUM_GO

Re: [PATCH v1 0/2] dts: port over checksum offload suite

2024-08-19 Thread Dean Marx
On Mon, Aug 19, 2024 at 10:28 AM Alex Chapman wrote: > Hi Dean, > > I went over the test suite and it looks really solid, but noticed you > didn't update the `conf_yaml_schema.json`, is there any reason for this? > Good catch, I must've messed up my git commits earlier. Thanks

Re: [PATCH v17 5/5] dts: add API doc generation

2024-08-19 Thread Dean Marx
On Wed, Aug 14, 2024 at 11:05 AM Juraj Linkeš wrote: > The tool used to generate DTS API docs is Sphinx, which is already in > use in DPDK. The same configuration is used to preserve style with one > DTS-specific configuration (so that the DPDK docs are unchanged) that > modifies how the sidebar

Re: [PATCH v17 5/5] dts: add API doc generation

2024-08-19 Thread Dean Marx
On Mon, Aug 19, 2024 at 10:37 AM Dean Marx wrote: > I ran into some dependency issues while testing that I figured I'd mention > here. My build failed while running meson setup with the -Denable_docs=true > option since I didn't have the sphinx-build module installed, then my > compilation failed