From: Herbert Xu Date: Fri, 20 Mar 2015 22:18:45 +0000 (-0400) Subject: rhashtable: Fix undeclared EEXIST build error on ia64 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6626af692692b52c8f9e20ad8201a3255e5ab25b;p=GitHub%2FLineageOS%2FG12%2Fandroid_kernel_amlogic_linux-4.9.git 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 Signed-off-by: Herbert Xu Signed-off-by: David S. Miller --- diff --git a/include/linux/rhashtable.h b/include/linux/rhashtable.h index c3034de2c235..89d102270570 100644 --- a/include/linux/rhashtable.h +++ b/include/linux/rhashtable.h @@ -18,6 +18,7 @@ #define _LINUX_RHASHTABLE_H #include +#include #include #include #include