diff options
author | Roopa Prabhu <roopa@cumulusnetworks.com> | 2018-03-01 04:42:41 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-01 04:44:44 +0100 |
commit | e37b1e978bec5334dc379d8c2423d063af207430 (patch) | |
tree | ddee8135f08c7e6786d8fa8697dc75cd0aa2684a /net/ipv4/fib_semantics.c | |
parent | ipv6: fib6_rules: support for match on sport, dport and ip proto (diff) | |
download | linux-e37b1e978bec5334dc379d8c2423d063af207430.tar.xz linux-e37b1e978bec5334dc379d8c2423d063af207430.zip |
ipv6: route: dissect flow in input path if fib rules need it
Dissect flow in fwd path if fib rules require it. Controlled by
a flag to avoid penatly for the common case. Flag is set when fib
rules with sport, dport and proto match that require flow dissect
are installed. Also passes the dissected hash keys to the multipath
hash function when applicable to avoid dissecting the flow again.
icmp packets will continue to use inner header for hash
calculations (Thanks to Nikolay Aleksandrov for some review here).
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_semantics.c')
-rw-r--r-- | net/ipv4/fib_semantics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c index f31e6575ab91..181b0d8d589c 100644 --- a/net/ipv4/fib_semantics.c +++ b/net/ipv4/fib_semantics.c @@ -1770,7 +1770,7 @@ void fib_select_path(struct net *net, struct fib_result *res, #ifdef CONFIG_IP_ROUTE_MULTIPATH if (res->fi->fib_nhs > 1) { - int h = fib_multipath_hash(res->fi, fl4, skb); + int h = fib_multipath_hash(res->fi, fl4, skb, NULL); fib_select_multipath(res, h); } |