diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-01 09:08:52 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-11 16:06:39 -0800 |
commit | 3258cb208caba74258ffdd8bd59972bbda9bfee1 (patch) | |
tree | 91a42bee59dca8da6bcac5c655f54cc3b88226ad | |
parent | f9e63342b858332d932414a7b27cad1d5557c84c (diff) | |
download | linux-3258cb208caba74258ffdd8bd59972bbda9bfee1.tar.gz linux-3258cb208caba74258ffdd8bd59972bbda9bfee1.tar.bz2 linux-3258cb208caba74258ffdd8bd59972bbda9bfee1.zip |
xfs: abort xattr scrub if fatal signals are pending
The extended attribute scrubber should abort the "read all attrs" loop
if there's a fatal signal pending on the process.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Brian Foster <bfoster@redhat.com>
-rw-r--r-- | fs/xfs/scrub/attr.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/xfs/scrub/attr.c b/fs/xfs/scrub/attr.c index 81d5e90547a1..9960bc5b5d76 100644 --- a/fs/xfs/scrub/attr.c +++ b/fs/xfs/scrub/attr.c @@ -82,6 +82,11 @@ xchk_xattr_listent( sx = container_of(context, struct xchk_xattr, context); + if (xchk_should_terminate(sx->sc, &error)) { + context->seen_enough = 1; + return; + } + if (flags & XFS_ATTR_INCOMPLETE) { /* Incomplete attr key, just mark the inode for preening. */ xchk_ino_set_preen(sx->sc, context->dp->i_ino); |