diff options
author | Neale Ranns <nranns@cisco.com> | 2017-08-01 11:40:03 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-08-01 21:50:15 +0000 |
commit | a0a908f1dfb679c384ab34ee3c1a2a63ba2448df (patch) | |
tree | 4fe1128725998ecde799c6ec063094ae7791d163 /src/vnet/mpls/mpls_api.c | |
parent | 42e6b097e02b80779213aa5c14a5202ecd5913e5 (diff) |
FIB path weight incorrect in dump (VPP-922)
Change-Id: I655f41878ca3595681d0255782b0faba01c9824b
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/mpls/mpls_api.c')
-rw-r--r-- | src/vnet/mpls/mpls_api.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/vnet/mpls/mpls_api.c b/src/vnet/mpls/mpls_api.c index 22fb7d43a31..92fb24a6e88 100644 --- a/src/vnet/mpls/mpls_api.c +++ b/src/vnet/mpls/mpls_api.c @@ -334,7 +334,8 @@ send_mpls_tunnel_entry (u32 mti, void *arg) { memset (fp, 0, sizeof (*fp)); - fp->weight = htonl (api_rpath->rpath.frp_weight); + fp->weight = api_rpath->rpath.frp_weight; + fp->preference = api_rpath->rpath.frp_preference; fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index); copy_fib_next_hop (api_rpath, fp); fp++; @@ -393,7 +394,8 @@ send_mpls_fib_details (vpe_api_main_t * am, vec_foreach (api_rpath, api_rpaths) { memset (fp, 0, sizeof (*fp)); - fp->weight = htonl (api_rpath->rpath.frp_weight); + fp->weight = api_rpath->rpath.frp_weight; + fp->preference = api_rpath->rpath.frp_preference; fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index); copy_fib_next_hop (api_rpath, fp); fp++; |