diff options
author | Ying Xue <ying.xue@windriver.com> | 2015-01-04 15:25:09 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-04 23:11:43 -0500 |
commit | 86b35b64ed7b6b38305dee67a0f2ddff2ca5455d (patch) | |
tree | ba2fa7084801e5f4836473dac308c18107857afe /include/linux | |
parent | 3620af0efa89f167a4baf1acf9f6528d16ff45f4 (diff) | |
download | linux-86b35b64ed7b6b38305dee67a0f2ddff2ca5455d.tar.gz linux-86b35b64ed7b6b38305dee67a0f2ddff2ca5455d.tar.bz2 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/linux')
-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 |