From: Theodore Ts'o Date: Tue, 27 Feb 2018 06:27:10 +0000 (-0500) Subject: resize2fs: remove bigalloc warning for online resizing X-Git-Tag: v1.44.0-rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b636e0cb04d6a149809f3356ba50405075d5d3d2;p=thirdparty%2Fe2fsprogs.git resize2fs: remove bigalloc warning for online resizing The kernel supports online resizing of bigalloc file systems. There's no real point to have a scary messaging when doing an online resize of bigalloc file systems, since all of the heavy lifting is done by the kernel. Signed-off-by: Theodore Ts'o --- diff --git a/resize/main.c b/resize/main.c index 600e820a6..a0c31c069 100644 --- a/resize/main.c +++ b/resize/main.c @@ -606,7 +606,6 @@ int main (int argc, char ** argv) exit(0); } if (mount_flags & EXT2_MF_MOUNTED) { - bigalloc_check(fs, force); retval = online_resize_fs(fs, mtpt, &new_size, flags); } else { bigalloc_check(fs, force);