[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH] larger inodes for ext3 at install time
- From: Eric Sandeen <sandeen redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH] larger inodes for ext3 at install time
- Date: Tue, 23 Oct 2007 11:40:17 -0500
Larger inodes should help out with selinux and/or beagle attributes a bit
(xattrs can be stored in-inode) and also makes upgrade to ext4 possible
(which needs an in-inode extent list)
Should I also file something in bugzilla?
Thanks,
-Eric
Index: anaconda-11.3.0.42/fsset.py
===================================================================
--- anaconda-11.3.0.42.orig/fsset.py
+++ anaconda-11.3.0.42/fsset.py
@@ -576,7 +576,7 @@ class ext3FileSystem(extFileSystem):
def __init__(self):
extFileSystem.__init__(self)
self.name = "ext3"
- self.extraFormatArgs = [ "-j" ]
+ self.extraFormatArgs = [ "-j -I 256" ]
self.partedFileSystemType = parted.file_system_type_get("ext3")
def formatDevice(self, entry, progress, chroot='/'):
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]