Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-09-01 Thread Jerin Jacob
On Fri, Sep 1, 2023 at 4:23 PM Mattias Rönnblom wrote: > > On 2023-08-18 08:09, Jerin Jacob wrote: > > > > > 2) Have new library lib/event_dispatcher > > > > Should the library be named event_dispatcher, or simply dispatcher? Looks good to me. > > Underscore in library isn't exactly aesthetical

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-09-01 Thread Mattias Rönnblom
On 2023-08-18 08:09, Jerin Jacob wrote: 2) Have new library lib/event_dispatcher Should the library be named event_dispatcher, or simply dispatcher? Underscore in library isn't exactly aesthetically pleasing, and shorter is better. Also, the rte_event_* namespace is avoided altogether.

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-08-25 Thread Jerin Jacob
On Thu, Aug 24, 2023 at 4:47 PM Mattias Rönnblom wrote: > > On 2023-08-22 14:32, Jerin Jacob wrote: > >> Well, Eventdev does that already, except on systems where all required > >> event adapters have the appropriate INTERNAL_PORT capability. > > > > Yes. The difference is, one is for HW feature

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-08-24 Thread Mattias Rönnblom
On 2023-08-22 14:32, Jerin Jacob wrote: On Tue, Aug 22, 2023 at 2:12 PM Mattias Rönnblom wrote: On 2023-08-18 08:09, Jerin Jacob wrote: On Fri, Jun 16, 2023 at 1:17 PM Mattias Rönnblom wrote: Hi Mattais, Finally, got some time to review this series, and thanks for excellent documentatio

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-08-22 Thread Jerin Jacob
On Tue, Aug 22, 2023 at 2:12 PM Mattias Rönnblom wrote: > > On 2023-08-18 08:09, Jerin Jacob wrote: > > On Fri, Jun 16, 2023 at 1:17 PM Mattias Rönnblom > > wrote: > >> > > > > Hi Mattais, > > > > Finally, got some time to review this series, and thanks for excellent > > documentation. > > > > I

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-08-22 Thread Mattias Rönnblom
On 2023-08-18 08:09, Jerin Jacob wrote: On Fri, Jun 16, 2023 at 1:17 PM Mattias Rönnblom wrote: The purpose of the event dispatcher is to help reduce coupling in an Eventdev-based DPDK application. In addition, the event dispatcher also provides a convenient and flexible way for the applicati

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-08-17 Thread Jerin Jacob
On Fri, Jun 16, 2023 at 1:17 PM Mattias Rönnblom wrote: > > The purpose of the event dispatcher is to help reduce coupling in an > Eventdev-based DPDK application. > > In addition, the event dispatcher also provides a convenient and > flexible way for the application to use service cores for > app

[PATCH v2 1/3] eventdev: introduce event dispatcher

2023-06-16 Thread Mattias Rönnblom
The purpose of the event dispatcher is to help reduce coupling in an Eventdev-based DPDK application. In addition, the event dispatcher also provides a convenient and flexible way for the application to use service cores for application-level processing. Signed-off-by: Mattias Rönnblom Tested-by