Commit a9b47dea authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] logic error in XFS

Yet another misplaced ! by the looks..
parent 19e86c2d
...@@ -1553,7 +1553,7 @@ xlog_recover_reorder_trans( ...@@ -1553,7 +1553,7 @@ xlog_recover_reorder_trans(
case XFS_LI_BUF: case XFS_LI_BUF:
case XFS_LI_6_1_BUF: case XFS_LI_6_1_BUF:
case XFS_LI_5_3_BUF: case XFS_LI_5_3_BUF:
if ((!flags & XFS_BLI_CANCEL)) { if (!(flags & XFS_BLI_CANCEL)) {
xlog_recover_insert_item_frontq(&trans->r_itemq, xlog_recover_insert_item_frontq(&trans->r_itemq,
itemq); itemq);
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment