diff options
author | David Ahern <dsahern@gmail.com> | 2018-02-14 14:24:28 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-02-15 15:41:42 -0500 |
commit | 68e813aa43071377b698c662bc0214f2a833bcbb (patch) | |
tree | d6c7a143f673e72e527660d3b8b1c1005366f52e /include/net/route.h | |
parent | 45b3a37627219c06d0542abeb8075ad3851fbb6e (diff) | |
download | linux-68e813aa43071377b698c662bc0214f2a833bcbb.tar.bz2 |
net/ipv4: Remove fib table id from rtable
Remove rt_table_id from rtable. It was added for getroute to return the
table id that was hit in the lookup. With the changes for fibmatch the
table id can be extracted from the fib_info returned in the fib_result
so it no longer needs to be in rtable directly.
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/route.h')
-rw-r--r-- | include/net/route.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/net/route.h b/include/net/route.h index 1eb9ce470e25..158833ea7988 100644 --- a/include/net/route.h +++ b/include/net/route.h @@ -65,8 +65,6 @@ struct rtable { /* Miscellaneous cached information */ u32 rt_pmtu; - u32 rt_table_id; - struct list_head rt_uncached; struct uncached_list *rt_uncached_list; }; |