Changes since last update:
- Enhance inode fork verifiers to prevent loading of corrupted metadata.
- Fix a crash when we try to convert extents format inodes to btree
  format, we run out of space, but forget to revert the in-core state
  changes.
- Fix file size checks when doing INSERT_RANGE that could cause files
  to end up negative size if there previously was an extent mapped at
  s_maxbytes.
- Fix a bug when doing a remove-then-add ATTR_REPLACE xattr update where
  we forget to clear ATTR_REPLACE after the remove, which causes the
  attr to be lost and the fs to shut down due to (what it thinks is)
  inconsistent in-core state.
xfs: don't fail when converting shortform attr to long form during ATTR_REPLACE

Kanda Motohiro reported that expanding a tiny xattr into a large xattr
fails on XFS because we remove the tiny xattr from a shortform fork and
then try to re-add it after converting the fork to extents format having
not removed the ATTR_REPLACE flag.  This fails because the attr is no
longer present, causing a fs shutdown.

This is derived from the patch in his bug report, but we really
shouldn't ignore a nonzero retval from the remove call.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199119
Reported-by: kanda.motohiro@gmail.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>
1 file changed