From: Jiri Kosina Date: Sat, 9 Feb 2008 08:10:14 +0000 (-0800) Subject: UML: fix hostfs build X-Git-Tag: v2.6.25-rc1~27 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=6966a97753854c8b5336cf3997d5d1d205d91b12;p=~shefty%2Frdma-dev.git UML: fix hostfs build /home/bunk/linux/kernel-2.6/git/linux-2.6/fs/hostfs/hostfs_kern.c: In function 'hostfs_show_options': /home/bunk/linux/kernel-2.6/git/linux-2.6/fs/hostfs/hostfs_kern.c:328: error: dereferencing pointer to incomplete type We need to include mount.h to get vfsmount. Signed-off-by: Jiri Kosina Reported-by: Adrian Bunk Cc: Jeff Dike Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index d0549cb4fb2..5222345ddcc 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "hostfs.h" #include "init.h" #include "kern.h"