Re: [dpdk-dev] [PATCH 20/22] event/dlb2: add queue and port release

2020-10-07 Thread Eads, Gage
> static void > +dlb2_eventdev_queue_release(struct rte_eventdev *dev, uint8_t id) > +{ > + RTE_SET_USED(dev); > + RTE_SET_USED(id); > + > + /* This function intentionally left blank. dlb2 does not support > + * reconfiguring individual queues or ports -- the entire device > +

[dpdk-dev] [PATCH 20/22] event/dlb2: add queue and port release

2020-09-11 Thread Timothy McDaniel
These entry points are NO-OPS. DLB does not support reconfiguring individual queues or ports. The entire device must be reconfigured. Signed-off-by: Timothy McDaniel --- drivers/event/dlb2/dlb2.c | 25 + 1 file changed, 25 insertions(+) diff --git a/drivers/event/dlb2/dl