diff options
author | Takeru Hayasaka <hayatake396@gmail.com> | 2023-01-17 04:45:58 +0900 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2023-03-31 06:04:42 +0000 |
commit | b23c6f4f29b53afa6be2735b30b08fcb115f20cc (patch) | |
tree | 59cca6452dca4b17fbce112ca8f4e5b3004565b7 /src/vnet/ip/lookup.c | |
parent | 55686e1c59f8bcf399f5ff58b3ca1030a415009c (diff) |
ip: support flow-hash gtpv1teid
support with GTPv1 TEID added to the flow hash.
This can able to ECMP to PGW and parallelization.
Type: feature
Change-Id: I6f758579027caf6123831ef2db7afe17e424a6eb
Signed-off-by: Takeru Hayasaka <hayatake396@gmail.com>
Diffstat (limited to 'src/vnet/ip/lookup.c')
-rw-r--r-- | src/vnet/ip/lookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 26bdaa635aa..5ac2a9c17e2 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -145,13 +145,13 @@ unformat_ip_flow_hash_config (unformat_input_t *input, va_list *args) { if (unformat (input, "%_,")) ; -#define _(a, b) \ +#define _(a, b, c) \ else if (unformat (input, "%_" #a)) \ { \ - *flow_hash_config |= b; \ + *flow_hash_config |= c; \ matched_once = 1; \ } - foreach_flow_hash_bit_v1 + foreach_flow_hash_bit #undef _ else { |