On Tue, Jul 02, 2019 at 12:31:34PM -0700, James Bottomley wrote: > Actually, this is giving me: > > mke2fs: Operation not supported for inodes containing extents while > creating huge files > > Is that because it's an ext4 only feature? That'll teach me not to send out a sequence like that without testing it myself first. :-) Yeah, because one of the requirements was to make the file contiguous, without any intervening indirect block or extent tree blocks, the creation of the file is done manually, and at the time, I only implemented it for extents, since the original goal of the goal was to create really big files (hence the name of the feature "mk_hugefile"), and using indirect blocks would be a huge waste of disk space. It wouldn't be that hard for me to add support for indirect block maps, or if you were going to convert things over so that the pa_risc 2nd stage boot loader can understand how to read from extents, that'll allow this to work as well. - Ted