From: Alexander Duyck Date: Wed, 25 Feb 2015 23:31:31 +0000 (-0800) Subject: fib_trie: Convert fib_alias to hlist from list X-Git-Tag: omap-for-v4.1/fixes-rc1~141^2~391^2~3 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56315f9e6e3a0ba0483c2e1f53333d5275268cb1;p=pandora-kernel.git 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 Signed-off-by: David S. Miller --- 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 { u32 tclassid; struct fib_info *fi; struct fib_table *table; - struct list_head *fa_head; + struct hlist_head *fa_head; }; struct fib_result_nl { Reading git-diff-tree failed