mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
xfs: get root inode correctly at bulkstat
[ Upstream commit817644fa45] 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:bf3cb39447("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> Signed-off-by: Leah Rumancik <leah.rumancik@gmail.com> Acked-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7430ff84c2
commit
fbdf080691
@@ -754,7 +754,7 @@ xfs_bulkstat_fmt(
|
|||||||
static int
|
static int
|
||||||
xfs_bulk_ireq_setup(
|
xfs_bulk_ireq_setup(
|
||||||
struct xfs_mount *mp,
|
struct xfs_mount *mp,
|
||||||
struct xfs_bulk_ireq *hdr,
|
const struct xfs_bulk_ireq *hdr,
|
||||||
struct xfs_ibulk *breq,
|
struct xfs_ibulk *breq,
|
||||||
void __user *ubuffer)
|
void __user *ubuffer)
|
||||||
{
|
{
|
||||||
@@ -780,7 +780,7 @@ xfs_bulk_ireq_setup(
|
|||||||
|
|
||||||
switch (hdr->ino) {
|
switch (hdr->ino) {
|
||||||
case XFS_BULK_IREQ_SPECIAL_ROOT:
|
case XFS_BULK_IREQ_SPECIAL_ROOT:
|
||||||
hdr->ino = mp->m_sb.sb_rootino;
|
breq->startino = mp->m_sb.sb_rootino;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|||||||
Reference in New Issue
Block a user