[PATCH v1] net/idpf: avoid truncation of constant value

2025-04-09 Thread Praveen Shetty
the truncation. Signed-off-by: Praveen Shetty --- drivers/net/intel/idpf/base/virtchnl2.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/net/intel/idpf/base/virtchnl2.h b/drivers/net/intel/idpf/base/virtchnl2.h index 3285a2b674..cf010c0504 100644 --- a/drivers/net/intel/idpf/base

[PATCH v1] common/idpf: fix heap use after free error

2025-01-13 Thread Praveen Shetty
: fb4ac04e9bfa ("common/idpf: introduce common library") Cc: sta...@dpdk.org Signed-off-by: Praveen Shetty --- drivers/common/idpf/base/idpf_controlq.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/common/idpf/base/idpf_controlq.c b/drivers/common

[PATCH v1] net/cpfl: fix IO port forwarding issue

2024-11-08 Thread Praveen Shetty
ned-off-by: Praveen Shetty --- drivers/net/cpfl/cpfl_flow_engine_fxp.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/net/cpfl/cpfl_flow_engine_fxp.c b/drivers/net/cpfl/cpfl_flow_engine_fxp.c index 2c75ea6577..0eb7cdf1a3 100644 --- a/drivers/net/cpfl/cpfl_flow_engine_fxp.c +++

[PATCH v1] maintainers: add maintainer for Intel MEV drivers

2024-10-25 Thread Praveen Shetty
Add Praveen Shetty as official maintainer for Intel IDPF and CPFL drivers in the MAINTAINERS file. Signed-off-by: Praveen Shetty --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 6ea7850093..3d626ae7a0 100644 --- a/MAINTAINERS +++ b

[PATCH v3] net/cpfl: fix cpfl parser issue

2024-08-23 Thread Praveen Shetty
CPFL parser was incorrectly parsing the mask value of the next_proto_id field from recipe.json file as a string instead of unsigned integer. Fixes: 41f20298ee8c ("net/cpfl: parse flow offloading hint from JSON") Cc: sta...@dpdk.org Signed-off-by: Praveen Shetty --- v2: * Fixed CI

[PATCH v2] net/cpfl: fix cpfl parser issue

2024-07-31 Thread Praveen Shetty
CPFL parser was incorrectly parsing the mask value of the next_proto_id field from recipe.json file as a string instead of unsigned integer. Fixes: 41f20298ee8c ("net/cpfl: parse flow offloading hint from JSON") Cc: sta...@dpdk.org Signed-off-by: Praveen Shetty --- v2: * Fixed

[PATCH v1] net/cpfl: fix invalid action types

2024-07-30 Thread Praveen Shetty
. Fixes: 441e777b85f1 ("net/cpfl: support represented port action") Cc: sta...@dpdk.org Signed-off-by: Praveen Shetty --- drivers/net/cpfl/cpfl_flow_engine_fxp.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/drivers/net/cpfl/cpfl_flow_engine_fxp.c b/driver

[PATCH v1] net/cpfl: fix cpfl parser issue

2024-07-29 Thread Praveen Shetty
CPFL parser was incorrectly parsing the mask value of the next_proto_id field as a string instead of unsigned integer. This patch will fix this issue. Fixes: 41f20298ee8c ("net/cpfl: parse flow offloading hint from JSON") Cc: sta...@dpdk.org Signed-off-by: Praveen Shetty --- driver

[dpdk-dev] [PATCH v3] examples/ipsec-secgw: fix negative argument passing

2020-05-06 Thread Praveen Shetty
ector") Cc: praveen.she...@intel.com Signed-off-by: Praveen Shetty Acked-by: Lukasz Wojciechowski --- v3 changes: fixed typo in commit message. examples/ipsec-secgw/sa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/ipsec-secgw/sa.c b/examples/ipsec-secgw/sa.c

[dpdk-dev] [PATCH v2] examples/ipsec-secgw: fix negative argument passing

2020-05-06 Thread Praveen Shetty
ector") Cc: praveen.she...@intel.com Signed-off-by: Praveen Shetty Acked-by: Lukasz Wojciechowski --- v2 changes: changed commit headline and rephrased commit message. examples/ipsec-secgw/sa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/ipsec-secgw/sa.c b/examp

[dpdk-dev] [PATCH v1] examples/ipsec-secgw: resolve coverity issue

2020-05-06 Thread Praveen Shetty
error message again using strerror. This patch will remove the unnecessary calling of strerror function to fix the coverity issue. Coverity issue: 357691 Fixes: 6738c0a95695 ("examples/ipsec-secgw: support flow director") Cc: praveen.she...@intel.com Signed-off-by: Praveen Shetty --- exam

[dpdk-dev] [PATCH v6] examples/ipsec-secgw: support flow director feature

2020-04-16 Thread Praveen Shetty
of to a specified . Signed-off-by: Praveen Shetty Acked-by: Akhil Goyal --- v6 changes: Incorporated all the review comments from Akhil on v5. doc/guides/rel_notes/release_20_05.rst | 4 +- doc/guides/sample_app_ug/ipsec_secgw.rst | 16 ++ examples/ipsec-secgw/ep0.cfg | 11

[dpdk-dev] [PATCH v5] examples/ipsec-secgw: support flow director feature

2020-04-09 Thread Praveen Shetty
of to a specified . Signed-off-by: Praveen Shetty --- v5 changes: Small change in condtional handling in sa.c file. v4 changes: 1. Removed flow director configuration changes as they are not required anymore. 2. Addressed all the review comments from Akhil and Anoob. 3. Included update to

[dpdk-dev] [PATCH v4] examples/ipsec-secgw: support flow director feature

2020-04-08 Thread Praveen Shetty
of to a specified . Signed-off-by: Praveen Shetty --- v4 changes: 1. Removed flow direction configuration changes as it is not required anymore. 2. Addressed all the review comments from Akhil and Anoob. 3. Included Release doc and Release notes. doc/guides/rel_notes/release_20_05.rst | 4

[dpdk-dev] [PATCH v3] examples/ipsec-secgw: support flow director feature

2020-03-31 Thread Praveen Shetty
of to a specified . Signed-off-by: Praveen Shetty --- v3 changes: Incorporated Anoob review comments on v2. examples/ipsec-secgw/ep0.cfg | 11 + examples/ipsec-secgw/ipsec-secgw.c | 55 +++ examples/ipsec-secgw/ipsec.c | 67

[dpdk-dev] [PATCH v2] examples/ipsec-secgw: support flow director feature

2020-03-19 Thread Praveen Shetty
of to a specified . Signed-off-by: Praveen Shetty --- v2 changes: added more details in commit message. added a check to throw an error if the security session type is other than LOOKASIDE_NONE examples/ipsec-secgw/ep0.cfg | 11 + examples/ipsec-secgw/ipsec-secgw.c | 56

[dpdk-dev] [PATCH v1] examples/ipsec-secgw: support flow director feature

2020-03-11 Thread Praveen Shetty
Modified Secuirty gateway application to support configuration of flow director rule to direct inbound IPsec SA to a specified queue. Signed-off-by: Praveen Shetty --- examples/ipsec-secgw/ep0.cfg | 11 + examples/ipsec-secgw/ipsec-secgw.c | 56 - examples

[dpdk-dev] [PATCH v1] examples/ipsec-secgw: load/unload esp-ah DDP file

2020-03-05 Thread Praveen Shetty
Modified Secuirty gateway application to support load/unload esp-ah ddp package on i40e NIC from ipsec-secgw application. Signed-off-by: Praveen Shetty --- examples/ipsec-secgw/ipsec-secgw.c | 67 +++- examples/ipsec-secgw/ipsec.c | 158 + examples

[dpdk-dev] [PATCH v2] examples/ioat: resolve unchecked return value

2019-11-28 Thread Praveen Shetty
patch checks the return value of function rte_eth_dev_info_get, if return value is negative error message printed on the console. Coverity issue: 350361 Fixes: c8e6ceecebc1 ("examples/ioat: add new sample app for ioat driver") Cc: pawelx.mod...@intel.com Signed-off-by: Prav

[dpdk-dev] [PATCH] examples/ioat: resolve unchecked return value

2019-11-28 Thread Praveen Shetty
patch checks the return value of function rte_eth_dev_info_get, if return value is negative error message printed on the console. Coverity issue: 350361 Signed-off-by: Praveen Shetty --- examples/ioat/ioatfwd.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples

[dpdk-dev] [PATCH v1] examples/ioat: resolve unchecked return value

2019-11-28 Thread Praveen Shetty
patch checks the return value of function rte_eth_dev_info_get, if return value is negative error message printed on the console. Coverity issue: 350361 Signed-off-by: Praveen Shetty --- examples/ioat/ioatfwd.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples