The statfs call report information from the fs geometry structure.
Add the fields added for realtime group and zoned device support to
this output.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
printf(_("geom.rtextsize = %u\n"), fsgeo.rtextsize);
printf(_("geom.sunit = %u\n"), fsgeo.sunit);
printf(_("geom.swidth = %u\n"), fsgeo.swidth);
+ printf(_("geom.rgextents = %u\n"), fsgeo.rgextents);
+ printf(_("geom.rgcount = %u\n"), fsgeo.rgcount);
+ printf(_("geom.rtstart = %llu\n"),
+ (unsigned long long)fsgeo.rtstart);
+ printf(_("geom.rtreserved = %llu\n"),
+ (unsigned long long)fsgeo.rtreserved);
}
}