aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ceph/super.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index 6d5bb2f74612..01113c86e469 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -845,6 +845,12 @@ static void ceph_umount_begin(struct super_block *sb)
845 return; 845 return;
846} 846}
847 847
848static int ceph_remount(struct super_block *sb, int *flags, char *data)
849{
850 sync_filesystem(sb);
851 return 0;
852}
853
848static const struct super_operations ceph_super_ops = { 854static const struct super_operations ceph_super_ops = {
849 .alloc_inode = ceph_alloc_inode, 855 .alloc_inode = ceph_alloc_inode,
850 .destroy_inode = ceph_destroy_inode, 856 .destroy_inode = ceph_destroy_inode,
@@ -852,6 +858,7 @@ static const struct super_operations ceph_super_ops = {
852 .drop_inode = ceph_drop_inode, 858 .drop_inode = ceph_drop_inode,
853 .sync_fs = ceph_sync_fs, 859 .sync_fs = ceph_sync_fs,
854 .put_super = ceph_put_super, 860 .put_super = ceph_put_super,
861 .remount_fs = ceph_remount,
855 .show_options = ceph_show_options, 862 .show_options = ceph_show_options,
856 .statfs = ceph_statfs, 863 .statfs = ceph_statfs,
857 .umount_begin = ceph_umount_begin, 864 .umount_begin = ceph_umount_begin,