On Wed, Jul 11, 2012 at 04:05:57PM -0400, Theodore Ts'o wrote: > I will *not* accept a patch which uses memcpy to copy each field in > the on-disk superblock, or directory entry, into an int, just in case > there is some insane architecture which requires that 4 byte integers > be 32-byte aligned, or something else insane like that. This is a problem we've had to deal with in the XFS userspace for years because of the way extent records are packed into inodes. Hence we have "get/set_unaligned_be32" and "get/set_unaligned_be64" functions to read and write unaligned variables directly out of buffers without having platform specific alignment issues. It's exactly the same generic code as the kernel uses for this purpose. See libxfs/xfs.h.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- 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