Hi folks, This is a patchset I've written over the past couple of afternoons. It smokes badly if you try to run it, so I'm posting this for early feedback, not for testing and bug reports. Despite it's name, the struct xfs_icdinode is an on-disk structure - it gets copied directly to the log, and so we are kind of stuck with keeping it around and all it's duplicate information while we do this. Hence before we can shrink this structure, wehave ot break it's link with the logging code. That's what the first patch does - it introduces a struct xfs_log_dinode, and the log formatting and reocvery code use that for the structure that is placed physically in the log. We marshall the variables from the xfs_icdinode in and out individually so we break the dependence between the on-disk format and the xfs_icdinode. This now enables us to remove all the bits of the xfs_icdinode that are either unused (e.g. padding), only used to support old formats, or a duplicates with information stored in the VFS struct inode. As a result, I've been able to reduce the xfs_icdinode from 176 bytes down to: /* size: 72, cachelines: 2, members: 19 */ /* sum members: 68, holes: 1, sum holes: 4 */ 72 bytes. This means it takes 104 bytes off the size of the struct xfs_inode, which a 12% reduction in size. This will be a massive win for systems that cache lots of inodes! I have not yet addressed the di_uid or the di_gid because I haven't had time to look into the user namespace conversion issues that I'll have to handle correctly to use the VFS inode fieldsr. I think I can also pull up the di_nblocks field to the VFS inode as well. If I manage this, I will reduce the xfs_icdinode by another 16 bytes. With this change made, the xfs_icdinode is no long an "in core disk inode" so I'm wondering whether I should rename it or simply make it go away altogether and pull the remaining fields straight into the struct xfs_inode. Any thoughts on new names and/or getting rid of it woul dbe appreciated. Some of the code is pretty raw - I haven't cleaned it up at all, so do be surprised if there's things I've missed or changed in the wrong patch, etc. Comments, thoughts, flames, all welcome! -Dave. _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs