diff options
author | David S. Miller <davem@davemloft.net> | 2012-07-17 19:58:50 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-20 20:36:40 (GMT) |
commit | d2d68ba9fe8b38eb03124b3176a013bb8aa2b5e5 (patch) | |
tree | c523a0448a1feca0ebfa57983ff9ff58a898b768 /include/net | |
parent | f2bb4bedf35d5167a073dcdddf16543f351ef3ae (diff) | |
download | linux-d2d68ba9fe8b38eb03124b3176a013bb8aa2b5e5.tar.xz |
ipv4: Cache input routes in fib_info nexthops.
Caching input routes is slightly simpler than output routes, since we
don't need to be concerned with nexthop exceptions. (locally
destined, and routed packets, never trigger PMTU events or redirects
that will be processed by us).
However, we have to elide caching for the DIRECTSRC and non-zero itag
cases.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ip_fib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index fb62c59..e69c3a4 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -82,6 +82,7 @@ struct fib_nh { __be32 nh_saddr; int nh_saddr_genid; struct rtable *nh_rth_output; + struct rtable *nh_rth_input; struct fnhe_hash_bucket *nh_exceptions; }; |