Skip to content

Commit 6626af6

Browse files
herbertxdavem330
authored andcommitted
rhashtable: Fix undeclared EEXIST build error on ia64
We need to include linux/errno.h in rhashtable.h since it doesn't always get included otherwise. Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent b4c11cb commit 6626af6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/linux/rhashtable.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#define _LINUX_RHASHTABLE_H
1919

2020
#include <linux/compiler.h>
21+
#include <linux/errno.h>
2122
#include <linux/list_nulls.h>
2223
#include <linux/workqueue.h>
2324
#include <linux/mutex.h>

0 commit comments

Comments
 (0)