The patch titled Missing __user in pointer referenced within copy_from_user has been removed from the -mm tree. Its filename was missing-__user-in-pointer-referenced-within-copy_from_user.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Missing __user in pointer referenced within copy_from_user From: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx> Pointers to user data should be marked with a __user hint. This one is missing. Signed-off-by: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/base.c~missing-__user-in-pointer-referenced-within-copy_from_user fs/proc/base.c --- a/fs/proc/base.c~missing-__user-in-pointer-referenced-within-copy_from_user +++ a/fs/proc/base.c @@ -581,7 +581,7 @@ out_no_task: #ifndef mem_write /* This is a security hazard */ -static ssize_t mem_write(struct file * file, const char * buf, +static ssize_t mem_write(struct file * file, const char __user *buf, size_t count, loff_t *ppos) { int copied; _ Patches currently in -mm which might be from gcosta@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