diff options
Diffstat (limited to 'fs/xfs/libxfs/xfs_ialloc.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_ialloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_ialloc.c b/fs/xfs/libxfs/xfs_ialloc.c index ffd5a15d1bb6..abf5beaae907 100644 --- a/fs/xfs/libxfs/xfs_ialloc.c +++ b/fs/xfs/libxfs/xfs_ialloc.c | |||
@@ -1246,13 +1246,13 @@ xfs_dialloc_ag_inobt( | |||
1246 | 1246 | ||
1247 | /* free inodes to the left? */ | 1247 | /* free inodes to the left? */ |
1248 | if (useleft && trec.ir_freecount) { | 1248 | if (useleft && trec.ir_freecount) { |
1249 | rec = trec; | ||
1250 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); | 1249 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
1251 | cur = tcur; | 1250 | cur = tcur; |
1252 | 1251 | ||
1253 | pag->pagl_leftrec = trec.ir_startino; | 1252 | pag->pagl_leftrec = trec.ir_startino; |
1254 | pag->pagl_rightrec = rec.ir_startino; | 1253 | pag->pagl_rightrec = rec.ir_startino; |
1255 | pag->pagl_pagino = pagino; | 1254 | pag->pagl_pagino = pagino; |
1255 | rec = trec; | ||
1256 | goto alloc_inode; | 1256 | goto alloc_inode; |
1257 | } | 1257 | } |
1258 | 1258 | ||