From: Dan Williams Date: Sat, 16 Jan 2016 00:56:32 +0000 (-0800) Subject: hugetlb: fix compile error on tile X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=888cdbc2c9a76a0e450f533b1957cdbfe7d483d5;p=linux-beck.git hugetlb: fix compile error on tile Inlude asm/pgtable.h to get the definition for pud_t to fix: include/linux/hugetlb.h:203:29: error: unknown type name 'pud_t' Signed-off-by: Dan Williams Cc: Liviu Dudau Cc: Sudeep Holla Cc: Lorenzo Pieralisi Cc: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index e76574d8f9b5..7d953c2542a8 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h @@ -8,6 +8,7 @@ #include #include #include +#include struct ctl_table; struct user_struct;