diff options
author | Igor Mikhailov (imichail) <imichail@cisco.com> | 2018-04-19 15:06:27 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-04-24 12:50:42 +0000 |
commit | d66e3d407f60a704cac821ec33f2c28ba037b2c9 (patch) | |
tree | 67939d6226605fa9bc53e9ed73cb48db9d0b18e3 /src/vnet/l2 | |
parent | 4fcfbeaf02c68c4590b00c7c1c9069f6f515a0a9 (diff) |
Support QOS_SOURCE_IP recording from L2 input node.
Some scenarios not involving ip[4,6]-input paths might benefit from IP
header QOS fields recorded and applied.
An example: L2 (overlay) traffic being encapsulated by VPP in VXLAN
and transmitted on another (underlay) interface might want the QOS
information carried over in the outer IP header.
Change-Id: I4d9462c47ae6ba97680edb1e53340b17cfd7845b
Signed-off-by: Igor Mikhailov (imichail) <imichail@cisco.com>
Diffstat (limited to 'src/vnet/l2')
-rw-r--r-- | src/vnet/l2/l2_input.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/l2/l2_input.h b/src/vnet/l2/l2_input.h index 5d67f257e46..23bb9b6e2f1 100644 --- a/src/vnet/l2/l2_input.h +++ b/src/vnet/l2/l2_input.h @@ -117,6 +117,7 @@ l2input_bd_config (u32 bd_index) _(GBP_NULL_CLASSIFY, "gbp-null-classify") \ _(GBP_SRC_CLASSIFY, "gbp-src-classify") \ _(VTR, "l2-input-vtr") \ + _(L2_IP_QOS_RECORD, "l2-ip-qos-record") \ _(VPATH, "vpath-input-l2") \ _(ACL, "l2-input-acl") \ _(POLICER_CLAS, "l2-policer-classify") \ |