How to read data from an ext4 with higher block size than 4K on x86_64?
[ Log in to get rid of this advertisement]
ext4 supports a block size of up to 64K, but Linux can only read ext4 file systems with block sizes not exceeding the CPU page size, which is 4K for x86_64 (getconf PAGESIZE).
Is there any way to read data from a higher block size ext4? I know, it will probably not have good performance, but still. mkfs.etxt4 can creade a 64K block file system on any system.
|