The patch titled profile: fix uaccess handling has been removed from the -mm tree. Its filename was profile-fix-uaccess-handling.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: profile: fix uaccess handling From: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Signed-off-by: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/profile.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/profile.c~profile-fix-uaccess-handling kernel/profile.c --- a/kernel/profile.c~profile-fix-uaccess-handling +++ a/kernel/profile.c @@ -442,7 +442,8 @@ read_profile(struct file *file, char __u read = 0; while (p < sizeof(unsigned int) && count > 0) { - put_user(*((char *)(&sample_step)+p),buf); + if (put_user(*((char *)(&sample_step)+p),buf)) + return -EFAULT; buf++; p++; count--; read++; } pnt = (char *)prof_buffer + p - sizeof(atomic_t); _ Patches currently in -mm which might be from heiko.carstens@xxxxxxxxxx are origin.patch git-s390.patch s390-workqueue-fixes.patch scsi-fix-uaccess-handling.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