Re: [PATCH] ethdev: sync ethtool link modes with Linux 6.15

2025-06-29 Thread Thomas Monjalon
26/06/2025 17:13, Thomas Monjalon: > 26/06/2025 16:26, Stephen Hemminger: > > On Wed, 25 Jun 2025 15:42:02 +0200 > > Thomas Monjalon wrote: > > > > > diff --git a/lib/ethdev/ethdev_linux_ethtool.c > > > b/lib/ethdev/ethdev_linux_ethtool.c > > > index ec42d3054a..f508cdba6c 100644 > > > --- a/lib

Re: [PATCH] ethdev: sync ethtool link modes with Linux 6.15

2025-06-26 Thread Thomas Monjalon
26/06/2025 16:26, Stephen Hemminger: > On Wed, 25 Jun 2025 15:42:02 +0200 > Thomas Monjalon wrote: > > > diff --git a/lib/ethdev/ethdev_linux_ethtool.c > > b/lib/ethdev/ethdev_linux_ethtool.c > > index ec42d3054a..f508cdba6c 100644 > > --- a/lib/ethdev/ethdev_linux_ethtool.c > > +++ b/lib/ethdev

Re: [PATCH] ethdev: sync ethtool link modes with Linux 6.15

2025-06-26 Thread Stephen Hemminger
On Wed, 25 Jun 2025 15:42:02 +0200 Thomas Monjalon wrote: > diff --git a/lib/ethdev/ethdev_linux_ethtool.c > b/lib/ethdev/ethdev_linux_ethtool.c > index ec42d3054a..f508cdba6c 100644 > --- a/lib/ethdev/ethdev_linux_ethtool.c > +++ b/lib/ethdev/ethdev_linux_ethtool.c > @@ -17,8 +17,9 @@ > * >

[PATCH] ethdev: sync ethtool link modes with Linux 6.15

2025-06-25 Thread Thomas Monjalon
Update ethtool link modes with new ones added in Linux 6.15. These values won't change as they are part of the Linux uAPI. Note: extracting them avoids to depend on a kernel version. The parsing command is updated to generate padding accordingly to the alignments in the DPDK source file. Signed-o