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>
This commit is contained in:
parent
50899561aa
commit
c18479fe01
|
@ -40,10 +40,6 @@
|
|||
#include <asm/uaccess.h>
|
||||
|
||||
|
||||
void get_filesystem(struct file_system_type *fs);
|
||||
void put_filesystem(struct file_system_type *fs);
|
||||
struct file_system_type *get_fs_type(const char *name);
|
||||
|
||||
LIST_HEAD(super_blocks);
|
||||
DEFINE_SPINLOCK(sb_lock);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue