The patch titled ecryptfs build fix has been removed from the -mm tree. Its filename is ecryptfs-superblock-operations-ecryptfs-build-fix.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: ecryptfs build fix From: Michael Halcrow <mhalcrow@xxxxxxxxxx> API changes.. Signed-off-by: Michael Halcrow <mhalcrow@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/ecryptfs/super.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff -puN fs/ecryptfs/super.c~ecryptfs-superblock-operations-ecryptfs-build-fix fs/ecryptfs/super.c --- a/fs/ecryptfs/super.c~ecryptfs-superblock-operations-ecryptfs-build-fix +++ a/fs/ecryptfs/super.c @@ -152,15 +152,13 @@ static inline void ecryptfs_clear_inode( * Used only in nfs, to kill any pending RPC tasks, so that subsequent * code can actually succeed and won't leave tasks that need handling. */ -static void ecryptfs_umount_begin(struct vfsmount *vfsmnt, int flags) +static void ecryptfs_umount_begin(struct super_block *sb) { - struct vfsmount *lower_mnt; struct super_block *lower_sb; - lower_mnt = ecryptfs_superblock_to_private(vfsmnt->mnt_sb)->lower_mnt; - lower_sb = lower_mnt->mnt_sb; + lower_sb = ecryptfs_superblock_to_lower(sb); if (lower_sb->s_op->umount_begin) - lower_sb->s_op->umount_begin(lower_mnt, flags); + lower_sb->s_op->umount_begin(lower_sb); } /** _ Patches currently in -mm which might be from mhalcrow@xxxxxxxxxx are - 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