Re: [PATCH] event/dlb2: improve enqueue efficiency

2022-06-09 Thread Jerin Jacob
On Mon, Jun 6, 2022 at 9:15 PM Timothy McDaniel wrote: > > Validate credit configuration. Remove the above line on applying. Applied to dpdk-next-net-eventdev/for-main. Thanks > > If user tried to send 64 events, it will take 64 credits. Enqueue API > only gets 32 credits each time. If it does

[PATCH] event/dlb2: improve enqueue efficiency

2022-06-06 Thread Timothy McDaniel
Validate credit configuration. If user tried to send 64 events, it will take 64 credits. Enqueue API only gets 32 credits each time. If it does not have sufficient credits, it just fails and returns. Enqueue API does not retry. On next enqueue, it will get 32 more and send will work. This results

[PATCH] event/dlb2: improve enqueue efficiency

2022-06-06 Thread Timothy McDaniel
Validate credit configuration. If user tried to send 64 events, it will take 64 credits. Enqueue API only gets 32 credits each time. If it does not have sufficient credits, it just fails and returns. Enqueue API does not retry. On next enqueue, it will get 32 more and send will work. This results

[PATCH] event/dlb2: improve enqueue efficiency

2022-06-06 Thread Timothy McDaniel
Validate credit configuration. If user tried to send 64 events, it will take 64 credits. Enqueue API only gets 32 credits each time. If it does not have sufficient credits, it just fails and returns. Enqueue API does not retry. On next enqueue, it will get 32 more and send will work. This results