[dpdk-dev] [PATCH v2 4/6] net/softnic: disable softnic build in FREEBSD

2018-10-03 Thread Agalya Babu RadhaKrishnan
Disabled softnic build in FreeBSD because it is not supported Added changes to enable softnic build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/softnic/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/softnic

[dpdk-dev] [PATCH v2 1/6] build: fix for FREEBSD build via meson

2018-10-03 Thread Agalya Babu RadhaKrishnan
: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- config/meson.build | 3 +++ config/rte_config.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/meson.build b/config/meson.build index 6f9228c87..b95bca018 10

[dpdk-dev] [PATCH v2 3/6] net/avp: disable avp build in FREEBSD

2018-10-03 Thread Agalya Babu RadhaKrishnan
Disabled avp build in FreeBSD because it is not supported. Added changes to enable avp build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/avp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/avp/meson.build b

[dpdk-dev] [PATCH v2 6/6] net/vdev_netvsc: disable vdev netvsc build in FREEBSD

2018-10-03 Thread Agalya Babu RadhaKrishnan
Disabled vdev_netvsc build in FreeBSD because it is not supported Added changes to enable vdev_netvsc build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/vdev_netvsc/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers

[dpdk-dev] [PATCH v2 5/6] net/tap: disable tap build in FREEBSD

2018-10-03 Thread Agalya Babu RadhaKrishnan
Disabled tap build in FreeBSD because it is not supported Added changes to enable tap build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/tap/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/tap/meson.build b

[dpdk-dev] [PATCH v2 0/6] fix for meson builds in freebsd

2018-10-03 Thread Agalya Babu RadhaKrishnan
/nfp meson build 3/6: updated net/avp meson build 4/6: updated net/softnic meson build 5/6: updated net/tap meson build 6/6: updated net/vdev_netvsc meson build Signed-off-by: Agalya Babu RadhaKrishnan -- v2: Added fixes line for the appropriate file Updated meson.build changes to config

[dpdk-dev] [PATCH v2 2/6] net/nfp: disable nfp build in FREEBSD

2018-10-03 Thread Agalya Babu RadhaKrishnan
Disabled nfp build in FreeBSD because it is not supported Added changes to enable NFP build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/nfp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/nfp/meson.build b

[dpdk-dev] [PATCH v3 3/6] net/avp: disable avp build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled avp build in FreeBSD because it is not supported. Added changes to enable avp build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/avp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/avp/meson.build b

[dpdk-dev] [PATCH v3 0/6] fix for meson builds in freebsd

2018-10-04 Thread Agalya Babu RadhaKrishnan
/nfp meson build 3/6: updated net/avp meson build 4/6: updated net/softnic meson build 5/6: updated net/tap meson build 6/6: updated net/vdev_netvsc meson build Signed-off-by: Agalya Babu RadhaKrishnan -- v3: Updated with correct fixes line v2: Added fixes line for the appropriate file Updated

[dpdk-dev] [PATCH v3 5/6] net/tap: disable tap build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled tap build in FreeBSD because it is not supported Added changes to enable tap build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/tap/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/tap/meson.build b

[dpdk-dev] [PATCH v3 4/6] net/softnic: disable softnic build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled softnic build in FreeBSD because it is not supported Added changes to enable softnic build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/softnic/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/softnic

[dpdk-dev] [PATCH v3 2/6] net/nfp: disable nfp build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled nfp build in FreeBSD because it is not supported Added changes to enable NFP build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/nfp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/nfp/meson.build b

[dpdk-dev] [PATCH v3 1/6] build: fix for FREEBSD build via meson

2018-10-04 Thread Agalya Babu RadhaKrishnan
: 844514c735 ("eal: build with meson") Signed-off-by: Agalya Babu RadhaKrishnan --- config/meson.build | 3 +++ config/rte_config.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/meson.build b/config/meson.build index 6f9228c87..b95bca018 100644 --- a/config/meson.b

[dpdk-dev] [PATCH v3 6/6] net/vdev_netvsc: disable vdev netvsc build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled vdev_netvsc build in FreeBSD because it is not supported. Added changes to enable vdev_netvsc build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/vdev_netvsc/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers

[dpdk-dev] [PATCH v4 3/6] net/avp: disable avp build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled avp build in FreeBSD because it is not supported. Added changes to enable avp build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan Acked-by: Allain Legacy --- drivers/net/avp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers

[dpdk-dev] [PATCH v4 5/6] net/tap: disable tap build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled tap build in FreeBSD because it is not supported Added changes to enable tap build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan Acked-by: Keith Wiles --- drivers/net/tap/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers

[dpdk-dev] [PATCH v4 2/6] net/nfp: disable nfp build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled nfp build in FreeBSD because it is not supported Added changes to enable NFP build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/nfp/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/nfp/meson.build b

[dpdk-dev] [PATCH v4 1/6] build: fix for FREEBSD build via meson

2018-10-04 Thread Agalya Babu RadhaKrishnan
: 844514c735 ("eal: build with meson") Signed-off-by: Agalya Babu RadhaKrishnan Acked-by: Bruce Richardson --- config/meson.build | 3 +++ config/rte_config.h | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/meson.build b/config/meson.build index 6f9228c87..b95bca

[dpdk-dev] [PATCH v4 6/6] net/vdev_netvsc: disable vdev netvsc build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled vdev_netvsc build in FreeBSD because it is not supported. Added changes to enable vdev_netvsc build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan Acked-by: Stephen Hemmminger --- drivers/net/vdev_netvsc/meson.build | 3 +++ 1 file changed, 3

[dpdk-dev] [PATCH v4 0/6] fix for meson builds in freebsd

2018-10-04 Thread Agalya Babu RadhaKrishnan
/nfp meson build 3/6: updated net/avp meson build 4/6: updated net/softnic meson build 5/6: updated net/tap meson build 6/6: updated net/vdev_netvsc meson build Signed-off-by: Agalya Babu RadhaKrishnan -- v4: Added acked-by for required patches v3: Updated with correct fixes line v2: Added fixes

[dpdk-dev] [PATCH v4 4/6] net/softnic: disable softnic build in FREEBSD

2018-10-04 Thread Agalya Babu RadhaKrishnan
Disabled softnic build in FreeBSD because it is not supported Added changes to enable softnic build if it is Linux OS and disable in FreeBSD. Signed-off-by: Agalya Babu RadhaKrishnan Acked-by: Jasvinder Singh --- drivers/net/softnic/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff

[dpdk-dev] [PATCH 4/6] net/softnic: disable softnic build in FREEBSD

2018-09-27 Thread Agalya Babu RadhaKrishnan
Disabled softnic build in FreeBSD because it is not supported Added changes to enable softnic build if it is Linux OS and disable in FreeBSD. Fixes: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/softnic/meson.build

[dpdk-dev] [PATCH 6/6] net/vdev_netvsc: disable vdev netvsc build in FREEBSD

2018-09-27 Thread Agalya Babu RadhaKrishnan
Disabled vdev_netvsc build in FreeBSD because it is not supported Added changes to enable vdev_netvsc build if it is Linux OS and disable in FreeBSD. Fixes: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/vdev_netvsc/m

[dpdk-dev] [PATCH 2/6] net/nfp: disable nfp build in FREEBSD

2018-09-27 Thread Agalya Babu RadhaKrishnan
Disabled nfp build in FreeBSD because it is not supported Added changes to enable NFP build if it is Linux OS and disable in FreeBSD. Fixes: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/nfp/meson.build | 3 +++ 1 fi

[dpdk-dev] [PATCH 3/6] net/avp: disable avp build in FREEBSD

2018-09-27 Thread Agalya Babu RadhaKrishnan
Disabled avp build in FreeBSD because it is not supported. Added changes to enable avp build if it is Linux OS and disable in FreeBSD. Fixes: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/avp/meson.build | 3 +

[dpdk-dev] [PATCH 0/6] fix for meson builds in freebsd

2018-09-27 Thread Agalya Babu RadhaKrishnan
/nfp meson build 3/6: updated net/avp meson build 4/6: updated net/softnic meson build 5/6: updated net/tap meson build 6/6: updated net/vdev_netvsc meson build Signed-off-by: Agalya Babu RadhaKrishnan Agalya Babu RadhaKrishnan (6): build: fix for FREEBSD build via meson net/nfp: disable nfp

[dpdk-dev] [PATCH 5/6] net/tap: disable tap build in FREEBSD

2018-09-27 Thread Agalya Babu RadhaKrishnan
Disabled tap build in FreeBSD because it is not supported Added changes to enable tap build if it is Linux OS and disable in FreeBSD. Fixes: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- drivers/net/tap/meson.build | 3 +++ 1 fi

[dpdk-dev] [PATCH 1/6] build: fix for FREEBSD build via meson

2018-09-27 Thread Agalya Babu RadhaKrishnan
: 6e8a721044 ("vfio: export functions even when disabled") Signed-off-by: Agalya Babu RadhaKrishnan --- config/rte_config.h | 1 - lib/meson.build | 6 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/config/rte_config.h b/config/rte_config.h index 567051b9c..53c568929 10

[dpdk-dev] [PATCH] app/testpmd: fix help info for interactive commands

2019-03-05 Thread Agalya Babu RadhaKrishnan
From: Agalya Babu RadhaKrishnan Added some missing help info for interactive mode commands Fixes: 6673fe0ce2 ("app/testpmd: add TM commands to mark packets") Fixes: c73a907187 ("app/testpmd: add commands to test new offload API") Fixes: e977e4199a ("app/testpmd: add co

[dpdk-dev] [PATCH] app/test: enhance meson test run for FreeBSD and Linux

2019-03-06 Thread Agalya Babu RadhaKrishnan
From: Agalya Babu RadhaKrishnan 1)For linux, running all tests on same cores can increase failure rate. So instead run each test case on separate lcore using -l EAL option. Lcore for each test case will be selected in the incremental order of 0,1,2 ... till it reaches the maximum available cores

[dpdk-dev] [PATCH v7] doc: add meson ut info in prog guide

2019-08-07 Thread Agalya Babu RadhaKrishnan
From: Hari Kumar Vemula Add a programmer's guide section for meson ut Signed-off-by: Hari Kumar Vemula Acked-by: Bruce Richardson --- v7: Updated v6 patch comments v6: Updated comments v5: Modified v4: Typos corrected v3: Modified v2: Removed enhancement details --- .../prog_guide/build-sdk-m

[dpdk-dev] [PATCH] doc: fix interactive commands in testpmd guide

2019-04-15 Thread Agalya Babu RadhaKrishnan
From: Agalya Babu RadhaKrishnan Added some missing documentation for interactive mode commands Fixes: 01b2092a5e ("testpmd: add dump commands for debug") Fixes: caf05a1b86 ("app/testpmd: new command to dump log types") Signed-off-by: Agalya Babu RadhaKrishnan --- doc/g

[dpdk-dev] [PATCH v2] doc: fix interactive commands in testpmd guide

2019-04-23 Thread Agalya Babu RadhaKrishnan
ew command to dump log types") Cc: sta...@dpdk.org Signed-off-by: Agalya Babu RadhaKrishnan Reviewed-by: Rami Rosen Acked-by: Bernard Iremonger --- v2: Added fixes lines and addressed comments. --- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 100 1 file changed, 100 inse

[dpdk-dev] [PATCH v2] app/testpmd: fix help info for interactive commands

2019-04-23 Thread Agalya Babu RadhaKrishnan
quot;) Fixes: c18feafa19 ("app/testpmd: support metadata as flow rule item") Signed-off-by: Agalya Babu RadhaKrishnan Reviewed-by: Rami Rosen --- v2: added TM to separate group and addressed comments. --- app/test-pmd/cmdline.c | 262 - 1 file

[dpdk-dev] [PATCH] examples: modify error message for ip pipeline

2019-06-14 Thread Agalya Babu RadhaKrishnan
From: Agalya Babu RadhaKrishnan Added help command in error message for ip pipeline commands. Signed-off-by: Agalya Babu RadhaKrishnan --- examples/ip_pipeline/cli.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/ip_pipeline/cli.c b/examples

[dpdk-dev] [PATCH] bus/fslmc: fix for resource leak coverity issue

2019-09-10 Thread Agalya Babu RadhaKrishnan
From: Agalya Babu RadhaKrishnan 1 issue caught by 344967 Leaked_storage: Variable sep going out of scope leaks the storage it points to. When 'sep' is not null and sep_exist is 0, 'sep' is freed before going out of scope of the function irrespective of 'addr'