diff options
Diffstat (limited to 'fs/reiserfs/super.c')
-rw-r--r-- | fs/reiserfs/super.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index c55651f1407c..f3c820b75829 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
@@ -83,7 +83,7 @@ static void reiserfs_write_super(struct super_block *s) | |||
83 | reiserfs_sync_fs(s, 1); | 83 | reiserfs_sync_fs(s, 1); |
84 | } | 84 | } |
85 | 85 | ||
86 | static void reiserfs_write_super_lockfs(struct super_block *s) | 86 | static int reiserfs_freeze(struct super_block *s) |
87 | { | 87 | { |
88 | struct reiserfs_transaction_handle th; | 88 | struct reiserfs_transaction_handle th; |
89 | reiserfs_write_lock(s); | 89 | reiserfs_write_lock(s); |
@@ -101,11 +101,13 @@ static void reiserfs_write_super_lockfs(struct super_block *s) | |||
101 | } | 101 | } |
102 | s->s_dirt = 0; | 102 | s->s_dirt = 0; |
103 | reiserfs_write_unlock(s); | 103 | reiserfs_write_unlock(s); |
104 | return 0; | ||
104 | } | 105 | } |
105 | 106 | ||
106 | static void reiserfs_unlockfs(struct super_block *s) | 107 | static int reiserfs_unfreeze(struct super_block *s) |
107 | { | 108 | { |
108 | reiserfs_allow_writes(s); | 109 | reiserfs_allow_writes(s); |
110 | return 0; | ||
109 | } | 111 | } |
110 | 112 | ||
111 | extern const struct in_core_key MAX_IN_CORE_KEY; | 113 | extern const struct in_core_key MAX_IN_CORE_KEY; |
@@ -613,8 +615,8 @@ static const struct super_operations reiserfs_sops = { | |||
613 | .put_super = reiserfs_put_super, | 615 | .put_super = reiserfs_put_super, |
614 | .write_super = reiserfs_write_super, | 616 | .write_super = reiserfs_write_super, |
615 | .sync_fs = reiserfs_sync_fs, | 617 | .sync_fs = reiserfs_sync_fs, |
616 | .write_super_lockfs = reiserfs_write_super_lockfs, | 618 | .freeze_fs = reiserfs_freeze, |
617 | .unlockfs = reiserfs_unlockfs, | 619 | .unfreeze_fs = reiserfs_unfreeze, |
618 | .statfs = reiserfs_statfs, | 620 | .statfs = reiserfs_statfs, |
619 | .remount_fs = reiserfs_remount, | 621 | .remount_fs = reiserfs_remount, |
620 | .show_options = generic_show_options, | 622 | .show_options = generic_show_options, |