diff options
author | Joel Becker <joel.becker@oracle.com> | 2010-05-06 13:59:06 +0800 |
---|---|---|
committer | Tao Ma <tao.ma@oracle.com> | 2010-05-06 13:59:06 +0800 |
commit | 1ed9b777f77929ae961d6f9cdf828a07200ba71c (patch) | |
tree | a0bb6c9e9be1f5d3d46d6cdac0a4397303e22795 /fs/ocfs2/namei.c | |
parent | 13e434cf0cacd2f03a7f4cd077e3e995ef5ef710 (diff) | |
download | blackbird-op-linux-1ed9b777f77929ae961d6f9cdf828a07200ba71c.tar.gz blackbird-op-linux-1ed9b777f77929ae961d6f9cdf828a07200ba71c.zip |
ocfs2: ocfs2_claim_*() don't need an ocfs2_super argument.
They all take an ocfs2_alloc_context, which has the allocation inode.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Signed-off-by: Tao Ma <tao.ma@oracle.com>
Diffstat (limited to 'fs/ocfs2/namei.c')
-rw-r--r-- | fs/ocfs2/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 21d4a33d0f0e..e5434a04b88a 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -478,7 +478,7 @@ static int ocfs2_mknod_locked(struct ocfs2_super *osb, *new_fe_bh = NULL; - status = ocfs2_claim_new_inode(osb, handle, dir, parent_fe_bh, + status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh, inode_ac, &suballoc_bit, &fe_blkno); if (status < 0) { mlog_errno(status); |