diff options
author | Ying Xue <ying.xue@windriver.com> | 2015-01-04 08:25:09 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-05 05:11:43 +0100 |
commit | 86b35b64ed7b6b38305dee67a0f2ddff2ca5455d (patch) | |
tree | ba2fa7084801e5f4836473dac308c18107857afe /include | |
parent | qlcnic: Fix dump_skb output (diff) | |
download | linux-86b35b64ed7b6b38305dee67a0f2ddff2ca5455d.tar.xz linux-86b35b64ed7b6b38305dee67a0f2ddff2ca5455d.zip |
rhashtable: fix missing header
Fixup below build error:
include/linux/rhashtable.h: At top level:
include/linux/rhashtable.h:118:34: error: field ‘mutex’ has incomplete type
Signed-off-by: Ying Xue <ying.xue@windriver.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/rhashtable.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/rhashtable.h b/include/linux/rhashtable.h index de7cac753b09..de1459c74c4d 100644 --- a/include/linux/rhashtable.h +++ b/include/linux/rhashtable.h @@ -20,6 +20,7 @@ #include <linux/list_nulls.h> #include <linux/workqueue.h> +#include <linux/mutex.h> /* * The end of the chain is marked with a special nulls marks which has |