diff options
author | Neale Ranns <nranns@cisco.com> | 2018-10-08 14:51:11 +0000 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-10-16 01:39:50 +0000 |
commit | ac64b71b2893341b2e342865c209ee63c2dc3138 (patch) | |
tree | 30d38ed27ab74df23018b94fe5c479e8652a9c44 /src/vnet/fib/fib_path_list.h | |
parent | a23caded85ebc754b8e355d04cc747adfde5d467 (diff) |
Sticky Load-balance
keep the number of buckets in the load-balanced fixed. If a
path goes dwon fill its buckets with those from the next
available up path.
Change-Id: I15603ccb899fa9b77556b898c99136379cf32eae
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/fib/fib_path_list.h')
-rw-r--r-- | src/vnet/fib/fib_path_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/fib/fib_path_list.h b/src/vnet/fib/fib_path_list.h index 76870dc6c78..18835a60282 100644 --- a/src/vnet/fib/fib_path_list.h +++ b/src/vnet/fib/fib_path_list.h @@ -134,6 +134,7 @@ typedef enum fib_path_list_fwd_flags_t_ { FIB_PATH_LIST_FWD_FLAG_NONE = 0, FIB_PATH_LIST_FWD_FLAG_COLLAPSE = (1 << 0), + FIB_PATH_LIST_FWD_FLAG_STICKY = (1 << 1), } fib_path_list_fwd_flags_t; extern void fib_path_list_contribute_forwarding(fib_node_index_t path_list_index, |