[rhel6-branch] Fix max supported size for XFS partitions. (#880577)

Samantha N. Bueno sbueno+anaconda at redhat.com
Tue Jul 2 14:14:09 UTC 2013


Resolves: rhbz#880577
---
 storage/formats/fs.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 9019f2c..c2eb731 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1271,7 +1271,7 @@ class XFS(FS):
     _defaultFormatOptions = ["-f"]
     _defaultLabelOptions = ["-L"]
     _maxLabelChars = 16
-    _maxSize = 16 * 1024 * 1024
+    _maxSize = 100 * 1024 * 1024
     _formattable = True
     _linuxNative = True
     _supported = True
-- 
1.7.11.7



More information about the anaconda-patches mailing list