diff options
author | Jie Liu <jeff.liu@oracle.com> | 2013-06-24 13:37:23 +0800 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-06-26 12:22:41 -0500 |
commit | 43df2ee659d3d854d17686f8f38fc1071b25774b (patch) | |
tree | 8c87221ed8533a4809bce72260eff187df6f2344 /fs/xfs/xfs_ialloc.c | |
parent | 427d9fe233ccec3a293be4bcf07f9bac12463a99 (diff) | |
download | op-kernel-dev-43df2ee659d3d854d17686f8f38fc1071b25774b.zip op-kernel-dev-43df2ee659d3d854d17686f8f38fc1071b25774b.tar.gz |
xfs: Remove the left function variable from xfs_ialloc_get_rec()
This patch clean out the left function variable as it is
useless to xfs_ialloc_get_rec().
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_ialloc.c')
-rw-r--r-- | fs/xfs/xfs_ialloc.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/xfs/xfs_ialloc.c b/fs/xfs/xfs_ialloc.c index c8f5ae1..4345c53 100644 --- a/fs/xfs/xfs_ialloc.c +++ b/fs/xfs/xfs_ialloc.c @@ -615,8 +615,7 @@ xfs_ialloc_get_rec( struct xfs_btree_cur *cur, xfs_agino_t agino, xfs_inobt_rec_incore_t *rec, - int *done, - int left) + int *done) { int error; int i; @@ -724,12 +723,12 @@ xfs_dialloc_ag( pag->pagl_leftrec != NULLAGINO && pag->pagl_rightrec != NULLAGINO) { error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec, - &trec, &doneleft, 1); + &trec, &doneleft); if (error) goto error1; error = xfs_ialloc_get_rec(cur, pag->pagl_rightrec, - &rec, &doneright, 0); + &rec, &doneright); if (error) goto error1; } else { |