diff options
author | Greg Kurz <groug@kaod.org> | 2021-06-04 18:11:56 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2021-06-22 09:15:35 +0200 |
commit | 1b539917374d26fb64395eeb5d4baebd7ad38f61 (patch) | |
tree | 3053e07f68266cce9afa65bcc5c57e5d3b970fc9 /fs/fuse/fuse_i.h | |
parent | fuse: Switch to fc_mount() for submounts (diff) | |
download | linux-1b539917374d26fb64395eeb5d4baebd7ad38f61.tar.xz linux-1b539917374d26fb64395eeb5d4baebd7ad38f61.zip |
fuse: Make fuse_fill_super_submount() static
This function used to be called from fuse_dentry_automount(). This code
was moved to fuse_get_tree_submount() in the same file since then. It
is unlikely there will ever be another user. No need to be extern in
this case.
Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index b5957c8274dd..de6489f0a145 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -1085,15 +1085,6 @@ void fuse_send_init(struct fuse_mount *fm); int fuse_fill_super_common(struct super_block *sb, struct fuse_fs_context *ctx); /* - * Fill in superblock for submounts - * @sb: partially-initialized superblock to fill in - * @parent_fi: The fuse_inode of the parent filesystem where this submount is - * mounted - */ -int fuse_fill_super_submount(struct super_block *sb, - struct fuse_inode *parent_fi); - -/* * Remove the mount from the connection * * Returns whether this was the last mount |