Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7591
b: refs/heads/master
c: 3bdbfb1
h: refs/heads/master
i:
  7589: 7e8612d
  7587: e0015a2
  7583: 84c99a6
v: v3
  • Loading branch information
David Chinner authored and Nathan Scott committed Sep 2, 2005
1 parent 31edfc1 commit c38b038
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bcec2b7f2bf856bdf2a8780a57fe78417a513682
refs/heads/master: 3bdbfb104e53b367892cc9510e6722346dfb656b
12 changes: 11 additions & 1 deletion trunk/fs/xfs/xfs_bmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -4754,10 +4754,20 @@ xfs_bmapi(
error = xfs_mod_incore_sb(mp,
XFS_SBS_FDBLOCKS,
-(alen), rsvd);
if (!error)
if (!error) {
error = xfs_mod_incore_sb(mp,
XFS_SBS_FDBLOCKS,
-(indlen), rsvd);
if (error && rt) {
xfs_mod_incore_sb(ip->i_mount,
XFS_SBS_FREXTENTS,
extsz, rsvd);
} else if (error) {
xfs_mod_incore_sb(ip->i_mount,
XFS_SBS_FDBLOCKS,
alen, rsvd);
}
}

if (error) {
if (XFS_IS_QUOTA_ON(ip->i_mount))
Expand Down

0 comments on commit c38b038

Please sign in to comment.