DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] doc: announce changes to event vector structure
@ 2022-06-28 11:28 pbhagavatula
  2022-07-11 14:56 ` Jerin Jacob
  2022-07-17 12:48 ` Thomas Monjalon
  0 siblings, 2 replies; 6+ messages in thread
From: pbhagavatula @ 2022-06-28 11:28 UTC (permalink / raw)
  To: jerinj, Ray Kinsella; +Cc: dev, Pavan Nikhilesh

From: Pavan Nikhilesh <pbhagavatula@marvell.com>

The structure ``rte_event_vector`` will be modified to include
``elem_offset:12`` bits taken from ``rsvd:15``.
The ``elem_offset`` defines the offset into the vector array from
which valid elements are present.

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
---
 doc/guides/rel_notes/deprecation.rst | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 4e5b23c53d..d7933629f2 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -125,3 +125,10 @@ Deprecation Notices
   applications should be updated to use the ``dmadev`` library instead,
   with the underlying HW-functionality being provided by the ``ioat`` or
   ``idxd`` dma drivers
+
+* eventdev: The structure ``rte_event_vector`` will be modified to include
+  ``elem_offset:12`` bits taken from ``rsvd:15``. The ``elem_offset`` defines
+  the offset into the vector array from which valid elements are present.
+  The difference between ``rte_event_vector::nb_elem`` and
+  ``rte_event_vector::elem_offset`` gives the number of valid elements left to
+  process from the ``rte_event_vector::elem_offset``.
-- 
2.25.1


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

* Re: [PATCH] doc: announce changes to event vector structure
  2022-06-28 11:28 [PATCH] doc: announce changes to event vector structure pbhagavatula
@ 2022-07-11 14:56 ` Jerin Jacob
  2022-07-12 14:57   ` Thomas Monjalon
  2022-07-17 12:48 ` Thomas Monjalon
  1 sibling, 1 reply; 6+ messages in thread
From: Jerin Jacob @ 2022-07-11 14:56 UTC (permalink / raw)
  To: Pavan Nikhilesh; +Cc: Jerin Jacob, Ray Kinsella, dpdk-dev

On Tue, Jun 28, 2022 at 5:01 PM <pbhagavatula@marvell.com> wrote:
>
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
>
> The structure ``rte_event_vector`` will be modified to include
> ``elem_offset:12`` bits taken from ``rsvd:15``.
> The ``elem_offset`` defines the offset into the vector array from
> which valid elements are present.
>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>


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


> ---
>  doc/guides/rel_notes/deprecation.rst | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 4e5b23c53d..d7933629f2 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -125,3 +125,10 @@ Deprecation Notices
>    applications should be updated to use the ``dmadev`` library instead,
>    with the underlying HW-functionality being provided by the ``ioat`` or
>    ``idxd`` dma drivers
> +
> +* eventdev: The structure ``rte_event_vector`` will be modified to include
> +  ``elem_offset:12`` bits taken from ``rsvd:15``. The ``elem_offset`` defines
> +  the offset into the vector array from which valid elements are present.
> +  The difference between ``rte_event_vector::nb_elem`` and
> +  ``rte_event_vector::elem_offset`` gives the number of valid elements left to
> +  process from the ``rte_event_vector::elem_offset``.
> --
> 2.25.1
>

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

* Re: [PATCH] doc: announce changes to event vector structure
  2022-07-11 14:56 ` Jerin Jacob
@ 2022-07-12 14:57   ` Thomas Monjalon
  2022-07-12 16:06     ` McDaniel, Timothy
  2022-07-13  6:53     ` Gujjar, Abhinandan S
  0 siblings, 2 replies; 6+ messages in thread
From: Thomas Monjalon @ 2022-07-12 14:57 UTC (permalink / raw)
  To: Pavan Nikhilesh
  Cc: dev, Jerin Jacob, Ray Kinsella, Jerin Jacob, jay.jayatheerthan,
	erik.g.carrillo, abhinandan.gujjar, timothy.mcdaniel,
	hemant.agrawal, harry.van.haaren, mattias.ronnblom, liangma

Tip to get more reviews: add interested maintainers in Cc.
Adding Jay, Erik, Abhinandan, Timothy, Hemant, Harry, Mattias and Liang.


11/07/2022 16:56, Jerin Jacob:
> On Tue, Jun 28, 2022 at 5:01 PM <pbhagavatula@marvell.com> wrote:
> >
> > From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> >
> > The structure ``rte_event_vector`` will be modified to include
> > ``elem_offset:12`` bits taken from ``rsvd:15``.
> > The ``elem_offset`` defines the offset into the vector array from
> > which valid elements are present.
> >
> > Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> 
> Acked-by: Jerin Jacob <jerinj@marvell.com>
> 
> 
> > ---
> >  doc/guides/rel_notes/deprecation.rst | 7 +++++++
> >  1 file changed, 7 insertions(+)
> >
> > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> > index 4e5b23c53d..d7933629f2 100644
> > --- a/doc/guides/rel_notes/deprecation.rst
> > +++ b/doc/guides/rel_notes/deprecation.rst
> > @@ -125,3 +125,10 @@ Deprecation Notices
> >    applications should be updated to use the ``dmadev`` library instead,
> >    with the underlying HW-functionality being provided by the ``ioat`` or
> >    ``idxd`` dma drivers
> > +
> > +* eventdev: The structure ``rte_event_vector`` will be modified to include
> > +  ``elem_offset:12`` bits taken from ``rsvd:15``. The ``elem_offset`` defines
> > +  the offset into the vector array from which valid elements are present.
> > +  The difference between ``rte_event_vector::nb_elem`` and
> > +  ``rte_event_vector::elem_offset`` gives the number of valid elements left to
> > +  process from the ``rte_event_vector::elem_offset``.
> > --
> > 2.25.1
> >
> 






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

* RE: [PATCH] doc: announce changes to event vector structure
  2022-07-12 14:57   ` Thomas Monjalon
@ 2022-07-12 16:06     ` McDaniel, Timothy
  2022-07-13  6:53     ` Gujjar, Abhinandan S
  1 sibling, 0 replies; 6+ messages in thread
From: McDaniel, Timothy @ 2022-07-12 16:06 UTC (permalink / raw)
  To: Thomas Monjalon, Pavan Nikhilesh
  Cc: dev, Jerin Jacob, Ray Kinsella, Jerin Jacob, Jayatheerthan, Jay,
	Carrillo, Erik G, Gujjar, Abhinandan S, hemant.agrawal,
	Van Haaren, Harry, mattias.ronnblom, liangma



> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: Tuesday, July 12, 2022 9:57 AM
> To: Pavan Nikhilesh <pbhagavatula@marvell.com>
> Cc: dev@dpdk.org; Jerin Jacob <jerinj@marvell.com>; Ray Kinsella
> <mdr@ashroe.eu>; Jerin Jacob <jerinjacobk@gmail.com>; Jayatheerthan, Jay
> <jay.jayatheerthan@intel.com>; Carrillo, Erik G <erik.g.carrillo@intel.com>;
> Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>; McDaniel, Timothy
> <timothy.mcdaniel@intel.com>; hemant.agrawal@nxp.com; Van Haaren, Harry
> <harry.van.haaren@intel.com>; mattias.ronnblom
> <mattias.ronnblom@ericsson.com>; liangma@liangbit.com
> Subject: Re: [PATCH] doc: announce changes to event vector structure
> 
> Tip to get more reviews: add interested maintainers in Cc.
> Adding Jay, Erik, Abhinandan, Timothy, Hemant, Harry, Mattias and Liang.
> 
> 
> 11/07/2022 16:56, Jerin Jacob:
> > On Tue, Jun 28, 2022 at 5:01 PM <pbhagavatula@marvell.com> wrote:
> > >
> > > From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> > >
> > > The structure ``rte_event_vector`` will be modified to include
> > > ``elem_offset:12`` bits taken from ``rsvd:15``.
> > > The ``elem_offset`` defines the offset into the vector array from
> > > which valid elements are present.
> > >
> > > Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> >
> >
> > Acked-by: Jerin Jacob <jerinj@marvell.com>
> >
> >
> > > ---
> > >  doc/guides/rel_notes/deprecation.rst | 7 +++++++
> > >  1 file changed, 7 insertions(+)
> > >
> > > diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> > > index 4e5b23c53d..d7933629f2 100644
> > > --- a/doc/guides/rel_notes/deprecation.rst
> > > +++ b/doc/guides/rel_notes/deprecation.rst
> > > @@ -125,3 +125,10 @@ Deprecation Notices
> > >    applications should be updated to use the ``dmadev`` library instead,
> > >    with the underlying HW-functionality being provided by the ``ioat`` or
> > >    ``idxd`` dma drivers
> > > +
> > > +* eventdev: The structure ``rte_event_vector`` will be modified to include
> > > +  ``elem_offset:12`` bits taken from ``rsvd:15``. The ``elem_offset`` defines
> > > +  the offset into the vector array from which valid elements are present.
> > > +  The difference between ``rte_event_vector::nb_elem`` and
> > > +  ``rte_event_vector::elem_offset`` gives the number of valid elements left
> to
> > > +  process from the ``rte_event_vector::elem_offset``.
> > > --
> > > 2.25.1
> > >

Looks good to me.

Acked-by: Timothy McDaniel <timothy.mcdaniel@intel.com>

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

* RE: [PATCH] doc: announce changes to event vector structure
  2022-07-12 14:57   ` Thomas Monjalon
  2022-07-12 16:06     ` McDaniel, Timothy
@ 2022-07-13  6:53     ` Gujjar, Abhinandan S
  1 sibling, 0 replies; 6+ messages in thread
From: Gujjar, Abhinandan S @ 2022-07-13  6:53 UTC (permalink / raw)
  To: Thomas Monjalon, Pavan Nikhilesh
  Cc: dev, Jerin Jacob, Ray Kinsella, Jerin Jacob, Jayatheerthan, Jay,
	Carrillo, Erik G, McDaniel, Timothy, hemant.agrawal, Van Haaren,
	Harry, mattias.ronnblom, liangma



> -----Original Message-----
> From: Thomas Monjalon <thomas@monjalon.net>
> Sent: Tuesday, July 12, 2022 8:27 PM
> To: Pavan Nikhilesh <pbhagavatula@marvell.com>
> Cc: dev@dpdk.org; Jerin Jacob <jerinj@marvell.com>; Ray Kinsella
> <mdr@ashroe.eu>; Jerin Jacob <jerinjacobk@gmail.com>; Jayatheerthan, Jay
> <jay.jayatheerthan@intel.com>; Carrillo, Erik G <erik.g.carrillo@intel.com>;
> Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>; McDaniel, Timothy
> <timothy.mcdaniel@intel.com>; hemant.agrawal@nxp.com; Van Haaren, Harry
> <harry.van.haaren@intel.com>; mattias.ronnblom
> <mattias.ronnblom@ericsson.com>; liangma@liangbit.com
> Subject: Re: [PATCH] doc: announce changes to event vector structure
> 
> Tip to get more reviews: add interested maintainers in Cc.
> Adding Jay, Erik, Abhinandan, Timothy, Hemant, Harry, Mattias and Liang.
> 
> 
> 11/07/2022 16:56, Jerin Jacob:
> > On Tue, Jun 28, 2022 at 5:01 PM <pbhagavatula@marvell.com> wrote:
> > >
> > > From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> > >
> > > The structure ``rte_event_vector`` will be modified to include
> > > ``elem_offset:12`` bits taken from ``rsvd:15``.
> > > The ``elem_offset`` defines the offset into the vector array from
> > > which valid elements are present.
> > >
> > > Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> >
> >
> > Acked-by: Jerin Jacob <jerinj@marvell.com>
> >
> >
> > > ---
> > >  doc/guides/rel_notes/deprecation.rst | 7 +++++++
> > >  1 file changed, 7 insertions(+)
> > >
> > > diff --git a/doc/guides/rel_notes/deprecation.rst
> > > b/doc/guides/rel_notes/deprecation.rst
> > > index 4e5b23c53d..d7933629f2 100644
> > > --- a/doc/guides/rel_notes/deprecation.rst
> > > +++ b/doc/guides/rel_notes/deprecation.rst
> > > @@ -125,3 +125,10 @@ Deprecation Notices
> > >    applications should be updated to use the ``dmadev`` library instead,
> > >    with the underlying HW-functionality being provided by the ``ioat`` or
> > >    ``idxd`` dma drivers
> > > +
> > > +* eventdev: The structure ``rte_event_vector`` will be modified to
> > > +include
> > > +  ``elem_offset:12`` bits taken from ``rsvd:15``. The
> > > +``elem_offset`` defines
> > > +  the offset into the vector array from which valid elements are present.
> > > +  The difference between ``rte_event_vector::nb_elem`` and
> > > +  ``rte_event_vector::elem_offset`` gives the number of valid
> > > +elements left to
> > > +  process from the ``rte_event_vector::elem_offset``.
> > > --
> > > 2.25.1
> > >
> >
> 
Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>

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

* Re: [PATCH] doc: announce changes to event vector structure
  2022-06-28 11:28 [PATCH] doc: announce changes to event vector structure pbhagavatula
  2022-07-11 14:56 ` Jerin Jacob
@ 2022-07-17 12:48 ` Thomas Monjalon
  1 sibling, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2022-07-17 12:48 UTC (permalink / raw)
  To: Pavan Nikhilesh; +Cc: jerinj, Ray Kinsella, dev

28/06/2022 13:28, pbhagavatula@marvell.com:
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> The structure ``rte_event_vector`` will be modified to include
> ``elem_offset:12`` bits taken from ``rsvd:15``.
> The ``elem_offset`` defines the offset into the vector array from
> which valid elements are present.
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>

    Acked-by: Jerin Jacob <jerinj@marvell.com>
    Acked-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
    Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>

Applied, thanks.



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

end of thread, other threads:[~2022-07-17 12:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-28 11:28 [PATCH] doc: announce changes to event vector structure pbhagavatula
2022-07-11 14:56 ` Jerin Jacob
2022-07-12 14:57   ` Thomas Monjalon
2022-07-12 16:06     ` McDaniel, Timothy
2022-07-13  6:53     ` Gujjar, Abhinandan S
2022-07-17 12:48 ` 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).