RE: [dpdk-dev] [RFC PATCH] ethdev: support priority based flow control

2021-11-28 Thread Ori Kam
Good for me Please send meeting inviate. Ori > -Original Message- > From: Jerin Jacob > Sent: Friday, November 26, 2021 8:46 AM > To: Ori Kam > Subject: Re: [dpdk-dev] [RFC PATCH] ethdev: support priority based flow > control > > On Thu, Nov 25, 2021 at 7:32 PM Ori Kam wrote: > > >

Re: [dpdk-dev] [RFC PATCH] ethdev: support priority based flow control

2021-11-28 Thread Jerin Jacob
On Sun, Nov 28, 2021 at 5:01 PM Ori Kam wrote: > > Good for me > > Please send the meeting invite. Meeting invite at 2 PM UTC on 29th Nov(Monday) Hi there, Jerin Jacob Kollanukkaran is inviting you to a scheduled Zoom meeting. Topic: Jerin Jacob Kollanukkaran's Personal Meeting Room Join Zo

RE: [dpdk-dev] [ovs-dev] ovs-vswitchd with DPDK crashed when guest VM restarts network service

2021-11-28 Thread Bendror, Eran (Nokia - US)
Hi, Internally the VM is using DPDK 17.05, on Centos7.9 – but this seems to be reproducing with guest level 18.11 as well. The issue is when the DPDK PMDs get started at guest, so the assumption is that that presents bad / inaccessible memory towards the host. We did notice some mis-use at the

[PATCH v2] kni: fix ioctl signature

2021-11-28 Thread Markus Theil
From: Markus Theil Fix kni's ioctl signature to correctly match the kernel's structs. This shaves off the (void*) casts and uses struct file* instead of struct inode*. With the correct signature, control flow integrity checkers are no longer confused at this point. Signed-off-by: Markus Theil T

[DPDK 22.02 PATCH v2 00/10] Add cnxk_gpio PMD

2021-11-28 Thread Tomasz Duszynski
This series introduces a new rawdevice PMD which allows to manage userspace GPIOs and install custom GPIO interrupt handlers which bypass kernel. This is especially useful for applications that, besides providing standard dataplane functionality, want to have fast and low latency access to GPIO pin

[PATCH v2 01/10] raw/cnxk_gpio: add GPIO driver skeleton

2021-11-28 Thread Tomasz Duszynski
Add initial support for PMD that allows to control particular pins form userspace. Moreover PMD allows to attach custom interrupt handlers to controllable GPIOs. Main users of this PMD are dataplain applications requiring fast and low latency access to pin state. Signed-off-by: Tomasz Duszynski

[PATCH v2 02/10] raw/cnxk_gpio: support reading default queue conf

2021-11-28 Thread Tomasz Duszynski
Add support for reading default queue configuration. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index bcce4b8fb7..deedf98af2

[PATCH v2 03/10] raw/cnxk_gpio: support reading queue count

2021-11-28 Thread Tomasz Duszynski
Add support for reading number of available queues. Single queue corresponds to GPIO. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index de

[PATCH v2 04/10] raw/cnxk_gpio: support queue setup

2021-11-28 Thread Tomasz Duszynski
Add support for queue setup. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 80 +++ 1 file changed, 80 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 84be7f861e..98b5dd9cd8 100644 --- a

[PATCH v2 05/10] raw/cnxk_gpio: support queue release

2021-11-28 Thread Tomasz Duszynski
Add support for queue release. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 34 +++ 1 file changed, 34 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index 98b5dd9cd8..8ac3c5e1be 100644 ---

[PATCH v2 06/10] raw/cnxk_gpio: support enqueuing buffers

2021-11-28 Thread Tomasz Duszynski
Add dummy support for enqueuing buffers. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 46 +++ drivers/raw/cnxk_gpio/cnxk_gpio.h | 1 + drivers/raw/cnxk_gpio/meson.build | 1 + drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h | 38

[PATCH v2 07/10] raw/cnxk_gpio: support dequeuing buffers

2021-11-28 Thread Tomasz Duszynski
Add support for dequeuing buffers. Signed-off-by: Tomasz Duszynski --- drivers/raw/cnxk_gpio/cnxk_gpio.c | 26 ++ 1 file changed, 26 insertions(+) diff --git a/drivers/raw/cnxk_gpio/cnxk_gpio.c b/drivers/raw/cnxk_gpio/cnxk_gpio.c index c08ccdfbb8..244a625822 100644 ---

[PATCH v2 08/10] raw/cnxk_gpio: support standard GPIO operations

2021-11-28 Thread Tomasz Duszynski
Add support for standard GPIO operations i.e ones normally provided by GPIO sysfs interface. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 98 drivers/raw/cnxk_gpio/cnxk_gpio.c | 146 +++ drivers/raw/cnxk_gpio/rte_pmd_cnxk_gpio.h | 279

[PATCH v2 09/10] raw/cnxk_gpio: support custom irq handlers

2021-11-28 Thread Tomasz Duszynski
Add support for custom interrupt handlers. Custom interrupt handlers bypass kernel completely and are meant for fast and low latency access to GPIO state. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 21 +++ drivers/raw/cnxk_gpio/cnxk_gpio.c | 37

[PATCH v2 10/10] raw/cnxk_gpio: support selftest

2021-11-28 Thread Tomasz Duszynski
Add support for performing selftest. Signed-off-by: Tomasz Duszynski --- doc/guides/rawdevs/cnxk_gpio.rst | 11 + drivers/raw/cnxk_gpio/cnxk_gpio.c | 1 + drivers/raw/cnxk_gpio/cnxk_gpio.h | 2 + drivers/raw/cnxk_gpio/cnxk_gpio_selftest.c | 386 ++

RE: [EXT] |FAILURE| pw104631 [PATCH v2 5/5] regex/cn9k: use cnxk infrastructure

2021-11-28 Thread Liron Himi
Hi, I have fixed the error below but got additional errors which I need your advice if to ignore or update it is some way. This patch also replace the name of the 'regexdevs/octeontx2' folder to 'regexdevs/cn9k' Note that Jerin is going to remove the current 'octeontx2' references as the new cn

Re: [EXT] |FAILURE| pw104631 [PATCH v2 5/5] regex/cn9k: use cnxk infrastructure

2021-11-28 Thread Thomas Monjalon
28/11/2021 21:17, Liron Himi: > Hi, > > I have fixed the error below but got additional errors which I need your > advice if to ignore or update it is some way. > This patch also replace the name of the 'regexdevs/octeontx2' folder to > 'regexdevs/cn9k' > Note that Jerin is going to remove the c

Re: [PATCH v2] kni: fix ioctl signature

2021-11-28 Thread Stephen Hemminger
On Sun, 28 Nov 2021 14:14:26 +0100 Markus Theil wrote: > From: Markus Theil > > Fix kni's ioctl signature to correctly match the kernel's > structs. This shaves off the (void*) casts and uses struct file* > instead of struct inode*. With the correct signature, control flow > integrity checkers