The patch titled inode-diet: Move i_pipe into a union has been removed from the -mm tree. Its filename is inode-diet-move-i_pipe-into-a-union.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: inode-diet: Move i_pipe into a union From: "Theodore Ts'o" <tytso@xxxxxxx> Move the i_pipe pointer into a union that will be shared with i_bdev and i_cdev. Signed-off-by: "Theodore Ts'o" <tytso@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/fs.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN include/linux/fs.h~inode-diet-move-i_pipe-into-a-union include/linux/fs.h --- a/include/linux/fs.h~inode-diet-move-i_pipe-into-a-union +++ a/include/linux/fs.h @@ -528,9 +528,10 @@ struct inode { #ifdef CONFIG_QUOTA struct dquot *i_dquot[MAXQUOTAS]; #endif - /* These three should probably be a union */ struct list_head i_devices; - struct pipe_inode_info *i_pipe; + union { + struct pipe_inode_info *i_pipe; + }; struct block_device *i_bdev; struct cdev *i_cdev; int i_cindex; _ Patches currently in -mm which might be from tytso@xxxxxxx are origin.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-gfs2.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-gfs2.patch inode-diet-move-i_pipe-into-a-union-ecryptfs.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-ecryptfs.patch inode_diet-replace-inodeugeneric_ip-with-inodei_private-reiser4.patch inode-diet-eliminate-i_blksize-and-use-a-per-superblock-default-reiser4.patch statistics-replace-inode-ugeneric_ip-with-i_private.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html