Commit 110f09cb authored by Darrick J. Wong's avatar Darrick J. Wong

xfs: add missing assert in xfs_fsmap_owner_from_rmap

The fsmap handler shouldn't fail silently if the rmap code ever feeds it
a special owner number that isn't known to the fsmap handler.
Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
parent ee4fb16c
...@@ -146,6 +146,7 @@ xfs_fsmap_owner_from_rmap( ...@@ -146,6 +146,7 @@ xfs_fsmap_owner_from_rmap(
dest->fmr_owner = XFS_FMR_OWN_FREE; dest->fmr_owner = XFS_FMR_OWN_FREE;
break; break;
default: default:
ASSERT(0);
return -EFSCORRUPTED; return -EFSCORRUPTED;
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment