[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200902102351.30418.elendil@planet.nl>
Date: Tue, 10 Feb 2009 23:51:29 +0100
From: Frans Pop <elendil@...net.nl>
To: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Cc: Mel Gorman <mel@....ul.ie>,
Linus Torvalds <torvalds@...ux-foundation.org>
Subject: [PATCH][BUILDERR] mm: Fix build error with !CONFIG_HUGETLBFS
In commit 5a6fe1259506 an extra parameter was added to hugetlb_file_setup(),
but the header file was not updated for the !CONFIG_HUGETLBFS case, which
results in:
ipc/shm.c:371:49: error: macro "hugetlb_file_setup" passed 3 arguments,
but takes just 2
Signed-off-by: Frans Pop <elendil@...net.nl>
Cc: Mel Gorman <mel@....ul.ie>
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h
index af09660..03de70f 100644
--- a/include/linux/hugetlb.h
+++ b/include/linux/hugetlb.h
@@ -159,9 +159,9 @@ static inline void set_file_hugepages(struct file *file)
}
#else /* !CONFIG_HUGETLBFS */
-#define is_file_hugepages(file) 0
-#define set_file_hugepages(file) BUG()
-#define hugetlb_file_setup(name,size) ERR_PTR(-ENOSYS)
+#define is_file_hugepages(file) 0
+#define set_file_hugepages(file) BUG()
+#define hugetlb_file_setup(name,size,int) ERR_PTR(-ENOSYS)
#endif /* !CONFIG_HUGETLBFS */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists