* [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition
@ 2020-10-20 8:16 guyk
2020-10-20 9:11 ` Ori Kam
` (2 more replies)
0 siblings, 3 replies; 11+ messages in thread
From: guyk @ 2020-10-20 8:16 UTC (permalink / raw)
To: orika; +Cc: thomas, guyk, smadarf, dovrat, dev, jerinj
From: Guy Kaneti <guyk@marvell.com>
Add out of order scan capability to check PMD
support for OOS.
Signed-off-by: Guy Kaneti <guyk@marvell.com>
---
lib/librte_regexdev/rte_regexdev.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/lib/librte_regexdev/rte_regexdev.h b/lib/librte_regexdev/rte_regexdev.h
index 4077e62c9..60cccf816 100644
--- a/lib/librte_regexdev/rte_regexdev.h
+++ b/lib/librte_regexdev/rte_regexdev.h
@@ -474,6 +474,14 @@ rte_regexdev_get_dev_id(const char *name);
* @see RTE_REGEXDEV_CFG_MATCH_ALL_F
*/
+#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
+/**< RegEx device support out of order scan, this means the scan can be retired
+ * as soon as device returns completion.
+ *
+ * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
+ * @see struct rte_regexdev_info::regexdev_capa
+ */
+
/* Enumerates PCRE rule flags */
#define RTE_REGEX_PCRE_RULE_ALLOW_EMPTY_F (1ULL << 0)
/**< When this flag is set, the pattern that can match against an empty string,
--
2.28.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition
2020-10-20 8:16 [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition guyk
@ 2020-10-20 9:11 ` Ori Kam
2020-10-20 12:37 ` Thomas Monjalon
2020-10-21 8:03 ` [dpdk-dev] [PATCH v2] " guyk
2 siblings, 0 replies; 11+ messages in thread
From: Ori Kam @ 2020-10-20 9:11 UTC (permalink / raw)
To: guyk; +Cc: NBU-Contact-Thomas Monjalon, smadarf, dovrat, dev, jerinj
Hi Guy
> -----Original Message-----
> From: guyk@marvell.com <guyk@marvell.com>
> Sent: Tuesday, October 20, 2020 11:16 AM
> dev@dpdk.org; jerinj@marvell.com
> Subject: [PATCH v1] regexdev: add OOS capability definition
>
> From: Guy Kaneti <guyk@marvell.com>
>
> Add out of order scan capability to check PMD
> support for OOS.
>
> Signed-off-by: Guy Kaneti <guyk@marvell.com>
> ---
> lib/librte_regexdev/rte_regexdev.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/lib/librte_regexdev/rte_regexdev.h
> b/lib/librte_regexdev/rte_regexdev.h
> index 4077e62c9..60cccf816 100644
> --- a/lib/librte_regexdev/rte_regexdev.h
> +++ b/lib/librte_regexdev/rte_regexdev.h
> @@ -474,6 +474,14 @@ rte_regexdev_get_dev_id(const char *name);
> * @see RTE_REGEXDEV_CFG_MATCH_ALL_F
> */
>
> +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
> +/**< RegEx device support out of order scan, this means the scan can be
> retired
> + * as soon as device returns completion.
> + *
> + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> + * @see struct rte_regexdev_info::regexdev_capa
> + */
> +
> /* Enumerates PCRE rule flags */
> #define RTE_REGEX_PCRE_RULE_ALLOW_EMPTY_F (1ULL << 0)
> /**< When this flag is set, the pattern that can match against an empty string,
> --
> 2.28.0
Acked-by: Ori Kam <orika@nvidia.com>
Best,
Ori
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition
2020-10-20 8:16 [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition guyk
2020-10-20 9:11 ` Ori Kam
@ 2020-10-20 12:37 ` Thomas Monjalon
2020-10-20 14:24 ` [dpdk-dev] [EXT] " Guy Kaneti
2020-10-21 8:03 ` [dpdk-dev] [PATCH v2] " guyk
2 siblings, 1 reply; 11+ messages in thread
From: Thomas Monjalon @ 2020-10-20 12:37 UTC (permalink / raw)
To: guyk; +Cc: orika, dev, smadarf, dovrat, jerinj
20/10/2020 10:16, guyk@marvell.com:
> From: Guy Kaneti <guyk@marvell.com>
>
> Add out of order scan capability to check PMD
> support for OOS.
>
> Signed-off-by: Guy Kaneti <guyk@marvell.com>
> ---
> --- a/lib/librte_regexdev/rte_regexdev.h
> +++ b/lib/librte_regexdev/rte_regexdev.h
> +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
> +/**< RegEx device support out of order scan, this means the scan can be retired
s/support/supports/
What means "retired"?
> + * as soon as device returns completion.
> + *
> + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> + * @see struct rte_regexdev_info::regexdev_capa
> + */
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH v1] regexdev: add OOS capability definition
2020-10-20 12:37 ` Thomas Monjalon
@ 2020-10-20 14:24 ` Guy Kaneti
2020-10-21 7:15 ` Ori Kam
0 siblings, 1 reply; 11+ messages in thread
From: Guy Kaneti @ 2020-10-20 14:24 UTC (permalink / raw)
To: Thomas Monjalon
Cc: orika, dev, Smadar Fuks, Dovrat Zifroni, Jerin Jacob Kollanukkaran
> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: Tuesday, October 20, 2020 3:37 PM
> To: Guy Kaneti <guyk@marvell.com>
> Cc: orika@nvidia.com; dev@dpdk.org; Smadar Fuks
> <smadarf@marvell.com>; Dovrat Zifroni <dovrat@marvell.com>; Jerin Jacob
> Kollanukkaran <jerinj@marvell.com>
> Subject: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability
> definition
>
> External Email
>
> ----------------------------------------------------------------------
> 20/10/2020 10:16, guyk@marvell.com:
> > From: Guy Kaneti <guyk@marvell.com>
> >
> > Add out of order scan capability to check PMD support for OOS.
> >
> > Signed-off-by: Guy Kaneti <guyk@marvell.com>
> > ---
> > --- a/lib/librte_regexdev/rte_regexdev.h
> > +++ b/lib/librte_regexdev/rte_regexdev.h
> > +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22) /**<
> RegEx
> > +device support out of order scan, this means the scan can be retired
>
> s/support/supports/
I followed the other RTE_REGEXDEV_CAPA_ definitions
I can fix it here
>
> What means "retired"?
This was the original description in the rte_regexdev.h:
#define RTE_REGEX_QUEUE_PAIR_CFG_OOS_F (1ULL << 0)
/**< Out of order scan, If not set, a scan must retire after previously issued
* in-order scans to this queue pair. If set, this scan can be retired as soon
* as device returns completion. Application should not set out of order scan
* flag if it needs to maintain the ingress order of scan request.
>
> > + * as soon as device returns completion.
> > + *
> > + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> > + * @see struct rte_regexdev_info::regexdev_capa */
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH v1] regexdev: add OOS capability definition
2020-10-20 14:24 ` [dpdk-dev] [EXT] " Guy Kaneti
@ 2020-10-21 7:15 ` Ori Kam
2020-10-21 7:39 ` Guy Kaneti
0 siblings, 1 reply; 11+ messages in thread
From: Ori Kam @ 2020-10-21 7:15 UTC (permalink / raw)
To: Guy Kaneti, NBU-Contact-Thomas Monjalon
Cc: dev, Smadar Fuks, Dovrat Zifroni, Jerin Jacob Kollanukkaran
Hi
> -----Original Message-----
> From: Guy Kaneti <guyk@marvell.com>
> Sent: Tuesday, October 20, 2020 5:24 PM
> Subject: RE: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability
> definition
>
>
>
> > -----Original Message-----
> > From: Thomas Monjalon <thomas@monjalon.net>
> > Sent: Tuesday, October 20, 2020 3:37 PM
> > To: Guy Kaneti <guyk@marvell.com>
> > Cc: orika@nvidia.com; dev@dpdk.org; Smadar Fuks
> > <smadarf@marvell.com>; Dovrat Zifroni <dovrat@marvell.com>; Jerin Jacob
> > Kollanukkaran <jerinj@marvell.com>
> > Subject: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability
> > definition
> >
> > External Email
> >
> > ----------------------------------------------------------------------
> > 20/10/2020 10:16, guyk@marvell.com:
> > > From: Guy Kaneti <guyk@marvell.com>
> > >
> > > Add out of order scan capability to check PMD support for OOS.
> > >
> > > Signed-off-by: Guy Kaneti <guyk@marvell.com>
> > > ---
> > > --- a/lib/librte_regexdev/rte_regexdev.h
> > > +++ b/lib/librte_regexdev/rte_regexdev.h
> > > +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22) /**<
> > RegEx
> > > +device support out of order scan, this means the scan can be retired
> >
> > s/support/supports/
>
> I followed the other RTE_REGEXDEV_CAPA_ definitions
> I can fix it here
>
> >
> > What means "retired"?
>
> This was the original description in the rte_regexdev.h:
>
> #define RTE_REGEX_QUEUE_PAIR_CFG_OOS_F (1ULL << 0)
> /**< Out of order scan, If not set, a scan must retire after previously issued
> * in-order scans to this queue pair. If set, this scan can be retired as soon
> * as device returns completion. Application should not set out of order scan
> * flag if it needs to maintain the ingress order of scan request.
>
I agree with Thomas, it is not very clear, The idea was to show that a scan can return a result
From newer job/search on a specific queue before a previous job on the same queue is completed.
Best,
Ori
> >
> > > + * as soon as device returns completion.
> > > + *
> > > + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> > > + * @see struct rte_regexdev_info::regexdev_capa */
> >
> >
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH v1] regexdev: add OOS capability definition
2020-10-21 7:15 ` Ori Kam
@ 2020-10-21 7:39 ` Guy Kaneti
2020-10-21 7:53 ` Thomas Monjalon
0 siblings, 1 reply; 11+ messages in thread
From: Guy Kaneti @ 2020-10-21 7:39 UTC (permalink / raw)
To: Ori Kam, NBU-Contact-Thomas Monjalon
Cc: dev, Smadar Fuks, Dovrat Zifroni, Jerin Jacob Kollanukkaran
> -----Original Message-----
> From: Ori Kam <orika@nvidia.com>
> Sent: Wednesday, October 21, 2020 10:15 AM
> To: Guy Kaneti <guyk@marvell.com>; NBU-Contact-Thomas Monjalon
> <thomas@monjalon.net>
> Cc: dev@dpdk.org; Smadar Fuks <smadarf@marvell.com>; Dovrat Zifroni
> <dovrat@marvell.com>; Jerin Jacob Kollanukkaran <jerinj@marvell.com>
> Subject: RE: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS capability
> definition
>
> Hi
>
> > -----Original Message-----
> > From: Guy Kaneti <guyk@marvell.com>
> > Sent: Tuesday, October 20, 2020 5:24 PM
> > Subject: RE: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS
> > capability definition
> >
> >
> >
> > > -----Original Message-----
> > > From: Thomas Monjalon <thomas@monjalon.net>
> > > Sent: Tuesday, October 20, 2020 3:37 PM
> > > To: Guy Kaneti <guyk@marvell.com>
> > > Cc: orika@nvidia.com; dev@dpdk.org; Smadar Fuks
> > > <smadarf@marvell.com>; Dovrat Zifroni <dovrat@marvell.com>; Jerin
> > > Jacob Kollanukkaran <jerinj@marvell.com>
> > > Subject: [EXT] Re: [dpdk-dev] [PATCH v1] regexdev: add OOS
> > > capability definition
> > >
> > > External Email
> > >
> > > --------------------------------------------------------------------
> > > --
> > > 20/10/2020 10:16, guyk@marvell.com:
> > > > From: Guy Kaneti <guyk@marvell.com>
> > > >
> > > > Add out of order scan capability to check PMD support for OOS.
> > > >
> > > > Signed-off-by: Guy Kaneti <guyk@marvell.com>
> > > > ---
> > > > --- a/lib/librte_regexdev/rte_regexdev.h
> > > > +++ b/lib/librte_regexdev/rte_regexdev.h
> > > > +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
> /**<
> > > RegEx
> > > > +device support out of order scan, this means the scan can be
> > > > +retired
> > >
> > > s/support/supports/
> >
> > I followed the other RTE_REGEXDEV_CAPA_ definitions I can fix it here
> >
> > >
> > > What means "retired"?
> >
> > This was the original description in the rte_regexdev.h:
> >
> > #define RTE_REGEX_QUEUE_PAIR_CFG_OOS_F (1ULL << 0) /**< Out of
> order
> > scan, If not set, a scan must retire after previously issued
> > * in-order scans to this queue pair. If set, this scan can be retired
> > as soon
> > * as device returns completion. Application should not set out of
> > order scan
> > * flag if it needs to maintain the ingress order of scan request.
> >
> I agree with Thomas, it is not very clear, The idea was to show that a scan can
> return a result From newer job/search on a specific queue before a previous
> job on the same queue is completed.
How about this description:
/**< RegEx device supports out of order scan.
* Out of order scan means the response of a specific job can be returned as
* soon as it is ready even if previous jobs on the same queue didn't complete.
*
>
> Best,
> Ori
>
> > >
> > > > + * as soon as device returns completion.
> > > > + *
> > > > + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> > > > + * @see struct rte_regexdev_info::regexdev_capa */
> > >
> > >
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [EXT] Re: [PATCH v1] regexdev: add OOS capability definition
2020-10-21 7:39 ` Guy Kaneti
@ 2020-10-21 7:53 ` Thomas Monjalon
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Monjalon @ 2020-10-21 7:53 UTC (permalink / raw)
To: Ori Kam, Guy Kaneti
Cc: dev, Smadar Fuks, Dovrat Zifroni, Jerin Jacob Kollanukkaran
21/10/2020 09:39, Guy Kaneti:
> From: Ori Kam <orika@nvidia.com>
> > From: Guy Kaneti <guyk@marvell.com>
> > > From: Thomas Monjalon <thomas@monjalon.net>
> > > > 20/10/2020 10:16, guyk@marvell.com:
> > > > > From: Guy Kaneti <guyk@marvell.com>
> > > > >
> > > > > Add out of order scan capability to check PMD support for OOS.
> > > > >
> > > > > Signed-off-by: Guy Kaneti <guyk@marvell.com>
> > > > > ---
> > > > > --- a/lib/librte_regexdev/rte_regexdev.h
> > > > > +++ b/lib/librte_regexdev/rte_regexdev.h
> > > > > +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
> > /**<
> > > > RegEx
> > > > > +device support out of order scan, this means the scan can be
> > > > > +retired
> > > >
> > > > s/support/supports/
> > >
> > > I followed the other RTE_REGEXDEV_CAPA_ definitions I can fix it here
> > >
> > > >
> > > > What means "retired"?
> > >
> > > This was the original description in the rte_regexdev.h:
> > >
> > > #define RTE_REGEX_QUEUE_PAIR_CFG_OOS_F (1ULL << 0) /**< Out of
> > order
> > > scan, If not set, a scan must retire after previously issued
> > > * in-order scans to this queue pair. If set, this scan can be retired
> > > as soon
> > > * as device returns completion. Application should not set out of
> > > order scan
> > > * flag if it needs to maintain the ingress order of scan request.
> > >
> > I agree with Thomas, it is not very clear, The idea was to show that a scan can
> > return a result From newer job/search on a specific queue before a previous
> > job on the same queue is completed.
>
> How about this description:
>
> /**< RegEx device supports out of order scan.
> * Out of order scan means the response of a specific job can be returned as
> * soon as it is ready even if previous jobs on the same queue didn't complete.
A lot better :)
Thanks
^ permalink raw reply [flat|nested] 11+ messages in thread
* [dpdk-dev] [PATCH v2] regexdev: add OOS capability definition
2020-10-20 8:16 [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition guyk
2020-10-20 9:11 ` Ori Kam
2020-10-20 12:37 ` Thomas Monjalon
@ 2020-10-21 8:03 ` guyk
2020-10-21 9:17 ` Ori Kam
2 siblings, 1 reply; 11+ messages in thread
From: guyk @ 2020-10-21 8:03 UTC (permalink / raw)
To: orika; +Cc: thomas, guyk, smadarf, dovrat, dev, jerinj
From: Guy Kaneti <guyk@marvell.com>
Add out of order scan capability to check PMD
support for OOS.
Signed-off-by: Guy Kaneti <guyk@marvell.com>
---
v2 - fix definition comment
---
lib/librte_regexdev/rte_regexdev.h | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/lib/librte_regexdev/rte_regexdev.h b/lib/librte_regexdev/rte_regexdev.h
index 4077e62c9..000165892 100644
--- a/lib/librte_regexdev/rte_regexdev.h
+++ b/lib/librte_regexdev/rte_regexdev.h
@@ -474,6 +474,15 @@ rte_regexdev_get_dev_id(const char *name);
* @see RTE_REGEXDEV_CFG_MATCH_ALL_F
*/
+#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
+/**< RegEx device supports out of order scan.
+ * Out of order scan means the response of a specific job can be returned as
+ * soon as it is ready even if previous jobs on the same queue didn't complete.
+ *
+ * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
+ * @see struct rte_regexdev_info::regexdev_capa
+ */
+
/* Enumerates PCRE rule flags */
#define RTE_REGEX_PCRE_RULE_ALLOW_EMPTY_F (1ULL << 0)
/**< When this flag is set, the pattern that can match against an empty string,
--
2.28.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [PATCH v2] regexdev: add OOS capability definition
2020-10-21 8:03 ` [dpdk-dev] [PATCH v2] " guyk
@ 2020-10-21 9:17 ` Ori Kam
2020-10-27 9:19 ` Guy Kaneti
2020-11-03 0:35 ` Thomas Monjalon
0 siblings, 2 replies; 11+ messages in thread
From: Ori Kam @ 2020-10-21 9:17 UTC (permalink / raw)
To: guyk; +Cc: NBU-Contact-Thomas Monjalon, smadarf, dovrat, dev, jerinj
> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of guyk@marvell.com
> Sent: Wednesday, October 21, 2020 11:04 AM
> Subject: [dpdk-dev] [PATCH v2] regexdev: add OOS capability definition
>
> From: Guy Kaneti <guyk@marvell.com>
>
> Add out of order scan capability to check PMD
> support for OOS.
>
> Signed-off-by: Guy Kaneti <guyk@marvell.com>
> ---
> v2 - fix definition comment
> ---
> lib/librte_regexdev/rte_regexdev.h | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/lib/librte_regexdev/rte_regexdev.h
> b/lib/librte_regexdev/rte_regexdev.h
> index 4077e62c9..000165892 100644
> --- a/lib/librte_regexdev/rte_regexdev.h
> +++ b/lib/librte_regexdev/rte_regexdev.h
> @@ -474,6 +474,15 @@ rte_regexdev_get_dev_id(const char *name);
> * @see RTE_REGEXDEV_CFG_MATCH_ALL_F
> */
>
> +#define RTE_REGEXDEV_CAPA_QUEUE_PAIR_OOS_F (1ULL << 22)
> +/**< RegEx device supports out of order scan.
> + * Out of order scan means the response of a specific job can be returned as
> + * soon as it is ready even if previous jobs on the same queue didn't complete.
> + *
> + * @see RTE_REGEX_QUEUE_PAIR_CFG_OOS_F
> + * @see struct rte_regexdev_info::regexdev_capa
> + */
> +
> /* Enumerates PCRE rule flags */
> #define RTE_REGEX_PCRE_RULE_ALLOW_EMPTY_F (1ULL << 0)
> /**< When this flag is set, the pattern that can match against an empty string,
> --
> 2.28.0
Acked-by: Ori Kam <orika@nvidia.com>
Thanks,
Ori
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [PATCH v2] regexdev: add OOS capability definition
2020-10-21 9:17 ` Ori Kam
@ 2020-10-27 9:19 ` Guy Kaneti
2020-11-03 0:35 ` Thomas Monjalon
1 sibling, 0 replies; 11+ messages in thread
From: Guy Kaneti @ 2020-10-27 9:19 UTC (permalink / raw)
To: Ori Kam, NBU-Contact-Thomas Monjalon
Cc: Smadar Fuks, Dovrat Zifroni, dev, Jerin Jacob Kollanukkaran
Hi,
>
> Acked-by: Ori Kam <orika@nvidia.com>
> Thanks,
> Ori
Kind reminder to all maintainers.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [dpdk-dev] [PATCH v2] regexdev: add OOS capability definition
2020-10-21 9:17 ` Ori Kam
2020-10-27 9:19 ` Guy Kaneti
@ 2020-11-03 0:35 ` Thomas Monjalon
1 sibling, 0 replies; 11+ messages in thread
From: Thomas Monjalon @ 2020-11-03 0:35 UTC (permalink / raw)
To: guyk; +Cc: dev, smadarf, dovrat, jerinj, Ori Kam
> > From: Guy Kaneti <guyk@marvell.com>
> >
> > Add out of order scan capability to check PMD
> > support for OOS.
> >
> > Signed-off-by: Guy Kaneti <guyk@marvell.com>
>
> Acked-by: Ori Kam <orika@nvidia.com>
Applied, thanks
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-11-03 0:35 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20 8:16 [dpdk-dev] [PATCH v1] regexdev: add OOS capability definition guyk
2020-10-20 9:11 ` Ori Kam
2020-10-20 12:37 ` Thomas Monjalon
2020-10-20 14:24 ` [dpdk-dev] [EXT] " Guy Kaneti
2020-10-21 7:15 ` Ori Kam
2020-10-21 7:39 ` Guy Kaneti
2020-10-21 7:53 ` Thomas Monjalon
2020-10-21 8:03 ` [dpdk-dev] [PATCH v2] " guyk
2020-10-21 9:17 ` Ori Kam
2020-10-27 9:19 ` Guy Kaneti
2020-11-03 0:35 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).