[PATCH] dpdk-testpmd: call get/set link settings interface

2024-04-04 Thread Marek Pazdan
Add cmdline options for utilizing get/set link settings API added before in patch this patch depends on. Purpose of this change is to provide mechanism for testing link settings interface API. Signed-off-by: Marek Pazdan --- Depends-on: patch-139082 ("lib: add get/set link settings inte

Re: [PATCH] lib: add get/set link settings interface

2024-04-04 Thread Marek Pazdan
py of requested configuration: `memcpy(dev_conf, &dev->data->dev_conf, sizeof(struct rte_eth_conf));` On Wed, Apr 3, 2024 at 7:23 PM Stephen Hemminger wrote: > On Wed, 3 Apr 2024 16:59:08 +0200 > Marek Pazdan wrote: > > > Hi Thomas, > > > > Information like

Re: [PATCH] lib: add get/set link settings interface

2024-04-03 Thread Marek Pazdan
gh to dpdk will be useful I think. I've 2 more patches dependent on the one we are discussing now, but I need patchwork id to add dependency information. I need moderator approval for the current patch. Regards, Marek On Wed, Apr 3, 2024 at 4:48 PM Thomas Monjalon wrote: > 03/04/2024

[PATCH] lib: add get/set link settings interface

2024-04-03 Thread Marek Pazdan
NKSETTINGS). There are use cases where physical interface is passthrough to dpdk driver and is not available from system level. Information provided by ioctl carries information useful for link auto negotiation settings among others. Signed-off-by: Marek Pazdan --- .mailmap |

[PATCH] lib: add get/set link settings interface

2024-04-03 Thread Marek Pazdan
NKSETTINGS). There are use cases where physical interface is passthrough to dpdk driver and is not available from system level. Information provided by ioctl carries information useful for link auto negotiation settings among others. Signed-off-by: Marek Pazdan --- .mailmap |

[PATCH] igc/ixgbe: add get/set link settings interface

2024-03-27 Thread Marek Pazdan
sting tool for newly implemtented interface functions. Signed-off-by: Marek Pazdan --- .mailmap | 1 + app/test-pmd/cmdline.c | 9 + app/test-pmd/cmdline_settings.c| 516 + app/test-pmd/cmdline_settings.h| 14 + ap