]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: ignore leaf attr ichdr.count in verifier during log replay
authorEric Sandeen <sandeen@redhat.com>
Fri, 9 Dec 2016 05:49:47 +0000 (16:49 +1100)
committerDave Chinner <david@fromorbit.com>
Fri, 9 Dec 2016 05:49:47 +0000 (16:49 +1100)
commit9ec1c35f5c91690bac93a27b6125d2b2823ee6c3
treeb1cbc57ba436ab8457c8603c90ac6092ead1b194
parent0efbbc116b6c7736fb686b5f9095583b32867b55
xfs: ignore leaf attr ichdr.count in verifier during log replay

When we create a new attribute, we first create a shortform
attribute, and try to fit the new attribute into it.
If that fails, we copy the (empty) attribute into a leaf attribute,
and do the copy again.  Thus there can be a transient state where
we have an empty leaf attribute.

If we encounter this during log replay, the verifier will fail.
So add a test to ignore this part of the leaf attr verification
during log replay.

Thanks as usual to dchinner for spotting the problem.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/libxfs/xfs_attr_leaf.c