From 4e4410da9318ab3f1e1a7d555dbf578ba0f65771 Mon Sep 17 00:00:00 2001 From: David Lehman Date: Tue, 9 Sep 2014 11:24:48 -0500 Subject: [PATCH 4/7] Increase max size for btrfs to 16 EiB. (#1114435) The maximums in blivet should be thoeretical maximums. Limitations beyond that are issues with the filesystem or its tools and not blivet's business. --- blivet/formats/fs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blivet/formats/fs.py b/blivet/formats/fs.py index 9131a3e..19b115a 100644 --- a/blivet/formats/fs.py +++ b/blivet/formats/fs.py @@ -1069,7 +1069,7 @@ class BTRFS(FS): _supported = True _packages = ["btrfs-progs"] _minSize = Size("256 MiB") - _maxSize = Size("16 TiB") + _maxSize = Size("16 EiB") # FIXME parted needs to be taught about btrfs so that we can set the # partition table type correctly for btrfs partitions # partedSystem = fileSystemType["btrfs"] -- 1.9.3