aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ocfs2')
-rw-r--r--fs/ocfs2/super.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
index 5c6163f55039..3eb076ce4c07 100644
--- a/fs/ocfs2/super.c
+++ b/fs/ocfs2/super.c
@@ -126,7 +126,6 @@ static int ocfs2_get_sector(struct super_block *sb,
126 struct buffer_head **bh, 126 struct buffer_head **bh,
127 int block, 127 int block,
128 int sect_size); 128 int sect_size);
129static void ocfs2_write_super(struct super_block *sb);
130static struct inode *ocfs2_alloc_inode(struct super_block *sb); 129static struct inode *ocfs2_alloc_inode(struct super_block *sb);
131static void ocfs2_destroy_inode(struct inode *inode); 130static void ocfs2_destroy_inode(struct inode *inode);
132static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend); 131static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
@@ -141,7 +140,6 @@ static const struct super_operations ocfs2_sops = {
141 .clear_inode = ocfs2_clear_inode, 140 .clear_inode = ocfs2_clear_inode,
142 .delete_inode = ocfs2_delete_inode, 141 .delete_inode = ocfs2_delete_inode,
143 .sync_fs = ocfs2_sync_fs, 142 .sync_fs = ocfs2_sync_fs,
144 .write_super = ocfs2_write_super,
145 .put_super = ocfs2_put_super, 143 .put_super = ocfs2_put_super,
146 .remount_fs = ocfs2_remount, 144 .remount_fs = ocfs2_remount,
147 .show_options = ocfs2_show_options, 145 .show_options = ocfs2_show_options,
@@ -365,24 +363,12 @@ static struct file_operations ocfs2_osb_debug_fops = {
365 .llseek = generic_file_llseek, 363 .llseek = generic_file_llseek,
366}; 364};
367 365
368/*
369 * write_super and sync_fs ripped right out of ext3.
370 */
371static void ocfs2_write_super(struct super_block *sb)
372{
373 if (mutex_trylock(&sb->s_lock) != 0)
374 BUG();
375 sb->s_dirt = 0;
376}
377
378static int ocfs2_sync_fs(struct super_block *sb, int wait) 366static int ocfs2_sync_fs(struct super_block *sb, int wait)
379{ 367{
380 int status; 368 int status;
381 tid_t target; 369 tid_t target;
382 struct ocfs2_super *osb = OCFS2_SB(sb); 370 struct ocfs2_super *osb = OCFS2_SB(sb);
383 371
384 sb->s_dirt = 0;
385
386 if (ocfs2_is_hard_readonly(osb)) 372 if (ocfs2_is_hard_readonly(osb))
387 return -EROFS; 373 return -EROFS;
388 374