xfs: get root inode correctly at bulkstat
authorHironori Shiina <shiina.hironori@gmail.com>
Mon, 26 Dec 2022 18:11:19 +0000 (10:11 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Tue, 3 Jan 2023 18:23:07 +0000 (10:23 -0800)
commit817644fa4525258992f17fecf4f1d6cdd2e1b731
tree741fe3c834f09194b581bdebf1de94234d328d34
parentc0f399ff51495ac8d30367418f4f6292ecd61fbe
xfs: get root inode correctly at bulkstat

The root inode number should be set to `breq->startino` for getting stat
information of the root when XFS_BULK_IREQ_SPECIAL_ROOT is used.
Otherwise, the inode search is started from 1
(XFS_BULK_IREQ_SPECIAL_ROOT) and the inode with the lowest number in a
filesystem is returned.

Fixes: bf3cb3944792 ("xfs: allow single bulkstat of special inodes")
Signed-off-by: Hironori Shiina <shiina.hironori@fujitsu.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/xfs_ioctl.c