The patch titled add-kstrndup fix has been removed from the -mm tree. Its filename was add-kstrndup-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: add-kstrndup fix From: Jeremy Fitzhardinge <jeremy@xxxxxxxx> strnlen prevents over-reading the input. Signed-off-by: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx> Cc: René Scharfe <rene.scharfe@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/util.c | 4 +--- 1 files changed, 1 insertion(+), 3 deletions(-) diff -puN mm/util.c~add-kstrndup-fix mm/util.c --- a/mm/util.c~add-kstrndup-fix +++ a/mm/util.c @@ -53,9 +53,7 @@ char *kstrndup(const char *s, size_t max if (!s) return NULL; - len = strlen(s); - if (len > max) - len = max; + len = strnlen(s, max); buf = kmalloc_track_caller(len+1, gfp); if (buf) { memcpy(buf, s, len); _ Patches currently in -mm which might be from jeremy@xxxxxxxx are origin.patch fix-the-softlockup-watchdog-to-actually-work.patch git-kbuild.patch fix-x86_64-mm-xen-xen-smp-guest-support.patch fix-x86_64-mm-xen-xen-event-channels.patch i386-minor-nx-handling-adjustment.patch x86-fix-iounmaps-use-of-vm_structs-size-field.patch maps2-uninline-some-functions-in-the-page-walker.patch maps2-eliminate-the-pmd_walker-struct-in-the-page-walker.patch maps2-remove-vma-from-args-in-the-page-walker.patch maps2-propagate-errors-from-callback-in-page-walker.patch maps2-add-callbacks-for-each-level-to-page-walker.patch maps2-move-the-page-walker-code-to-lib.patch maps2-simplify-interdependence-of-proc-pid-maps-and-smaps.patch maps2-move-clear_refs-code-to-task_mmuc.patch maps2-regroup-task_mmu-by-interface.patch maps2-make-proc-pid-smaps-optional-under-config_embedded.patch maps2-make-proc-pid-clear_refs-option-under-config_embedded.patch maps2-add-proc-pid-pagemap-interface.patch maps2-add-proc-kpagemap-interface.patch lguest-the-guest-code.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