DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
@ 2019-05-03 16:45 Mattias Rönnblom
  2019-05-03 16:45 ` Mattias Rönnblom
  2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
  0 siblings, 2 replies; 6+ messages in thread
From: Mattias Rönnblom @ 2019-05-03 16:45 UTC (permalink / raw)
  To: dev; +Cc: Mattias Rönnblom

The DSW event device didn't set RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
capabilities.

Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")

Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
---
 drivers/event/dsw/dsw_evdev.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/event/dsw/dsw_evdev.c b/drivers/event/dsw/dsw_evdev.c
index 33ba13647..4157d130c 100644
--- a/drivers/event/dsw/dsw_evdev.c
+++ b/drivers/event/dsw/dsw_evdev.c
@@ -217,7 +217,9 @@ dsw_info_get(struct rte_eventdev *dev __rte_unused,
 		.max_event_port_enqueue_depth = DSW_MAX_PORT_ENQUEUE_DEPTH,
 		.max_num_events = DSW_MAX_EVENTS,
 		.event_dev_cap = RTE_EVENT_DEV_CAP_BURST_MODE|
-		RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED
+		RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED|
+		RTE_EVENT_DEV_CAP_NONSEQ_MODE|
+		RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
 	};
 }
 
-- 
2.17.1

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
  2019-05-03 16:45 [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities Mattias Rönnblom
@ 2019-05-03 16:45 ` Mattias Rönnblom
  2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
  1 sibling, 0 replies; 6+ messages in thread
From: Mattias Rönnblom @ 2019-05-03 16:45 UTC (permalink / raw)
  To: dev; +Cc: Mattias Rönnblom

The DSW event device didn't set RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
capabilities.

Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")

Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
---
 drivers/event/dsw/dsw_evdev.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/event/dsw/dsw_evdev.c b/drivers/event/dsw/dsw_evdev.c
index 33ba13647..4157d130c 100644
--- a/drivers/event/dsw/dsw_evdev.c
+++ b/drivers/event/dsw/dsw_evdev.c
@@ -217,7 +217,9 @@ dsw_info_get(struct rte_eventdev *dev __rte_unused,
 		.max_event_port_enqueue_depth = DSW_MAX_PORT_ENQUEUE_DEPTH,
 		.max_num_events = DSW_MAX_EVENTS,
 		.event_dev_cap = RTE_EVENT_DEV_CAP_BURST_MODE|
-		RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED
+		RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED|
+		RTE_EVENT_DEV_CAP_NONSEQ_MODE|
+		RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
 	};
 }
 
-- 
2.17.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
  2019-05-03 16:45 [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities Mattias Rönnblom
  2019-05-03 16:45 ` Mattias Rönnblom
@ 2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
  2019-05-03 19:18   ` Jerin Jacob Kollanukkaran
  2019-05-03 20:54   ` Thomas Monjalon
  1 sibling, 2 replies; 6+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-05-03 19:18 UTC (permalink / raw)
  To: Mattias Rönnblom, dev

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Mattias Rönnblom
> Sent: Friday, May 3, 2019 10:16 PM
> To: dev@dpdk.org
> Cc: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
> Subject: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
> 
> The DSW event device didn't set
> RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
> and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
> capabilities.
> 

Cc: stable@dpdk.org

> Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")
> 
> Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>

Acked-by: Jerin Jacob <jerinj@marvell.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
  2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
@ 2019-05-03 19:18   ` Jerin Jacob Kollanukkaran
  2019-05-03 20:54   ` Thomas Monjalon
  1 sibling, 0 replies; 6+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-05-03 19:18 UTC (permalink / raw)
  To: Mattias Rönnblom, dev

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Mattias Rönnblom
> Sent: Friday, May 3, 2019 10:16 PM
> To: dev@dpdk.org
> Cc: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
> Subject: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
> 
> The DSW event device didn't set
> RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
> and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
> capabilities.
> 

Cc: stable@dpdk.org

> Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")
> 
> Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>

Acked-by: Jerin Jacob <jerinj@marvell.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
  2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
  2019-05-03 19:18   ` Jerin Jacob Kollanukkaran
@ 2019-05-03 20:54   ` Thomas Monjalon
  2019-05-03 20:54     ` Thomas Monjalon
  1 sibling, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2019-05-03 20:54 UTC (permalink / raw)
  To: Mattias Rönnblom; +Cc: dev, Jerin Jacob Kollanukkaran

03/05/2019 21:18, Jerin Jacob Kollanukkaran:
> From: dev <dev-bounces@dpdk.org> On Behalf Of Mattias Rönnblom
> > 
> > The DSW event device didn't set
> > RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
> > and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
> > capabilities.
> > 
> 
> Cc: stable@dpdk.org
> 
> > Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")
> > 
> > Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
> 
> Acked-by: Jerin Jacob <jerinj@marvell.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities
  2019-05-03 20:54   ` Thomas Monjalon
@ 2019-05-03 20:54     ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2019-05-03 20:54 UTC (permalink / raw)
  To: Mattias Rönnblom; +Cc: dev, Jerin Jacob Kollanukkaran

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="UTF-8", Size: 545 bytes --]

03/05/2019 21:18, Jerin Jacob Kollanukkaran:
> From: dev <dev-bounces@dpdk.org> On Behalf Of Mattias Rönnblom
> > 
> > The DSW event device didn't set
> > RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT
> > and RTE_EVENT_DEV_CAP_NONSEQ_MODE, even though it has both these
> > capabilities.
> > 
> 
> Cc: stable@dpdk.org
> 
> > Fixes: 4540ee9c68 ("event/dsw: add device and queue configuration")
> > 
> > Signed-off-by: Mattias Rönnblom <mattias.ronnblom@ericsson.com>
> 
> Acked-by: Jerin Jacob <jerinj@marvell.com>

Applied, thanks



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-05-03 20:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-03 16:45 [dpdk-dev] [PATCH] event/dsw: fix dsw capabilities Mattias Rönnblom
2019-05-03 16:45 ` Mattias Rönnblom
2019-05-03 19:18 ` Jerin Jacob Kollanukkaran
2019-05-03 19:18   ` Jerin Jacob Kollanukkaran
2019-05-03 20:54   ` Thomas Monjalon
2019-05-03 20:54     ` 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).