diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-06-06 22:07:23 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-06-07 00:10:15 -0700 |
commit | 6d7954130c8d7100b7aba3c986fc4eefedf1a1ad (patch) | |
tree | 680194365713a1ef39f5c805b1fa923393b64399 /lib | |
parent | c6271b7633f066eb1cd46c17862bde6c97f6a5ba (diff) | |
download | linux-6d7954130c8d7100b7aba3c986fc4eefedf1a1ad.tar.bz2 |
rhashtable: add missing import <linux/export.h>
rhashtable uses EXPORT_SYMBOL_GPL() without importing linux/export.h
directly it is only imported indirectly through some other includes.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rhashtable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rhashtable.c b/lib/rhashtable.c index 4396434e4715..8609378e6505 100644 --- a/lib/rhashtable.c +++ b/lib/rhashtable.c @@ -26,6 +26,7 @@ #include <linux/random.h> #include <linux/rhashtable.h> #include <linux/err.h> +#include <linux/export.h> #define HASH_DEFAULT_SIZE 64UL #define HASH_MIN_SIZE 4U |