diff options
author | Neale Ranns <nranns@cisco.com> | 2017-05-25 12:38:58 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-05-25 21:03:11 +0000 |
commit | 71275e3d1ed4b7a536b7ec8d13995743beccde6b (patch) | |
tree | 8d900abc4a7b4365a75c5c88b7cf556ea537fd0a /src/vnet/dpo | |
parent | 3d0723d3e085c8a69e1827e2e5607281b90576d7 (diff) |
MPLS hash function improvements
Change-Id: I28e98f445c01493562b6196a4f5b532a51f178af
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/dpo')
-rw-r--r-- | src/vnet/dpo/mpls_label_dpo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/dpo/mpls_label_dpo.c b/src/vnet/dpo/mpls_label_dpo.c index 18479531ca8..1c451a5116b 100644 --- a/src/vnet/dpo/mpls_label_dpo.c +++ b/src/vnet/dpo/mpls_label_dpo.c @@ -356,7 +356,7 @@ mpls_label_imposition_inline (vlib_main_t * vm, } if (PREDICT_TRUE(vnet_buffer(b2)->mpls.first)) { - ASSERT(2 != vnet_buffer (b2)->mpls.ttl); + ASSERT(1 != vnet_buffer (b2)->mpls.ttl); ttl2 = vnet_buffer(b2)->mpls.ttl - 1; } |