diff options
Diffstat (limited to 'fs/xfs/xfs_bmap.c')
-rw-r--r-- | fs/xfs/xfs_bmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c index a84d0c30b485..4b1ec44c80aa 100644 --- a/fs/xfs/xfs_bmap.c +++ b/fs/xfs/xfs_bmap.c | |||
@@ -1646,7 +1646,7 @@ xfs_bmap_add_extent_unwritten_real( | |||
1646 | PREV.br_blockcount - new->br_blockcount, | 1646 | PREV.br_blockcount - new->br_blockcount, |
1647 | oldext))) | 1647 | oldext))) |
1648 | goto done; | 1648 | goto done; |
1649 | if ((error = xfs_bmbt_increment(cur, 0, &i))) | 1649 | if ((error = xfs_btree_increment(cur, 0, &i))) |
1650 | goto done; | 1650 | goto done; |
1651 | if ((error = xfs_bmbt_update(cur, new->br_startoff, | 1651 | if ((error = xfs_bmbt_update(cur, new->br_startoff, |
1652 | new->br_startblock, | 1652 | new->br_startblock, |
@@ -3253,7 +3253,7 @@ xfs_bmap_del_extent( | |||
3253 | got.br_startblock, temp, | 3253 | got.br_startblock, temp, |
3254 | got.br_state))) | 3254 | got.br_state))) |
3255 | goto done; | 3255 | goto done; |
3256 | if ((error = xfs_bmbt_increment(cur, 0, &i))) | 3256 | if ((error = xfs_btree_increment(cur, 0, &i))) |
3257 | goto done; | 3257 | goto done; |
3258 | cur->bc_rec.b = new; | 3258 | cur->bc_rec.b = new; |
3259 | error = xfs_bmbt_insert(cur, &i); | 3259 | error = xfs_bmbt_insert(cur, &i); |