[PATCH dpdk-latest v2] system-dpdk: Update vhost tests to be compatible with DPDK 22.07.

2022-07-26 Thread Sunil Pai G
The DPDK commit [1] improves the socket layer logs in the vhost library to ease log filtering and debugging. Update the system-dpdk vhost tests to reflect this change. [1] c85c35b1d447 ("vhost: improve socket layer logs") Signed-off-by: Sunil Pai G --- v1->v2: updated more te

[dpdk-dev] [PATCH RFC] examples/vhost: remove the callbacks in app

2021-08-31 Thread Sunil Pai G
merge/upstream. This patch is dependent on the series: https://patches.dpdk.org/project/dpdk/list/?series=18407. Signed-off-by: Sunil Pai G --- examples/vhost/ioat.c | 150 +++--- examples/vhost/ioat.h | 39 +-- examples/vhost/main.c | 27 3

[dpdk-dev] [PATCH RFC 1/1] vhost: add DMADEV support for async datapath

2021-08-23 Thread Sunil Pai G
x27;s to perform packet copy for vhost async datapath. Signed-off-by: Sunil Pai G --- lib/vhost/meson.build | 2 +- lib/vhost/rte_vhost_async.h | 55 +-- lib/vhost/vhost.c | 46 +++--- lib/vhost/vhost.h | 24 ++- lib/vhost/virtio_net.c

[dpdk-dev] [PATCH RFC 0/1] vhost-add-DMADEV-support-for-async-datapath

2021-08-23 Thread Sunil Pai G
nding the API's to include a DMADEV ID to be passed by the application. This provides flexibility to applications to decide which DMADEV to be used. Sunil Pai G (1): vhost: Add DMADEV support for async datapath. lib/vhost/meson.build | 2 +- lib/vhost/rte_vhost_async.h | 55 +--

[dpdk-dev] [PATCH v1] net/ice: resolve unchecked return value

2020-02-11 Thread Sunil Pai G
This checks the return value of the function ice_xmit_cleanup Coverity issue: 353623 Fixes: 17c7d0f9d6a4 ("net/ice: support basic Rx/Tx") Cc: wenzhuo...@intel.com Signed-off-by: Sunil Pai G --- drivers/net/ice/ice_rxtx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) di