OSDN Git Service

xfs: fix btree scrub deref check
authorDarrick J. Wong <darrick.wong@oracle.com>
Mon, 6 Nov 2017 20:09:29 +0000 (12:09 -0800)
committerDarrick J. Wong <darrick.wong@oracle.com>
Thu, 9 Nov 2017 17:10:45 +0000 (09:10 -0800)
commita605e86912ba6fc4b79084c286b1b45e753b72cc
tree288ea5b1045bef9c662774a7d81bd8b85b49b5b3
parent72f76f73642fa8528cab098b5f66abb299f1a018
xfs: fix btree scrub deref check

The btree scrubber has some custom code to retrieve and check a btree
block via xfs_btree_lookup_get_block.  This function will either return
an error code (verifiers failed) or a *pblock will be untouched (bad
pointer).  Since we previously set *pblock to NULL, we need to check
*pblock, not pblock, to trigger the early bailout.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
fs/xfs/scrub/btree.c