xfs: xfs_iflush_done checks the wrong log item callback
authorMark Tinguely <tinguely@sgi.com>
Thu, 2 Oct 2014 23:09:50 +0000 (09:09 +1000)
committerDave Chinner <david@fromorbit.com>
Thu, 2 Oct 2014 23:09:50 +0000 (09:09 +1000)
commit52177937e9ac4573391143065b250403d3a6ae4b
tree4e0debc6b0570610bb3236409106d99b697aa3eb
parentda5f10969d54006a24777a84ed3eaeeb2a21047f
xfs: xfs_iflush_done checks the wrong log item callback

Commit 3013683 ("xfs: remove all the inodes on a buffer from the AIL
in bulk") made the xfs inode flush callback more efficient by
combining all the inode writes on the buffer and the deletions of
the inode log item from AIL.

The initial loop in this patch should be looping through all
the log items on the buffer to see which items have
xfs_iflush_done as their callback function. But currently,
only the log item passed to the function has its callback
compared to xfs_iflush_done. If the log item pointer passed to
the function does have the xfs_iflush_done callback function,
then all the log items on the buffer are removed from the
li_bio_list on the buffer b_fspriv and could be removed from
the AIL even though they may have not been written yet.

This problem is masked by the fact that currently all inodes on a
buffer will have the same calback function - either xfs_iflush_done
or xfs_istale_done - and hence the bug cannot manifest in any way.
Still, we need to remove the landmine so that if we add new
callbacks in future this doesn't cause us problems.

Signed-off-by: Mark Tinguely <tinguely@sgi.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_inode_item.c