X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fbuffer.h;h=8071081faf7342dd043e563a7b5f4a2d8b56f23a;hb=53fffa1;hp=2ddea8650242da7c2e623a797809dbbb98a0ee74;hpb=180f6476f8df860323e706674a18632ef0ab2d4d;p=vpp.git diff --git a/src/vnet/buffer.h b/src/vnet/buffer.h index 2ddea865024..8071081faf7 100644 --- a/src/vnet/buffer.h +++ b/src/vnet/buffer.h @@ -51,7 +51,7 @@ _( 3, VLAN_2_DEEP, "vlan-2-deep") \ _( 4, VLAN_1_DEEP, "vlan-1-deep") \ _( 5, SPAN_CLONE, "span-clone") \ - _( 6, HANDOFF_NEXT_VALID, "handoff-next-valid") \ + _( 6, LOOP_COUNTER_VALID, 0) \ _( 7, LOCALLY_ORIGINATED, "local") \ _( 8, IS_IP4, "ip4") \ _( 9, IS_IP6, "ip6") \ @@ -85,11 +85,9 @@ enum #define foreach_buffer_opaque_union_subtype \ _(ip) \ -_(swt) \ _(l2) \ _(l2t) \ _(l2_classify) \ -_(handoff) \ _(policer) \ _(ipsec) \ _(map) \ @@ -163,7 +161,6 @@ typedef struct /* reassembly */ union { - u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */ /* in/out variables */ struct { @@ -200,8 +197,8 @@ typedef struct /* Rewrite length */ u32 save_rewrite_length; /* - * BIER - the nubmer of bytes in the header. - * the len field inthe header is not authoritative. It's the + * BIER - the number of bytes in the header. + * the len field in the header is not authoritative. It's the * value in the table that counts. */ struct @@ -210,13 +207,6 @@ typedef struct } bier; } mpls; - /* ip4-in-ip6 softwire termination, only valid there */ - struct - { - u8 swt_disable; - u32 mapping_index; - } swt; - /* l2 bridging path, only valid there */ struct opaque_l2 { @@ -248,12 +238,6 @@ typedef struct u64 hash; } l2_classify; - /* IO - worker thread handoff */ - struct - { - u32 next_index; - } handoff; - /* vnet policer */ struct { @@ -293,7 +277,6 @@ typedef struct struct { u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */ - u16 header_offset; u16 mtu; u8 next_index; u8 flags; //See ip_frag.h @@ -313,13 +296,6 @@ typedef struct u16 overlay_afi; } lisp; - /* Driver rx feature */ - struct - { - u32 saved_next_index; /**< saved by drivers for short-cut */ - u16 buffer_advance; - } device_input_feat; - /* TCP */ struct { @@ -358,7 +334,7 @@ typedef struct } vnet_buffer_opaque_t; /* - * The opaque field of the vlib_buffer_t is intepreted as a + * The opaque field of the vlib_buffer_t is interpreted as a * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one. */ STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <= @@ -381,12 +357,15 @@ typedef struct u8 source; } qos; - u8 __unused[2]; + u8 loop_counter; + u8 __unused[1]; /* Group Based Policy */ struct { - u32 src_epg; + u8 __unused; + u8 flags; + u16 src_epg; } gbp; union @@ -410,7 +389,7 @@ typedef struct #define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2) /* - * The opaque2 field of the vlib_buffer_t is intepreted as a + * The opaque2 field of the vlib_buffer_t is interpreted as a * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one. */ STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=