[PATCH] mailmap: update contributor entry

2023-01-24 Thread Viacheslav Galaktionov
Signed-off-by: Viacheslav Galaktionov --- .mailmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 452267a567..0b0492b22d 100644 --- a/.mailmap +++ b/.mailmap @@ -1376,7 +1376,7 @@ Venkateshwarlu Nalla Venkat Koppula Venky Venkatesan Venky

[PATCH v2] mailmap: update contributor entry

2023-01-24 Thread Viacheslav Galaktionov
Signed-off-by: Viacheslav Galaktionov --- v2: Preserve the old email address to keep shortlog -se happy. .mailmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 452267a567..ecd7129c1f 100644 --- a/.mailmap +++ b/.mailmap @@ -1376,7 +1376,7

[PATCH] net/sfc: set max Rx packet length for representors

2023-09-11 Thread Viacheslav Galaktionov
Maximum packet length must be set to configure representor devices. Fixes: a62ec90522a6 ("net/sfc: add port representors infrastructure") Cc: sta...@dpdk.org Signed-off-by: Viacheslav Galaktionov Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_repr.c | 1 + 1 file changed, 1

[PATCH] net/sfc: account for data offset on Tx

2023-09-11 Thread Viacheslav Galaktionov
Signed-off-by: Viacheslav Galaktionov Reviewed-by: Ivan Malov Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_ef100_tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/sfc/sfc_ef100_tx.c b/drivers/net/sfc/sfc_ef100_tx.c index 4c2205f7a4..1b6374775f 100644 --- a/d

Re: [dpdk-dev] [PATCH] ethdev: keep count of allocated and used representor ranges

2021-07-04 Thread Viacheslav Galaktionov
Hello! On 2021-07-03 04:32, Xueming(Steven) Li wrote: + if (i == n_entries) + break; } out: + info->nb_ranges = i; Here info maybe NULL. Good catch, thanks for noticing! faf3bd901d..d2b27c351f 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib

CRC offload from application's POV

2022-10-11 Thread Viacheslav Galaktionov
Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application's point of view. If we enable the KEEP_CRC offload, then the NIC is supposed to preserve the CRC in the packet, that much is clear. But we checked

Re: CRC offload from application's POV

2022-10-11 Thread Viacheslav Galaktionov
On 10/11/22 15:36, Ferruh Yigit wrote: On 10/11/2022 11:48 AM, Viacheslav Galaktionov wrote: Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application's point of view. If we enable the K

Re: CRC offload from application's POV

2022-10-12 Thread Viacheslav Galaktionov
On 10/12/22 12:21, Ferruh Yigit wrote: On 10/12/2022 9:18 AM, Wu, Wenjun1 wrote: -Original Message- From: Ferruh Yigit Sent: Wednesday, October 12, 2022 4:07 PM To: Wu, Wenjun1 ; Viacheslav Galaktionov ; Su, Simei Cc: Denis Pryazhennikov ; dev@dpdk.org Subject: Re: CRC offload from

Re: [dpdk-dev] [PATCH] app/testpmd: add command to print representor info

2021-08-27 Thread Viacheslav Galaktionov
On 2021-08-27 11:20, Xueming(Steven) Li wrote: Thanks for getting this feature more complete! -Original Message- From: Andrew Rybchenko Sent: Friday, August 27, 2021 2:40 PM To: Xiaoyun Li Cc: dev@dpdk.org; Xueming(Steven) Li ; Viacheslav Galaktionov ; Andy Moreton Subject: [PATCH

Re: [dpdk-dev] [PATCH v2] ethdev: fix representor port ID search by name

2021-08-27 Thread Viacheslav Galaktionov
; Slava Ovsiienko ; NBU-Contact-Thomas Monjalon ; Ferruh Yigit Cc: dev@dpdk.org; Viacheslav Galaktionov ; Xueming(Steven) Li Subject: [PATCH v2] ethdev: fix representor port ID search by name From: Viacheslav Galaktionov Getting a list of representors from a representor does not make sense

Re: [dpdk-dev] [PATCH v4] ethdev: fix representor port ID search by name

2021-09-06 Thread Viacheslav Galaktionov
On 2021-09-01 17:55, Ferruh Yigit wrote: On 8/31/2021 5:06 PM, Andrew Rybchenko wrote: From: Viacheslav Galaktionov Getting a list of representors from a representor does not make sense. Instead, a parent device should be used. Which code is getting list of the representors? As far as I