diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-11-24 18:22:03 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:56:58 -0500 |
commit | c71053659e3bb27d44b79da0bb4abf5838c2060a (patch) | |
tree | 59e86cc1602db35ffc2c3991953161f1619706b1 /fs/internal.h | |
parent | 7d6fec45a5131918b51dcd76da52f2ec86a85be6 (diff) |
vfs: spread struct mount - __lookup_mnt() result
switch __lookup_mnt() to returning struct mount *; callers adjusted.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/internal.h b/fs/internal.h index 7b1cb1528ac2..6aab61a4f36f 100644 --- a/fs/internal.h +++ b/fs/internal.h | |||
@@ -15,6 +15,7 @@ struct super_block; | |||
15 | struct file_system_type; | 15 | struct file_system_type; |
16 | struct linux_binprm; | 16 | struct linux_binprm; |
17 | struct path; | 17 | struct path; |
18 | struct mount; | ||
18 | 19 | ||
19 | /* | 20 | /* |
20 | * block_dev.c | 21 | * block_dev.c |
@@ -46,7 +47,6 @@ extern void __init chrdev_init(void); | |||
46 | extern int copy_mount_options(const void __user *, unsigned long *); | 47 | extern int copy_mount_options(const void __user *, unsigned long *); |
47 | extern int copy_mount_string(const void __user *, char **); | 48 | extern int copy_mount_string(const void __user *, char **); |
48 | 49 | ||
49 | extern struct vfsmount *__lookup_mnt(struct vfsmount *, struct dentry *, int); | ||
50 | extern struct vfsmount *lookup_mnt(struct path *); | 50 | extern struct vfsmount *lookup_mnt(struct path *); |
51 | extern int finish_automount(struct vfsmount *, struct path *); | 51 | extern int finish_automount(struct vfsmount *, struct path *); |
52 | 52 | ||