On Wed, May 02, 2012 at 12:52:06PM -0600, Andreas Dilger wrote: > > Won't this cause e.g. the 16kB/64kB blocksize regression tests to > fail on MacOS? I've been assuming that the memalign functionality > is only necessary for O_DIRECT, which isn't even working on MacOS, > so it is enough to just return an unaligned memory chunk and it > will work for normal buffered IO on MacOS. Hmm, good point. What we should probably do is fix things so we only try to use ext2fs_get_memalign() if we are doing O_DIRECT in the first place, since can be be overhead using ext2fs_memalign if it's not needed, especially if we are using valloc(). I don't want to leave ext2fs_get_memalign doing something which isn't as the function is documented, even if it's good enough for our current needs and it will just work today. That leaves behind an accident waiting to happen later on --- for example if some progam uses ext2fs_get_memalign() for some use other than what we currently assume that it will be used for... - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html