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
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
Nice one.
Reviewed-by: Luca Vizzarro
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
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
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
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.
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
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
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
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
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:
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
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
> 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
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
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
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
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
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
>
>
> > +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
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
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
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
24 matches
Mail list logo