diff options
author | Alexander Duyck <alexander.h.duyck@redhat.com> | 2015-02-25 18:31:31 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-27 16:37:06 -0500 |
commit | 56315f9e6e3a0ba0483c2e1f53333d5275268cb1 (patch) | |
tree | 2fd33299033b341fc9b655a9f35b3e86dc09b09a /include/net | |
parent | 7705f730372d65f73599f0b49e3249433bba55e8 (diff) |
fib_trie: Convert fib_alias to hlist from list
There isn't any advantage to having it as a list and by making it an hlist
we make the fib_alias more compatible with the list_info in terms of the
type of list used.
Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/ip_fib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index 5bd120e4bc0a..cba4b7c32935 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h | |||
@@ -136,7 +136,7 @@ struct fib_result { | |||
136 | u32 tclassid; | 136 | u32 tclassid; |
137 | struct fib_info *fi; | 137 | struct fib_info *fi; |
138 | struct fib_table *table; | 138 | struct fib_table *table; |
139 | struct list_head *fa_head; | 139 | struct hlist_head *fa_head; |
140 | }; | 140 | }; |
141 | 141 | ||
142 | struct fib_result_nl { | 142 | struct fib_result_nl { |