From: Dave Chinner Date: Wed, 13 Nov 2013 06:40:51 +0000 (+0000) Subject: db: re-enable write support for v5 filesystems. X-Git-Tag: v3.2.0-alpha2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d14bf4dda7f5a59ba3fbaed38cd829db5f68a105;p=thirdparty%2Fxfsprogs-dev.git db: re-enable write support for v5 filesystems. As we can now verify and recalculate CRCs on IO, we can modify the on-disk structures without corrupting the filesyste, This makes it safe to turn write support on for v5 filesystems for the first time. Signed-off-by: Dave Chinner Reviewed-by: Christoph Hellwig Signed-off-by: Rich Johnston --- diff --git a/db/init.c b/db/init.c index 2dc7c8707..25108ad02 100644 --- a/db/init.c +++ b/db/init.c @@ -143,21 +143,6 @@ init( exit(EXIT_FAILURE); } - /* - * Don't allow modifications to CRC enabled filesystems until we support - * CRC recalculation in the IO path. Unless, of course, the user is in - * the process of hitting us with a big hammer. - */ - if (XFS_SB_VERSION_NUM(sbp) >= XFS_SB_VERSION_5 && - !(x.isreadonly & LIBXFS_ISREADONLY)) { - fprintf(stderr, - _("%s: modifications to %s are not supported in thi version.\n" - "Use \"-r\" to run %s in read-only mode on this filesystem .\n"), - progname, fsdevice, progname); - if (!force) - exit(EXIT_FAILURE); - } - mp = libxfs_mount(&xmount, sbp, x.ddev, x.logdev, x.rtdev, LIBXFS_MOUNT_DEBUGGER); if (!mp) {