From: Darrick J. Wong <djwong@xxxxxxxxxx> Report the presents of PARENT pointers from the version subcommand. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Reviewed-by: Christoph Hellwig <hch@xxxxxx> --- db/sb.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/sb.c b/db/sb.c index c39011634..7836384a1 100644 --- a/db/sb.c +++ b/db/sb.c @@ -708,6 +708,8 @@ version_string( strcat(s, ",NREXT64"); if (xfs_has_exchange_range(mp)) strcat(s, ",EXCHANGE"); + if (xfs_has_parent(mp)) + strcat(s, ",PARENT"); return s; }