It seems we can do nothing to aid the file system alignment if even this doesn't hold.
Is it true?
|
It seems we can do nothing to aid the file system alignment if even this doesn't hold. Is it true?
| |||||||||||
feedback
|
|
Assuming that by pagesize you mean the file system logical allocation unit (typically 4K or 8K clusters), you cannot assume a file will start at a boundary with every file system. Many FS based on FFS (SunOS/SVR4 and HP-UX UFS, BSD UFS1 & UFS2, LFS) implements fragments in order to save space when a lot of small files are created. Note that while ext2/3 is based on FFS, it doesn't support fragments. Other common (or less common) FS that implement block sub-allocation are Netware FS, ReiserFS, Reiser4, IBM JFS2, Sun SAM/QFS and VMWare VMFS. Modern file systems like btrfs and zfs also support block sub allocation. With all these file systems, a small file might start at a non null offset from an allocation unit boundary. In any case, large files, i.e. files larger than the allocation unit will likely start at a boundary on almost all if not all file systems. | |||||||||||
feedback
|