Commit 4bfd0de5 authored by Ido Schimmel's avatar Ido Schimmel Committed by David S. Miller

selftests: forwarding: vxlan_bridge_1d: Add more ECN decap test cases

Test that all possible combinations of inner and outer ECN bits result
in the correct inner ECN marking according to RFC 6040 4.2.
Signed-off-by: default avatarIdo Schimmel <idosch@nvidia.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 66167c31
...@@ -657,10 +657,21 @@ test_ecn_decap() ...@@ -657,10 +657,21 @@ test_ecn_decap()
{ {
# In accordance with INET_ECN_decapsulate() # In accordance with INET_ECN_decapsulate()
__test_ecn_decap 00 00 0x00 __test_ecn_decap 00 00 0x00
__test_ecn_decap 00 01 0x00
__test_ecn_decap 00 02 0x00
# 00 03 is tested in test_ecn_decap_error()
__test_ecn_decap 01 00 0x01
__test_ecn_decap 01 01 0x01 __test_ecn_decap 01 01 0x01
__test_ecn_decap 02 01 0x01 __test_ecn_decap 01 02 0x01
__test_ecn_decap 01 03 0x03 __test_ecn_decap 01 03 0x03
__test_ecn_decap 02 00 0x02
__test_ecn_decap 02 01 0x01
__test_ecn_decap 02 02 0x02
__test_ecn_decap 02 03 0x03 __test_ecn_decap 02 03 0x03
__test_ecn_decap 03 00 0x03
__test_ecn_decap 03 01 0x03
__test_ecn_decap 03 02 0x03
__test_ecn_decap 03 03 0x03
test_ecn_decap_error test_ecn_decap_error
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment