The patch titled Subject: include/linux/security.h: fix typo in security_task_prctl() has been added to the -mm tree. Its filename is security-fix-typo-in-security_task_prctl.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/security-fix-typo-in-security_task_prctl.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/security-fix-typo-in-security_task_prctl.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jann Horn <jann@xxxxxxxxx> Subject: include/linux/security.h: fix typo in security_task_prctl() prctl(PR_CAP_AMBIENT, PR_CAP_AMBIENT_RAISE, CAP_DAC_OVERRIDE, 0, 0) failed with EINVAL because of a typo in kernel code. Andy said: "on CONFIG_SECURITY=n systems (which is all that this affects), this only matters for PR_CAP_AMBIENT, which is new". Signed-off-by: Jann Horn <jann@xxxxxxxxx> Reviewed-by: Andy Lutomirski <luto@xxxxxxxxxx> Cc: James Morris <james.l.morris@xxxxxxxxxx> Cc: "Serge E. Hallyn" <serge@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/security.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/security.h~security-fix-typo-in-security_task_prctl include/linux/security.h --- a/include/linux/security.h~security-fix-typo-in-security_task_prctl +++ a/include/linux/security.h @@ -946,7 +946,7 @@ static inline int security_task_prctl(in unsigned long arg4, unsigned long arg5) { - return cap_task_prctl(option, arg2, arg3, arg3, arg5); + return cap_task_prctl(option, arg2, arg3, arg4, arg5); } static inline void security_task_to_inode(struct task_struct *p, struct inode *inode) _ Patches currently in -mm which might be from jann@xxxxxxxxx are security-fix-typo-in-security_task_prctl.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