Skip to content
Commit c7ff91d7 authored by Ryota Yamauchi's avatar Ryota Yamauchi Committed by hch@lst.de
Browse files

xfs: fix xfs_quota remove error



The xfs_quota returns ENOSYS when remove command is executed.
Reproducable with following steps.

    # mount -t xfs -o uquota /dev/sda7 /mnt/mp1
    # xfs_quota -x -c off -c remove
    XFS_QUOTARM: Function not implemented.

The remove command is allowed during quotaoff, but xfs_fs_set_xstate()
checks whether quota is running, and it leads to ENOSYS.

To solve this problem, add a check for X_QUOTARM.

Signed-off-by: default avatarRyota Yamauchi <r-yamauchi@vf.jp.nec.com>
Signed-off-by: default avatarUtako Kusaka <u-kusaka@wm.jp.nec.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 3b826386
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