From a0a908f1dfb679c384ab34ee3c1a2a63ba2448df Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 1 Aug 2017 11:40:03 -0700 Subject: FIB path weight incorrect in dump (VPP-922) Change-Id: I655f41878ca3595681d0255782b0faba01c9824b Signed-off-by: Neale Ranns --- src/vnet/fib/fib_path.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/vnet/fib/fib_path.c') diff --git a/src/vnet/fib/fib_path.c b/src/vnet/fib/fib_path.c index 00a3fa63d44..3a67a544eca 100644 --- a/src/vnet/fib/fib_path.c +++ b/src/vnet/fib/fib_path.c @@ -198,13 +198,14 @@ typedef struct fib_path_t_ { /** * UCMP [unnormalised] weigth */ - u16 fp_weight; + u8 fp_weight; + /** * A path preference. 0 is the best. * Only paths of the best preference, that are 'up', are considered * for forwarding. */ - u16 fp_preference; + u8 fp_preference; /** * per-type union of the data required to resolve the path -- cgit 1.2.3-korg