The patch titled VFS: Remove redundant open-coded mode bit checks in open_exec() has been removed from the -mm tree. Its filename is vfs-remove-redundant-open-coded-mode-bit-checks-in-open_exec.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: VFS: Remove redundant open-coded mode bit checks in open_exec() From: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> The check in open_exec() for inode->i_mode & 0111 has been made redundant by the fix to permission(). Signed-off-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: Chris Wright <chrisw@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/exec.c | 2 -- 1 file changed, 2 deletions(-) diff -puN fs/exec.c~vfs-remove-redundant-open-coded-mode-bit-checks-in-open_exec fs/exec.c --- a/fs/exec.c~vfs-remove-redundant-open-coded-mode-bit-checks-in-open_exec +++ a/fs/exec.c @@ -486,8 +486,6 @@ struct file *open_exec(const char *name) if (!(nd.mnt->mnt_flags & MNT_NOEXEC) && S_ISREG(inode->i_mode)) { int err = vfs_permission(&nd, MAY_EXEC); - if (!err && !(inode->i_mode & 0111)) - err = -EACCES; file = ERR_PTR(err); if (!err) { file = nameidata_to_filp(&nd, O_RDONLY); _ Patches currently in -mm which might be from Trond.Myklebust@xxxxxxxxxx are git-nfs.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