]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: preserve inode versioning across remounts
authorEric Sandeen <sandeen@redhat.com>
Wed, 15 Jul 2020 15:30:37 +0000 (08:30 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Fri, 17 Jul 2020 20:20:20 +0000 (13:20 -0700)
commit18059e40fdd121281abc4a4dee4e1c8f94f98b15
tree92aa73823c558903b8a7058af1aa73a83e2018f9
parentf82e0114885e513896097bca93c25f3f7afaed3d
xfs: preserve inode versioning across remounts

The MS_I_VERSION mount flag is exposed via the VFS, as documented
in the mount manpages etc; see the iversion and noiversion mount
options in mount(8).

As a result, mount -o remount looks for this option in /proc/mounts
and will only send the I_VERSION flag back in during remount it it
is present.  Since it's not there, a remount will /remove/ the
I_VERSION flag at the vfs level, and iversion functionality is lost.

xfs v5 superblocks intend to always have i_version enabled; it is
set as a default at mount time, but is lost during remount for the
reasons above.

The generic fix would be to expose this documented option in
/proc/mounts, but since that was rejected, fix it up again in the
xfs remount path instead, so that at least xfs won't suffer from
this misbehavior.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/xfs_super.c