Commit 980eab8d authored by Stephen Lord's avatar Stephen Lord Committed by Nathan Scott

[XFS] fix loop termination logic in xfs_sync

SGI Modid: 2.5.x-xfs:slinx:131490a
parent 0aef4def
......@@ -1412,7 +1412,7 @@ xfs_syncsub(
ASSERT(ipointer_in == B_FALSE);
ip = ip->i_mnext;
} while (ip->i_mnext != mp->m_inodes);
} while (ip != mp->m_inodes);
XFS_MOUNT_IUNLOCK(mp);
......
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