Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 262863
b: refs/heads/master
c: e570280
h: refs/heads/master
i:
  262861: 143d26f
  262859: 35088d2
  262855: a634d1d
  262847: 45f9ff5
v: v3
  • Loading branch information
Chandra Seetharaman authored and Alex Elder committed Aug 12, 2011
1 parent 3da4f8f commit 2ed9f51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: ac4d6888b21a8be373f3e06f1d4011fbe2bbbeac
refs/heads/master: e570280521290c27621d60cffea2400bdf1f2c88
4 changes: 2 additions & 2 deletions trunk/fs/xfs/xfs_log_recover.c
Original file line number Diff line number Diff line change
Expand Up @@ -2133,7 +2133,7 @@ xlog_recover_buffer_pass2(
buf_flags);
if (!bp)
return XFS_ERROR(ENOMEM);
error = xfs_buf_geterror(bp);
error = bp->b_error;
if (error) {
xfs_ioerror_alert("xlog_recover_do..(read#1)", mp,
bp, buf_f->blf_blkno);
Expand Down Expand Up @@ -2228,7 +2228,7 @@ xlog_recover_inode_pass2(
error = ENOMEM;
goto error;
}
error = xfs_buf_geterror(bp);
error = bp->b_error;
if (error) {
xfs_ioerror_alert("xlog_recover_do..(read#2)", mp,
bp, in_f->ilf_blkno);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/xfs/xfs_vnodeops.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ xfs_readlink_bmap(
XBF_LOCK | XBF_MAPPED | XBF_DONT_BLOCK);
if (!bp)
return XFS_ERROR(ENOMEM);
error = xfs_buf_geterror(bp);
error = bp->b_error;
if (error) {
xfs_ioerror_alert("xfs_readlink",
ip->i_mount, bp, XFS_BUF_ADDR(bp));
Expand Down

0 comments on commit 2ed9f51

Please sign in to comment.