openpromfs: finish conversion to the new mount API
[ Upstream commit 8f27829974b025d4df2e78894105d75e3bf349f0 ] The original mount API conversion inexplicably left out the change from ->remount_fs to ->reconfigure; do that now. Fixes: 7ab2fa7693c3 ("vfs: Convert openpromfs to use the new mount API") Signed-off-by: Eric Sandeen <sandeen@redhat.com> Link: https://lore.kernel.org/r/90b968aa-c979-420f-ba37-5acc3391b28f@redhat.com Signed-off-by: Christian Brauner <brauner@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
2cfd472049
commit
ce4d31fcf6
1 changed files with 4 additions and 4 deletions
|
@ -362,10 +362,10 @@ static struct inode *openprom_iget(struct super_block *sb, ino_t ino)
|
||||||
return inode;
|
return inode;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int openprom_remount(struct super_block *sb, int *flags, char *data)
|
static int openpromfs_reconfigure(struct fs_context *fc)
|
||||||
{
|
{
|
||||||
sync_filesystem(sb);
|
sync_filesystem(fc->root->d_sb);
|
||||||
*flags |= SB_NOATIME;
|
fc->sb_flags |= SB_NOATIME;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -373,7 +373,6 @@ static const struct super_operations openprom_sops = {
|
||||||
.alloc_inode = openprom_alloc_inode,
|
.alloc_inode = openprom_alloc_inode,
|
||||||
.free_inode = openprom_free_inode,
|
.free_inode = openprom_free_inode,
|
||||||
.statfs = simple_statfs,
|
.statfs = simple_statfs,
|
||||||
.remount_fs = openprom_remount,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static int openprom_fill_super(struct super_block *s, struct fs_context *fc)
|
static int openprom_fill_super(struct super_block *s, struct fs_context *fc)
|
||||||
|
@ -417,6 +416,7 @@ static int openpromfs_get_tree(struct fs_context *fc)
|
||||||
|
|
||||||
static const struct fs_context_operations openpromfs_context_ops = {
|
static const struct fs_context_operations openpromfs_context_ops = {
|
||||||
.get_tree = openpromfs_get_tree,
|
.get_tree = openpromfs_get_tree,
|
||||||
|
.reconfigure = openpromfs_reconfigure,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int openpromfs_init_fs_context(struct fs_context *fc)
|
static int openpromfs_init_fs_context(struct fs_context *fc)
|
||||||
|
|
Loading…
Reference in a new issue