diff options
author | Jiri Kosina <jkosina@suse.cz> | 2008-02-09 00:10:14 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-09 11:08:33 -0800 |
commit | 6966a97753854c8b5336cf3997d5d1d205d91b12 (patch) | |
tree | 00207e7fff58bfe05b515cf138e17a9770f801a0 /fs/hostfs | |
parent | 880cdf3a8122288d37829ce01eadf8822bb386db (diff) | |
download | linux-3.10-6966a97753854c8b5336cf3997d5d1d205d91b12.tar.gz linux-3.10-6966a97753854c8b5336cf3997d5d1d205d91b12.tar.bz2 linux-3.10-6966a97753854c8b5336cf3997d5d1d205d91b12.zip |
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 <jkosina@suse.cz>
Reported-by: Adrian Bunk <bunk@stusta.de>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/hostfs')
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <linux/pagemap.h> #include <linux/statfs.h> #include <linux/seq_file.h> +#include <linux/mount.h> #include "hostfs.h" #include "init.h" #include "kern.h" |