diff options
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index bcae2693e957..9eb60f21968d 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c | |||
@@ -178,7 +178,7 @@ static int ocfs2_simple_size_update(struct inode *inode, | |||
178 | if (ret < 0) | 178 | if (ret < 0) |
179 | mlog_errno(ret); | 179 | mlog_errno(ret); |
180 | 180 | ||
181 | ocfs2_commit_trans(handle); | 181 | ocfs2_commit_trans(osb, handle); |
182 | out: | 182 | out: |
183 | return ret; | 183 | return ret; |
184 | } | 184 | } |
@@ -207,7 +207,7 @@ static int ocfs2_orphan_for_truncate(struct ocfs2_super *osb, | |||
207 | if (status < 0) | 207 | if (status < 0) |
208 | mlog_errno(status); | 208 | mlog_errno(status); |
209 | 209 | ||
210 | ocfs2_commit_trans(handle); | 210 | ocfs2_commit_trans(osb, handle); |
211 | out: | 211 | out: |
212 | mlog_exit(status); | 212 | mlog_exit(status); |
213 | return status; | 213 | return status; |
@@ -576,7 +576,7 @@ leave: | |||
576 | drop_alloc_sem = 0; | 576 | drop_alloc_sem = 0; |
577 | } | 577 | } |
578 | if (handle) { | 578 | if (handle) { |
579 | ocfs2_commit_trans(handle); | 579 | ocfs2_commit_trans(osb, handle); |
580 | handle = NULL; | 580 | handle = NULL; |
581 | } | 581 | } |
582 | if (data_ac) { | 582 | if (data_ac) { |
@@ -655,7 +655,7 @@ static int ocfs2_write_zero_page(struct inode *inode, | |||
655 | ret = 0; | 655 | ret = 0; |
656 | 656 | ||
657 | if (handle) | 657 | if (handle) |
658 | ocfs2_commit_trans(handle); | 658 | ocfs2_commit_trans(OCFS2_SB(inode->i_sb), handle); |
659 | out_unlock: | 659 | out_unlock: |
660 | unlock_page(page); | 660 | unlock_page(page); |
661 | page_cache_release(page); | 661 | page_cache_release(page); |
@@ -850,7 +850,7 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr) | |||
850 | mlog_errno(status); | 850 | mlog_errno(status); |
851 | 851 | ||
852 | bail_commit: | 852 | bail_commit: |
853 | ocfs2_commit_trans(handle); | 853 | ocfs2_commit_trans(osb, handle); |
854 | bail_unlock: | 854 | bail_unlock: |
855 | ocfs2_meta_unlock(inode, 1); | 855 | ocfs2_meta_unlock(inode, 1); |
856 | bail_unlock_rw: | 856 | bail_unlock_rw: |
@@ -938,7 +938,7 @@ static int ocfs2_write_remove_suid(struct inode *inode) | |||
938 | out_bh: | 938 | out_bh: |
939 | brelse(bh); | 939 | brelse(bh); |
940 | out_trans: | 940 | out_trans: |
941 | ocfs2_commit_trans(handle); | 941 | ocfs2_commit_trans(osb, handle); |
942 | out: | 942 | out: |
943 | mlog_exit(ret); | 943 | mlog_exit(ret); |
944 | return ret; | 944 | return ret; |