ocfs2: pass ocfs2_super * into ocfs2_commit_trans()

This sets us up to remove handle->journal.

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
Mark Fasheh
2006-10-09 16:48:10 -07:00
parent 4bcec1847a
commit 02dc1af44e
11 changed files with 31 additions and 29 deletions

View File

@ -195,11 +195,12 @@ done_free:
return ERR_PTR(ret);
}
void ocfs2_commit_trans(struct ocfs2_journal_handle *handle)
void ocfs2_commit_trans(struct ocfs2_super *osb,
struct ocfs2_journal_handle *handle)
{
handle_t *jbd_handle;
int retval;
struct ocfs2_journal *journal = handle->journal;
struct ocfs2_journal *journal = osb->journal;
mlog_entry_void();