diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-07-25 00:17:56 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-29 12:15:06 +0400 |
commit | c96e41e92b4aaf11e1f9775ecf0d1c8cbff829ed (patch) | |
tree | 5c24ad8aa541018a51e1704dccfc370116bb932f /include/linux/fs.h | |
parent | d893f1bc2a9f0f7dcb4b433452c59f9bedac0d7d (diff) | |
download | linux-c96e41e92b4aaf11e1f9775ecf0d1c8cbff829ed.tar.xz |
beginning of transtion: ->mount()
eventual replacement for ->get_sb() - does *not* get vfsmount,
return ERR_PTR(error) or root of subtree to be mounted.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
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 1c73b50e81ff..c6b474311690 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1772,6 +1772,8 @@ struct file_system_type { int fs_flags; int (*get_sb) (struct file_system_type *, int, const char *, void *, struct vfsmount *); + struct dentry *(*mount) (struct file_system_type *, int, + const char *, void *); void (*kill_sb) (struct super_block *); struct module *owner; struct file_system_type * next; |