Re: [PATCH] event/dsw: fix missing device pointer

2023-10-18 Thread Bruce Richardson
On Wed, Oct 18, 2023 at 10:48:14AM +0530, Jerin Jacob wrote: > On Tue, Oct 17, 2023 at 10:21 PM Jerin Jacob wrote: > > > > On Tue, Oct 17, 2023 at 9:45 PM Bruce Richardson > > wrote: > > > > > > On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: > > > > On Tue, Oct 17, 2023 at 9:32 PM B

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-18 Thread Bruce Richardson
On Wed, Oct 18, 2023 at 10:48:14AM +0530, Jerin Jacob wrote: > On Tue, Oct 17, 2023 at 10:21 PM Jerin Jacob wrote: > > > > On Tue, Oct 17, 2023 at 9:45 PM Bruce Richardson > > wrote: > > > > > > On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: > > > > On Tue, Oct 17, 2023 at 9:32 PM B

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Mattias Rönnblom
On 2023-10-18 07:18, Jerin Jacob wrote: On Tue, Oct 17, 2023 at 10:21 PM Jerin Jacob wrote: On Tue, Oct 17, 2023 at 9:45 PM Bruce Richardson wrote: On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson wrote: After calling rte_even

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Jerin Jacob
On Tue, Oct 17, 2023 at 10:21 PM Jerin Jacob wrote: > > On Tue, Oct 17, 2023 at 9:45 PM Bruce Richardson > wrote: > > > > On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: > > > On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson > > > wrote: > > > > > > > > After calling rte_event_dev_i

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Jerin Jacob
On Tue, Oct 17, 2023 at 9:45 PM Bruce Richardson wrote: > > On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: > > On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson > > wrote: > > > > > > After calling rte_event_dev_info_get() the ".dev" field of the info > > > structure should have a po

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Bruce Richardson
On Tue, Oct 17, 2023 at 09:34:04PM +0530, Jerin Jacob wrote: > On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson > wrote: > > > > After calling rte_event_dev_info_get() the ".dev" field of the info > > structure should have a pointer to the underlying device, allowing the > > user to e.g. get the d

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread David Marchand
On Tue, Oct 17, 2023 at 6:04 PM Jerin Jacob wrote: > > On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson > wrote: > > > > After calling rte_event_dev_info_get() the ".dev" field of the info > > structure should have a pointer to the underlying device, allowing the > > user to e.g. get the device n

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Jerin Jacob
On Tue, Oct 17, 2023 at 9:32 PM Bruce Richardson wrote: > > After calling rte_event_dev_info_get() the ".dev" field of the info > structure should have a pointer to the underlying device, allowing the > user to e.g. get the device name using using rte_dev_name(info.dev). > > The distributed softwa

Re: [PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Bruce Richardson
On Tue, Oct 17, 2023 at 04:45:32PM +0100, Bruce Richardson wrote: > After calling rte_event_dev_info_get() the ".dev" field of the info > structure should have a pointer to the underlying device, allowing the > user to e.g. get the device name using using rte_dev_name(info.dev). > > The distribute

[PATCH] event/dsw: fix missing device pointer

2023-10-17 Thread Bruce Richardson
After calling rte_event_dev_info_get() the ".dev" field of the info structure should have a pointer to the underlying device, allowing the user to e.g. get the device name using using rte_dev_name(info.dev). The distributed software eventdev info structure did not return a correct device pointer,