From: Daan De Meyer Date: Thu, 13 Oct 2022 11:31:13 +0000 (+0200) Subject: resize-fs: Bump xfs minimum partition size to 16MB X-Git-Tag: v253-rc1~527^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78b66c027e656a0fb769a7ad5349d0cd64682c08;p=thirdparty%2Fsystemd.git resize-fs: Bump xfs minimum partition size to 16MB 14MB leads to errors in mkfs.xfs when running repart. --- diff --git a/src/shared/resize-fs.h b/src/shared/resize-fs.h index 312005f7e21..ac185d180b0 100644 --- a/src/shared/resize-fs.h +++ b/src/shared/resize-fs.h @@ -8,7 +8,7 @@ int resize_fs(int fd, uint64_t sz, uint64_t *ret_size); #define BTRFS_MINIMAL_SIZE (256U*1024U*1024U) -#define XFS_MINIMAL_SIZE (14U*1024U*1024U) +#define XFS_MINIMAL_SIZE (16U*1024U*1024U) #define EXT4_MINIMAL_SIZE (1024U*1024U) uint64_t minimal_size_by_fs_magic(statfs_f_type_t magic);