Re: [PATCH 11/14] baseband/ark: introduce ark baseband driver custom functions

2022-11-04 Thread John Miller
Hi Nicolas, I spoke with the code author and this file was not intended to be upstreamed. It will be removed in V2. -John > On Oct 26, 2022, at 7:22 PM, Chautru, Nicolas > wrote: > > Hi John, > >> -Original Message- >> From: John Miller > <m

[PATCH 14/14] baseband/meson.build:

2022-10-26 Thread John Miller
Add ark baseband device to build system. Signed-off-by: John Miller --- drivers/baseband/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/baseband/meson.build b/drivers/baseband/meson.build index 686e98b2ed..084ff46155 100644 --- a/drivers/baseband/meson.build +++ b

[PATCH 13/14] baseband/ark: introduce ark baseband build files

2022-10-26 Thread John Miller
This patch introduces the Arkville baseband device driver build files. Signed-off-by: John Miller --- drivers/baseband/ark/meson.build | 11 +++ drivers/baseband/ark/version.map | 3 +++ 2 files changed, 14 insertions(+) create mode 100644 drivers/baseband/ark/meson.build create mode

[PATCH 12/14] baseband/ark: introduce ark baseband driver common functions

2022-10-26 Thread John Miller
This patch introduces the Arkville baseband device driver common functions. Signed-off-by: John Miller --- drivers/baseband/ark/ark_bbdev_common.c | 109 drivers/baseband/ark/ark_bbdev_common.h | 100 ++ 2 files changed, 209 insertions(+) create

[PATCH 11/14] baseband/ark: introduce ark baseband driver custom functions

2022-10-26 Thread John Miller
This patch introduces the Arkville baseband device driver custom functions. Signed-off-by: John Miller --- drivers/baseband/ark/ark_bbdev_custom.c | 201 drivers/baseband/ark/ark_bbdev_custom.h | 30 2 files changed, 231 insertions(+) create mode 100644 drivers

[PATCH 10/14] baseband/ark: introduce ark baseband driver

2022-10-26 Thread John Miller
This patch introduces the Arkville baseband device driver. Signed-off-by: John Miller --- drivers/baseband/ark/ark_bbdev.c | 1127 ++ drivers/baseband/ark/ark_bbext.h | 163 + 2 files changed, 1290 insertions(+) create mode 100644 drivers/baseband/ark

[PATCH 08/14] net/ark: add ark PMD log interface

2022-10-26 Thread John Miller
Added ark PMD log interface for use in arkville devices. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 86 --- drivers/net/ark/ark_ethdev_logs.c | 8 +++ drivers/net/ark/ark_ethdev_logs.h | 25 + drivers/net/ark/ark_ethdev_rx.c | 36

[PATCH 09/14] common/ark: add VF support to caps record

2022-10-26 Thread John Miller
Some HW variants support sr-iov, add this to the device capabilities record. Signed-off-by: John Miller --- drivers/common/ark/ark_common.h | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/common/ark/ark_common.h b/drivers/common/ark/ark_common.h index

[PATCH 06/14] common/ark: update version map file

2022-10-26 Thread John Miller
Update the version map file with new common functions. Signed-off-by: John Miller --- drivers/common/ark/version.map | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/drivers/common/ark/version.map b/drivers/common/ark/version.map index 74d9f4b668..64d78cff24

[PATCH 07/14] common/ark: avoid exporting internal functions

2022-10-26 Thread John Miller
Add __rte_internal to all internal functions Signed-off-by: John Miller --- drivers/common/ark/ark_ddm.h | 8 drivers/common/ark/ark_mpu.h | 8 +++- drivers/common/ark/ark_rqp.h | 3 +++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/drivers/common/ark/ark_ddm.h b

[PATCH 04/14] common/meson.build:

2022-10-26 Thread John Miller
Add common ark to build system. Signed-off-by: John Miller --- drivers/common/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/common/meson.build b/drivers/common/meson.build index ea261dd70a..5514f4ba83 100644 --- a/drivers/common/meson.build +++ b/drivers/common

[PATCH 05/14] net/ark: remove build files moved to common

2022-10-26 Thread John Miller
Remove build files moved to common. Signed-off-by: John Miller --- drivers/net/ark/meson.build | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/net/ark/meson.build b/drivers/net/ark/meson.build index 8d87744c22..c48044b8ee 100644 --- a/drivers/net/ark

[PATCH 03/14] common/ark: move common files to common subdirectory

2022-10-26 Thread John Miller
Add common ark files to drivers/common directory in preparation to support Arkville baseband device. Signed-off-by: John Miller --- drivers/common/ark/ark_common.c | 9 drivers/common/ark/ark_common.h | 47 drivers/common/ark/meson.build | 19 +++ drivers/common/ark

[PATCH 02/14] common/ark: create common subdirectory for baseband support

2022-10-26 Thread John Miller
Create a common directory in drivers/common and move common ark files to prepare support for Arkville baseband device. Signed-off-by: John Miller --- MAINTAINERS | 1 + drivers/{net => common}/ark/ark_ddm.c | 2 +- drivers/{net => common}/ark/ark

[PATCH 01/14] doc/guides/bbdevs: add ark baseband device documentation

2022-10-26 Thread John Miller
baseband PMD, including documentation. Finally we modify the build system to support the changes. Signed-off-by: John Miller --- doc/guides/bbdevs/ark.rst | 52 +++ 1 file changed, 52 insertions(+) create mode 100644 doc/guides/bbdevs/ark.rst diff --git a

[PATCH 10/10] net/ark: repair meson dependency format

2022-04-21 Thread John Miller
Repair meson dependency format. Signed-off-by: John Miller --- drivers/net/ark/meson.build | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/net/ark/meson.build b/drivers/net/ark/meson.build index 8d87744c22..c48044b8ee 100644 --- a/drivers/net/ark

[PATCH 09/10] baseband/meson.build:

2022-04-21 Thread John Miller
Add ark baseband device to build system. Signed-off-by: John Miller --- drivers/baseband/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/baseband/meson.build b/drivers/baseband/meson.build index 686e98b2ed..084ff46155 100644 --- a/drivers/baseband/meson.build +++ b

[PATCH 08/10] baseband/ark: add ark baseband user extensions

2022-04-21 Thread John Miller
Add ark baseband user extensions. Signed-off-by: John Miller --- drivers/baseband/ark/ark_bbdev.c| 146 +++-- drivers/baseband/ark/ark_bbdev_common.h | 8 ++ drivers/baseband/ark/ark_bbext.h| 163 3 files changed, 306 insertions(+), 11

[PATCH 07/10] maintainers: add baseband ark maintainers

2022-04-21 Thread John Miller
Add Atomic Rules ARK baseband device. Signed-off-by: John Miller --- MAINTAINERS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 4716c92e78..380dd204a6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1330,6 +1330,13 @@ F: drivers/baseband/la12xx/ F

[PATCH 06/10] net/ark: add ark PMD log interface

2022-04-21 Thread John Miller
Added ark PMD log interface for use in arkville devices. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 93 --- drivers/net/ark/ark_ethdev_logs.c | 7 +++ drivers/net/ark/ark_ethdev_logs.h | 25 + drivers/net/ark/ark_ethdev_rx.c | 40

[PATCH 05/10] baseband/ark: add ark baseband device

2022-04-21 Thread John Miller
Add new ark baseband device. Signed-off-by: John Miller --- drivers/baseband/ark/ark_bbdev.c| 1064 +++ drivers/baseband/ark/ark_bbdev_common.c | 125 +++ drivers/baseband/ark/ark_bbdev_common.h | 92 ++ drivers/baseband/ark/ark_bbdev_custom.c | 201

[PATCH 04/10] common/meson.build:

2022-04-21 Thread John Miller
Add common ark to build system. Signed-off-by: John Miller --- drivers/common/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/common/meson.build b/drivers/common/meson.build index ea261dd70a..5514f4ba83 100644 --- a/drivers/common/meson.build +++ b/drivers/common

[PATCH 03/10] common/ark: move common files to common subdirectory

2022-04-21 Thread John Miller
Add common ark files to drivers/common directory in preparation to support Arkville baseband device. Signed-off-by: John Miller --- drivers/common/ark/ark_common.c | 7 ++ drivers/common/ark/ark_common.h | 48 ++ drivers/common/ark/meson.build | 13 drivers/common/ark

[PATCH 02/10] common/ark: create common subdirectory for baseband support

2022-04-21 Thread John Miller
Create a common directory in drivers/common and move common ark files to prepare support for Arkville baseband device. Signed-off-by: John Miller --- MAINTAINERS | 1 + drivers/{net => common}/ark/ark_ddm.c | 2 +- drivers/{net => common}/ark/ark

[PATCH 01/10] doc/guides/bbdevs: add ark baseband device documentation

2022-04-21 Thread John Miller
baseband PMD, including documentation. Finally we modify the build system to support the changes. Signed-off-by: John Miller --- doc/guides/bbdevs/ark.rst | 54 +++ 1 file changed, 54 insertions(+) create mode 100644 doc/guides/bbdevs/ark.rst diff --git a

[PATCH v2] net/ark: support multi-port pkt generation

2022-03-02 Thread John Miller
Added support for packet generation in multi-port Arkville implementations. The packet generator is a singleton within the device but is capable of generating packets for any port within one device. Signed-off-by: John Miller --- v2: - Incorporated changes from Ferruh's comments. --- dr

[PATCH] net/ark: support multi-port pkt generation

2022-02-26 Thread John Miller
Added support for packet generation in multi-port Arkville implementations. The packet generator is a singleton within the device but is capable of generating packets for any port within one device. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 4 +++- drivers/net/ark

[PATCH v3 6/7] net/ark: add memory write barriers in critical code paths

2022-02-15 Thread John Miller
Add memory write barriers for read and wait status functions in ddm, udm and mpu. Signed-off-by: John Miller --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_mpu.c | 1 + drivers/net/ark/ark_udm.c | 1 + 3 files changed, 3 insertions(+) diff --git a/drivers/net/ark/ark_ddm.c b/drivers

[PATCH v3 7/7] net/ark: add performance optimizations

2022-02-15 Thread John Miller
Added software register writes for hw optimization and performance fixes. Signed-off-by: John Miller --- drivers/net/ark/ark_udm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ark/ark_udm.c b/drivers/net/ark/ark_udm.c index cb3cf5c941..9ebed89627 100644 --- a/drivers/net

[PATCH v3 5/7] net/ark: support chunk DMA transfers

2022-02-15 Thread John Miller
Add support for chunk DMA transfers. Chunk mpu transfer use 64 objects (512 byte) to maintain memory read alignment. Align mpu memory allocation to be at 512 byte boundaries. Reduce force-close allocation from 1 objects to 64 objects. Signed-off-by: John Miller --- drivers/net/ark

[PATCH v3 4/7] net/ark: packet generator and checker status update

2022-02-15 Thread John Miller
Configuration status updates for internal packet checker and generator. Signed-off-by: John Miller --- drivers/net/ark/ark_pktchkr.c | 2 +- drivers/net/ark/ark_pktgen.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ark/ark_pktchkr.c b/drivers/net/ark

[PATCH v3 3/7] net/ark: support arbitrary mbuf size

2022-02-15 Thread John Miller
Added arbitrary mbuf size per queue capability. Updated ARK_UDM_CONST3 value to reflect the version number read from the HW that is required to support this change. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c| 8 drivers/net/ark/ark_ethdev_rx.c | 23

[PATCH v3 2/7] net/ark: add support for new devices

2022-02-15 Thread John Miller
Add two new supported device ID's. Add documentation for new devices. Signed-off-by: John Miller --- v3: - Split patch and added documentation --- doc/guides/nics/ark.rst | 2 ++ drivers/net/ark/ark_ethdev.c | 4 2 files changed, 6 insertions(+) diff --git a/doc/guides/nics/ar

[PATCH v3 1/7] net/ark: add device capabilities record

2022-02-15 Thread John Miller
Add a device capabilities record for supported features. Certain variants require that PCIe read-requests be correctly throttled. This is called "rqpacing" in Arkville, and has to do with credit and flow control on certain Arkville implementations. Signed-off-by: John Miller --- v2:

[PATCH v2 3/3] net/ark: support chunk DMA transfers

2022-02-11 Thread John Miller
memory write barriers for read and wait status functions in ddm, udm and mpu. Configuration status updates for internal packet checker and generator. Signed-off-by: John Miller --- v2: - Added more details to the git log. --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_ethdev_rx.c

[PATCH v2 2/3] net/ark: support arbitrary mbuf size

2022-02-11 Thread John Miller
Added arbitrary mbuf size per queue capability. Updated ARK_UDM_CONST3 value to reflect the version number read from the HW that is required to support this change. Signed-off-by: John Miller --- v2: - Added more details to the git log. --- drivers/net/ark/ark_ethdev.c| 8

[PATCH v2 1/3] net/ark: add device capabilities record

2022-02-11 Thread John Miller
Add a device capabilities record for supported features. Certain variants require that PCIe read-requests be correctly throttled. This is called "rqpacing" in Arkville, and has to do with credit and flow control on certain Arkville implementations. Signed-off-by: John Miller --- v2:

[PATCH v2 3/3] net/ark: support chunk DMA transfers

2022-02-10 Thread John Miller
for read and wait status functions in ddm, udm and mpu. - Configuration status updates for internal packet checker and generator. --- Signed-off-by: John Miller --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_ethdev_rx.c | 16 +--- drivers/net/ark/ark_mpu.c

[PATCH v2 2/3] net/ark: support arbitrary mbuf size

2022-02-10 Thread John Miller
--- v2: Added arbitrary mbuf size per queue capability. Updated ARK_UDM_CONST3 value to reflect the version number read from the HW that is required to support this change. --- Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c| 8 drivers/net/ark/ark_ethdev_rx.c | 23

[PATCH v2 1/3] net/ark: add device capabilities record

2022-02-10 Thread John Miller
--- v2: Certain variants require that PCIe read-requests be correctly throttled. This is called "rqpacing" in Arkville, and has to do with credit and flow control on certain Arkville implementations. Improved code readability and comments. --- Signed-off-by: John Miller --- drive

[PATCH 4/4] net/ark: support chunk DMA transfers

2022-01-19 Thread John Miller
Add support for chunk DMA transfers. Signed-off-by: John Miller --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_ethdev_rx.c | 16 +--- drivers/net/ark/ark_mpu.c | 1 + drivers/net/ark/ark_pktchkr.c | 2 +- drivers/net/ark/ark_pktgen.c| 2 +- drivers

[PATCH 3/4] net/ark: publish include file for external access

2022-01-19 Thread John Miller
publish rte_pmd_ark.h for external access to extension Signed-off-by: John Miller --- doc/guides/nics/ark.rst | 4 ++-- drivers/net/ark/meson.build | 2 ++ drivers/net/ark/{ark_ext.h => rte_pmd_ark.h} | 8 ++-- 3 files changed, 10 insertions(+)

[PATCH 2/4] net/ark: support arbitrary mbuf size

2022-01-19 Thread John Miller
Support arbitrary mbuf size per queue. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c| 8 drivers/net/ark/ark_ethdev_rx.c | 23 +++ drivers/net/ark/ark_udm.h | 2 +- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/drivers

[PATCH 1/4] net/ark: add device capabilities record

2022-01-19 Thread John Miller
Add static record of supported device capabilities. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 58 +--- 1 file changed, 48 insertions(+), 10 deletions(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index b618cba3f0

Re: [dpdk-dev] [PATCH] net/ark: Add missing call to probe_finish for first device

2018-05-21 Thread john miller
/* First port is already allocated by DPDK */ > eth_dev = ark->eth_dev; > + rte_eth_dev_probing_finish(eth_dev); > continue; > } > > -- > 2.7.4 > Acked-by: John Miller mailto:john.mil...@atomicrules.com>>

[dpdk-dev] CentOS support for 17.11

2017-10-16 Thread john miller
Hello, We have been testing the dpdk-17.11-rc1 candidate on our Ubuntu platforms. We just tried to compile it on one of our CentOS platform and get this error. == Build lib/librte_eal/linuxapp/igb_uio CC [M] /projects/dpdk/dpdk-17.11-rc1/build/build/lib/librte_eal/linuxapp/igb_uio/igb_uio.

[dpdk-dev] 17.11 release candidate tag

2017-10-13 Thread john miller
Hello, Is there a release candidate available for 17.11 ?I could not find a tag in the dpdk-next-net repo. Thank you, -John

[dpdk-dev] [PATCH] net/ark: repair incorrect loop counter

2017-10-06 Thread John Miller
Change loop counter that should be based on the number of rx queues, not tx queues. This only affects debug output. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark

[dpdk-dev] [PATCH v2 3/3] net/ark: fix bug in stats_reset operation

2017-06-28 Thread John Miller
Repairs a bug in the stats_reset where the wrong queue was being passed into tx reset. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index 5733ba3

[dpdk-dev] [PATCH v2 2/3] net/ark: add set_mtu call to user extension API

2017-06-28 Thread John Miller
Allows a user extension to set a callback for the set_mtu operation. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 19 +++ drivers/net/ark/ark_ext.h| 4 drivers/net/ark/ark_global.h | 1 + 3 files changed, 24 insertions(+) diff --git a/drivers/net/ark

[dpdk-dev] [PATCH v2 1/3] net/ark: allow unique user data for each port in extension calls

2017-06-28 Thread John Miller
RTE_MAX_ETHPORTS in the arkville structure and are indexed by port_id in the PMD. The motivation for this change is that users of the arkville PMD extension have a unique pointer per port rather then one per function. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 51

[dpdk-dev] [PATCH v2 0/3] net/ark: augment user extension and bug fix

2017-06-28 Thread John Miller
v2: * Split the user extension private data per port patch and the set_mtu patch into separate patches. * Add better description to per port private data patch * stats_reset patch untouched from V1 John Miller (3): net/ark: allow unique user data for each port in extension calls net/ark

[dpdk-dev] [PATCH 2/2] net/ark: fix bug in stats_reset operation

2017-06-22 Thread John Miller
Repairs a bug in the stats_reset where the wrong queue was being passed into tx reset. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index 55e6b24

[dpdk-dev] [PATCH 1/2] net/ark: allow unique user data for each port in extension calls

2017-06-22 Thread John Miller
Provide unique user data pointer in the extension calls for each port. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 71 +--- drivers/net/ark/ark_ext.h| 4 +++ drivers/net/ark/ark_global.h | 5 ++-- 3 files changed, 60 insertions

[dpdk-dev] [PATCH 4/4] net/ark: fix return value of null not checked

2017-05-16 Thread John Miller
Coverity issue: 144517 Fixes: 1131cbf0fb2b ("net/ark: stub PMD for Atomic Rules Arkville") Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index f8fb35

[dpdk-dev] [PATCH 2/4] net/ark: fix return code not checked

2017-05-16 Thread John Miller
Coverity issue: 144514 Fixes: 727b3fe292bc ("net/ark: integrate PMD") Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index 995c93d..9143

[dpdk-dev] [PATCH 3/4] net/ark: fix null pointer dereference

2017-05-16 Thread John Miller
Coverity issue: 144520 Fixes: 727b3fe292bc ("net/ark: integrate PMD") Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/net/ark/ark_ethdev.c b/drivers/net/ark/ark_ethdev.c index 9143fc4..f8fb

[dpdk-dev] [PATCH 1/4] net/ark: fix for buffer not null terminated

2017-05-16 Thread John Miller
Coverity issue: 144512 Coverity issue: 144513 Fixes: 9c7188a68d7b ("net/ark: provide API for hardware modules pktchkr and pktgen") Signed-off-by: John Miller --- drivers/net/ark/ark_pktchkr.c | 2 +- drivers/net/ark/ark_pktgen.c | 2 +- 2 files changed, 2 insertions(+), 2 deletion

Re: [dpdk-dev] [PATCH] net/ark: fix for Coverity issues

2017-05-13 Thread john miller
Hi Ferruh, Thank you for your review. I will create a new patchset for these fixes with all of the changes you requested. -John > On May 12, 2017, at 7:11 AM, Ferruh Yigit wrote: > > On 5/11/2017 12:02 PM, John Miller wrote: >> Fixes: 9c7188a68d7b ("net/ark: provide API

[dpdk-dev] [PATCH] net/ark: fix for Coverity issues

2017-05-11 Thread John Miller
Coverity issue: 144512 Fixes: 1131cbf0fb2b ("net/ark: stub PMD for Atomic Rules Arkville") Coverity issue: 144517 Fixes: 727b3fe292bc ("net/ark: integrate PMD") Coverity issue: 144520 Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 18 -- drive

[dpdk-dev] [PATCH] net/ark: fix kvargs memory leak

2017-05-01 Thread john miller
Coverity issue: 1428042 Fixes: 1131cbf0fb2b ("net/ark: stub PMD for Atomic Rules Arkville") Signed-off-by: Ferruh Yigit Acked-by: John Miller mailto:john.mil...@atomicrules.com>>

Re: [dpdk-dev] [PATCH 2/2] net/ark: fix FreeBSD compilation

2017-04-20 Thread john miller
"net/ark: stub PMD for Atomic Rules Arkville") > > Signed-off-by: Bruce Richardson Thanks Bruce. Acked-by: John Miller mailto:john.mil...@atomicrules.com>>

Re: [dpdk-dev] [PATCH v2 2/2] net/ark: report hardware status during PMD init

2017-04-11 Thread john miller
> On Apr 11, 2017, at 11:41 AM, Ed Czeck wrote: > > Expose additional fpga status registers. > Report hardware status during PMD init. > > Signed-off-by: Ed Czeck Acked-by: John Miller mailto:john.mil...@atomicrules.com>>

[dpdk-dev] error in testpmd when CONFIG_RTE_BUILD_SHARED_LIB=y

2017-04-11 Thread john miller
We are seeing an issue when running from the head of the master branch in dpdk-next-net and building with CONFIG_RTE_BUILD_SHARED_LIB=y. When we run testpmd using -d to point to our PMD we get this error EAL: Error - exiting with code: 1 Cause: Creation of mbuf pool for socket 0 failed: In

Re: [dpdk-dev] [PATCH 1/2] net/ark: update packet Rx path to set mbuf time stamp field

2017-04-11 Thread john miller
> Signed-off-by: Ed Czeck Acked-by: John Miller mailto:john.mil...@atomicrules.com>>