Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162747
b: refs/heads/master
c: a0f7bfd
h: refs/heads/master
i:
  162745: 170f5bd
  162743: a05991f
v: v3
  • Loading branch information
Julia Lawall authored and Felix Blyakher committed Aug 31, 2009
1 parent 7dd16a8 commit ad22635
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: eb00457d624c70a2492c319e7e05ed7e067b2794
refs/heads/master: a0f7bfd3429fc48f4d1aa5364b9428d75798ba04
4 changes: 2 additions & 2 deletions trunk/fs/xfs/xfs_trans_buf.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,15 +307,15 @@ xfs_trans_read_buf(
return (flags & XFS_BUF_TRYLOCK) ?
EAGAIN : XFS_ERROR(ENOMEM);

if ((bp != NULL) && (XFS_BUF_GETERROR(bp) != 0)) {
if (XFS_BUF_GETERROR(bp) != 0) {
xfs_ioerror_alert("xfs_trans_read_buf", mp,
bp, blkno);
error = XFS_BUF_GETERROR(bp);
xfs_buf_relse(bp);
return error;
}
#ifdef DEBUG
if (xfs_do_error && (bp != NULL)) {
if (xfs_do_error) {
if (xfs_error_target == target) {
if (((xfs_req_num++) % xfs_error_mod) == 0) {
xfs_buf_relse(bp);
Expand Down

0 comments on commit ad22635

Please sign in to comment.