All of lore.kernel.org
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net: announce changes in IPv4 header
@ 2021-08-02 10:38 Gregory Etelson
  2021-08-02 10:42 ` Andrew Rybchenko
  2021-08-02 12:10 ` Slava Ovsiienko
  0 siblings, 2 replies; 6+ messages in thread
From: Gregory Etelson @ 2021-08-02 10:38 UTC (permalink / raw)
  To: dev; +Cc: getelson, matan, rasland, orika, Ray Kinsella

Announce changes to add 2 unions. The first union will provide
integral and bits access to version and IHL. The second union will
provide integral and bits access to fragment flags and offset.

Signed-off-by: Gregory Etelson <getelson@nvidia.com>
---
 doc/guides/rel_notes/deprecation.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index d9c0e65921..46f8a10dc5 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -158,3 +158,8 @@ Deprecation Notices
 * security: The functions ``rte_security_set_pkt_metadata`` and
   ``rte_security_get_userdata`` will be made inline functions and additional
   flags will be added in structure ``rte_security_ctx`` in DPDK 21.11.
+
+* net: The structure ``rte_ipv4_hdr`` will have two unions.
+  The first union is for existing ``version_ihl`` byte and new bitfield for
+  version and IHL. The second union is for existing ``fragment_offset`` and
+  new bitfield for fragment flags and offset.
-- 
2.32.0


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

* Re: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
  2021-08-02 10:38 [dpdk-dev] [PATCH] net: announce changes in IPv4 header Gregory Etelson
@ 2021-08-02 10:42 ` Andrew Rybchenko
  2021-08-02 12:10 ` Slava Ovsiienko
  1 sibling, 0 replies; 6+ messages in thread
From: Andrew Rybchenko @ 2021-08-02 10:42 UTC (permalink / raw)
  To: Gregory Etelson, dev; +Cc: matan, rasland, orika, Ray Kinsella

On 8/2/21 1:38 PM, Gregory Etelson wrote:
> Announce changes to add 2 unions. The first union will provide
> integral and bits access to version and IHL. The second union will
> provide integral and bits access to fragment flags and offset.
> 
> Signed-off-by: Gregory Etelson <getelson@nvidia.com>

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>


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

* Re: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
  2021-08-02 10:38 [dpdk-dev] [PATCH] net: announce changes in IPv4 header Gregory Etelson
  2021-08-02 10:42 ` Andrew Rybchenko
@ 2021-08-02 12:10 ` Slava Ovsiienko
  2021-08-02 12:38   ` Akhil Goyal
  1 sibling, 1 reply; 6+ messages in thread
From: Slava Ovsiienko @ 2021-08-02 12:10 UTC (permalink / raw)
  To: Gregory Etelson, dev
  Cc: Gregory Etelson, Matan Azrad, Raslan Darawsheh, Ori Kam, Ray Kinsella

> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Gregory Etelson
> Sent: Monday, August 2, 2021 13:39
> To: dev@dpdk.org
> Cc: Gregory Etelson <getelson@nvidia.com>; Matan Azrad
> <matan@nvidia.com>; Raslan Darawsheh <rasland@nvidia.com>; Ori Kam
> <orika@nvidia.com>; Ray Kinsella <mdr@ashroe.eu>
> Subject: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
> 
> Announce changes to add 2 unions. The first union will provide integral and
> bits access to version and IHL. The second union will provide integral and bits
> access to fragment flags and offset.
> 
> Signed-off-by: Gregory Etelson <getelson@nvidia.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>


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

* Re: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
  2021-08-02 12:10 ` Slava Ovsiienko
@ 2021-08-02 12:38   ` Akhil Goyal
  2021-08-03 18:06     ` Ajit Khaparde
  0 siblings, 1 reply; 6+ messages in thread
From: Akhil Goyal @ 2021-08-02 12:38 UTC (permalink / raw)
  To: Slava Ovsiienko, Gregory Etelson, dev
  Cc: Gregory Etelson, Matan Azrad, Raslan Darawsheh, Ori Kam, Ray Kinsella

> > -----Original Message-----
> > From: dev <dev-bounces@dpdk.org> On Behalf Of Gregory Etelson
> > Sent: Monday, August 2, 2021 13:39
> > To: dev@dpdk.org
> > Cc: Gregory Etelson <getelson@nvidia.com>; Matan Azrad
> > <matan@nvidia.com>; Raslan Darawsheh <rasland@nvidia.com>; Ori Kam
> > <orika@nvidia.com>; Ray Kinsella <mdr@ashroe.eu>
> > Subject: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
> >
> > Announce changes to add 2 unions. The first union will provide integral and
> > bits access to version and IHL. The second union will provide integral and
> bits
> > access to fragment flags and offset.
> >
> > Signed-off-by: Gregory Etelson <getelson@nvidia.com>
> Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>

Acked-by: Akhil Goyal <gakhil@marvell.com>


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

* Re: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
  2021-08-02 12:38   ` Akhil Goyal
@ 2021-08-03 18:06     ` Ajit Khaparde
  2021-08-04 14:27       ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: Ajit Khaparde @ 2021-08-03 18:06 UTC (permalink / raw)
  To: Akhil Goyal
  Cc: Slava Ovsiienko, Gregory Etelson, dev, Matan Azrad,
	Raslan Darawsheh, Ori Kam, Ray Kinsella

[-- Attachment #1: Type: text/plain, Size: 947 bytes --]

On Mon, Aug 2, 2021 at 5:38 AM Akhil Goyal <gakhil@marvell.com> wrote:
>
> > > -----Original Message-----
> > > From: dev <dev-bounces@dpdk.org> On Behalf Of Gregory Etelson
> > > Sent: Monday, August 2, 2021 13:39
> > > To: dev@dpdk.org
> > > Cc: Gregory Etelson <getelson@nvidia.com>; Matan Azrad
> > > <matan@nvidia.com>; Raslan Darawsheh <rasland@nvidia.com>; Ori Kam
> > > <orika@nvidia.com>; Ray Kinsella <mdr@ashroe.eu>
> > > Subject: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
> > >
> > > Announce changes to add 2 unions. The first union will provide integral and
> > > bits access to version and IHL. The second union will provide integral and
> > bits
> > > access to fragment flags and offset.
> > >
> > > Signed-off-by: Gregory Etelson <getelson@nvidia.com>
> > Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
>
> Acked-by: Akhil Goyal <gakhil@marvell.com>
Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>

>

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

* Re: [dpdk-dev] [PATCH] net: announce changes in IPv4 header
  2021-08-03 18:06     ` Ajit Khaparde
@ 2021-08-04 14:27       ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2021-08-04 14:27 UTC (permalink / raw)
  To: Gregory Etelson
  Cc: Akhil Goyal, dev, Slava Ovsiienko, Matan Azrad, Raslan Darawsheh,
	Ori Kam, Ray Kinsella, Ajit Khaparde

> > > > Announce changes to add 2 unions. The first union will provide integral and
> > > > bits access to version and IHL. The second union will provide integral and
> > > bits
> > > > access to fragment flags and offset.
> > > >
> > > > Signed-off-by: Gregory Etelson <getelson@nvidia.com>
> > > Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
> > Acked-by: Akhil Goyal <gakhil@marvell.com>
> Acked-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>

Applied, thanks.



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

end of thread, other threads:[~2021-08-04 14:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02 10:38 [dpdk-dev] [PATCH] net: announce changes in IPv4 header Gregory Etelson
2021-08-02 10:42 ` Andrew Rybchenko
2021-08-02 12:10 ` Slava Ovsiienko
2021-08-02 12:38   ` Akhil Goyal
2021-08-03 18:06     ` Ajit Khaparde
2021-08-04 14:27       ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.