diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2006-10-09 20:26:22 -0400 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-12-01 21:28:23 -0500 |
commit | 65eff9ccf86d63eb5c3e9071450a36e4e4fa9564 (patch) | |
tree | 3610e008294ce4e5cfbc9abff3c98153f35ed2d4 /fs/ocfs2/alloc.c | |
parent | dae85832ffe2879b57b23aea319a0ec17667898d (diff) |
ocfs2: remove handle argument to ocfs2_start_trans()
All callers either pass in NULL directly, or a local variable that is
already set to NULL.
The internals of ocfs2_start_trans() get a nice cleanup as a result.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/alloc.c')
-rw-r--r-- | fs/ocfs2/alloc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ocfs2/alloc.c b/fs/ocfs2/alloc.c index f3dbd31a85a1..354817acf8b3 100644 --- a/fs/ocfs2/alloc.c +++ b/fs/ocfs2/alloc.c | |||
@@ -1158,7 +1158,7 @@ static int __ocfs2_flush_truncate_log(struct ocfs2_super *osb) | |||
1158 | goto out_mutex; | 1158 | goto out_mutex; |
1159 | } | 1159 | } |
1160 | 1160 | ||
1161 | handle = ocfs2_start_trans(osb, NULL, OCFS2_TRUNCATE_LOG_UPDATE); | 1161 | handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); |
1162 | if (IS_ERR(handle)) { | 1162 | if (IS_ERR(handle)) { |
1163 | status = PTR_ERR(handle); | 1163 | status = PTR_ERR(handle); |
1164 | mlog_errno(status); | 1164 | mlog_errno(status); |
@@ -1365,8 +1365,7 @@ int ocfs2_complete_truncate_log_recovery(struct ocfs2_super *osb, | |||
1365 | } | 1365 | } |
1366 | } | 1366 | } |
1367 | 1367 | ||
1368 | handle = ocfs2_start_trans(osb, NULL, | 1368 | handle = ocfs2_start_trans(osb, OCFS2_TRUNCATE_LOG_UPDATE); |
1369 | OCFS2_TRUNCATE_LOG_UPDATE); | ||
1370 | if (IS_ERR(handle)) { | 1369 | if (IS_ERR(handle)) { |
1371 | status = PTR_ERR(handle); | 1370 | status = PTR_ERR(handle); |
1372 | mlog_errno(status); | 1371 | mlog_errno(status); |
@@ -1860,7 +1859,7 @@ start: | |||
1860 | 1859 | ||
1861 | credits = ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del, | 1860 | credits = ocfs2_calc_tree_trunc_credits(osb->sb, clusters_to_del, |
1862 | fe, el); | 1861 | fe, el); |
1863 | handle = ocfs2_start_trans(osb, NULL, credits); | 1862 | handle = ocfs2_start_trans(osb, credits); |
1864 | if (IS_ERR(handle)) { | 1863 | if (IS_ERR(handle)) { |
1865 | status = PTR_ERR(handle); | 1864 | status = PTR_ERR(handle); |
1866 | handle = NULL; | 1865 | handle = NULL; |