diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2007-10-18 23:39:11 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 11:53:33 -0700 |
commit | c18479fe017b9d3b65b7682f2b9e711389441186 (patch) | |
tree | 510d56a218d4542e337368276ada7e2c5482cee3 /include/linux/fs.h | |
parent | 50899561aa15b9227009ae40e58852c32fc81944 (diff) |
put declaration of put_filesystem() in fs.h
Declarations go into headers.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Ram Pai <linuxram@us.ibm.com>
Acked-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 6a4d170ad9a5..3efff12049c6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1922,6 +1922,8 @@ extern int vfs_fstat(unsigned int, struct kstat *); extern int vfs_ioctl(struct file *, unsigned int, unsigned int, unsigned long); +extern void get_filesystem(struct file_system_type *fs); +extern void put_filesystem(struct file_system_type *fs); extern struct file_system_type *get_fs_type(const char *name); extern struct super_block *get_super(struct block_device *); extern struct super_block *user_get_super(dev_t); |