Skip to content

Commit

Permalink
vfs: Convert securityfs to use the new mount API
Browse files Browse the repository at this point in the history
Convert the securityfs filesystem to the new internal mount API as the old
one will be obsoleted and removed.  This allows greater flexibility in
communication of mount parameters between userspace, the VFS and the
filesystem.

See Documentation/filesystems/mount_api.txt for more information.

Signed-off-by: David Howells <[email protected]>
cc: [email protected]
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
dhowells authored and Al Viro committed Jul 5, 2019
1 parent b0ecc9d commit 5c86d7e
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions security/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <linux/sysfs.h>
#include <linux/kobject.h>
#include <linux/fs.h>
#include <linux/fs_context.h>
#include <linux/mount.h>
#include <linux/pagemap.h>
#include <linux/init.h>
Expand All @@ -39,7 +40,7 @@ static const struct super_operations securityfs_super_operations = {
.free_inode = securityfs_free_inode,
};

static int fill_super(struct super_block *sb, void *data, int silent)
static int securityfs_fill_super(struct super_block *sb, struct fs_context *fc)
{
static const struct tree_descr files[] = {{""}};
int error;
Expand All @@ -53,17 +54,25 @@ static int fill_super(struct super_block *sb, void *data, int silent)
return 0;
}

static struct dentry *get_sb(struct file_system_type *fs_type,
int flags, const char *dev_name,
void *data)
static int securityfs_get_tree(struct fs_context *fc)
{
return mount_single(fs_type, flags, data, fill_super);
return get_tree_single(fc, securityfs_fill_super);
}

static const struct fs_context_operations securityfs_context_ops = {
.get_tree = securityfs_get_tree,
};

static int securityfs_init_fs_context(struct fs_context *fc)
{
fc->ops = &securityfs_context_ops;
return 0;
}

static struct file_system_type fs_type = {
.owner = THIS_MODULE,
.name = "securityfs",
.mount = get_sb,
.init_fs_context = securityfs_init_fs_context,
.kill_sb = kill_litter_super,
};

Expand Down

0 comments on commit 5c86d7e

Please sign in to comment.