]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: track bulkstat progress by agino
authorDave Chinner <dchinner@redhat.com>
Thu, 6 Nov 2014 21:33:52 +0000 (08:33 +1100)
committerDave Chinner <david@fromorbit.com>
Thu, 6 Nov 2014 21:33:52 +0000 (08:33 +1100)
commit7363d5bf59e515abcb8d8c2f7dd2898df5982d74
treea753dde5e9118cc908566a3aa37c9b3620a24a79
parent405f98d8c4ff052948c2dc85ce8e95244d8150b7
xfs: track bulkstat progress by agino

The bulkstat main loop progress is tracked by the "lastino"
variable, which is a full 64 bit inode. However, the loop actually
works on agno/agino pairs, and so there's a significant disconnect
between the rest of the loop and the main cursor. Convert this to
use the agino, and pass the agino into the chunk formatting function
and convert it too.

This gets rid of the inconsistency in the loop processing, and
finally makes it simple for us to skip inodes at any point in the
loop simply by incrementing the agino cursor.

cc: <stable@vger.kernel.org> # 3.17
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_itable.c