linux24/fs/jfs
OSS-jfs_Admin <[email protected]>
| Newsgroups | gmane.comp.file-systems.jfs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /usr/cvs/jfs/linux24/fs/jfs In directory swg3ws024:/tmp/cvs-serv32126 Modified Files: file.c inode.c jfs_dmap.c jfs_dmap.h jfs_extent.c jfs_imap.c jfs_incore.h super.c Log Message: Avoid parallel allocations within the same allocation group When large files are writting in parallel, allocating the space for these files within the same allocation group can cause severe fragmentation of the files. By keeping track of open, growing files within an allocation group, we can force other new allocations into a different allocation group to avoid causing fragmentation.