Unfinished work: Difference between revisions
duh |
No edit summary |
||
Line 9: | Line 9: | ||
The xfs_reno tool has been available for IRIX for a long time. It can be used to make sure all inodes fit into 32 bits which is required for many old applications on 32 bit systems. It also is one of the building blocks required to support filesystem shrinks. Two versions [http://marc.info/?l=linux-xfs&m=119130906204596&w=2] [http://marc.info/?l=linux-xfs&m=119147190705051&w=2] have been posted by Barry Naujok. The current version is enough for it's original usecase, but not yet enough for the shrink functionality. See the required additional steps here [http://marc.info/?l=linux-xfs&m=119131697224361&w=2] for full shrink support. | The xfs_reno tool has been available for IRIX for a long time. It can be used to make sure all inodes fit into 32 bits which is required for many old applications on 32 bit systems. It also is one of the building blocks required to support filesystem shrinks. Two versions [http://marc.info/?l=linux-xfs&m=119130906204596&w=2] [http://marc.info/?l=linux-xfs&m=119147190705051&w=2] have been posted by Barry Naujok. The current version is enough for it's original usecase, but not yet enough for the shrink functionality. See the required additional steps here [http://marc.info/?l=linux-xfs&m=119131697224361&w=2] for full shrink support. | ||
== Support for unicode / utf8 filesystems == | |||
For normal Unix filesystems the characterset does not matter because filenames are treated as opaque blobs with special treatment only for ".", "..", "/" and "\0". But for case insensitive filenames the case mapping depends on the locale. The best way to implement case insensitive filenames is thus to chose one locale and stick to it for the on disk format. Utf8 has the boadest coverage so it's the best choice if you only want to support one. Barry Naujok has worked on it and published various patches for this. The latestet unicode support patch for XFS is here [http://marc.info/?l=linux-xfs&m=120876737022153&w=2] |
Revision as of 18:35, 21 December 2008
This is a list of patches that haven't been merged because they haven't been fully completed.
Inline data in inodes
IWAMOTO Toshihiro had a rough patch implementing storing regular file data inside the inode data fork, similar to what we do for small directories or symlinks [1]. Needs more work, and xfs-cmds support.
The xfs_reno tool
The xfs_reno tool has been available for IRIX for a long time. It can be used to make sure all inodes fit into 32 bits which is required for many old applications on 32 bit systems. It also is one of the building blocks required to support filesystem shrinks. Two versions [2] [3] have been posted by Barry Naujok. The current version is enough for it's original usecase, but not yet enough for the shrink functionality. See the required additional steps here [4] for full shrink support.
Support for unicode / utf8 filesystems
For normal Unix filesystems the characterset does not matter because filenames are treated as opaque blobs with special treatment only for ".", "..", "/" and "\0". But for case insensitive filenames the case mapping depends on the locale. The best way to implement case insensitive filenames is thus to chose one locale and stick to it for the on disk format. Utf8 has the boadest coverage so it's the best choice if you only want to support one. Barry Naujok has worked on it and published various patches for this. The latestet unicode support patch for XFS is here [5]