The patch titled xtensa: strlcpy is smart enough has been removed from the -mm tree. Its filename was xtensa-strlcpy-is-smart-enough.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: xtensa: strlcpy is smart enough From: Jean Delvare <khali@xxxxxxxxxxxx> strlcpy already accounts for the trailing zero in its length computation, so there is no need to substract one to the buffer size. Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Chris Zankel <chris@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/xtensa/platform-iss/network.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/xtensa/platform-iss/network.c~xtensa-strlcpy-is-smart-enough arch/xtensa/platform-iss/network.c --- a/arch/xtensa/platform-iss/network.c~xtensa-strlcpy-is-smart-enough +++ a/arch/xtensa/platform-iss/network.c @@ -251,7 +251,7 @@ static int tuntap_open(struct iss_net_pr memset(&ifr, 0, sizeof ifr); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; - strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name - 1); + strlcpy(ifr.ifr_name, dev_name, sizeof ifr.ifr_name); if ((err = simc_ioctl(fd, TUNSETIFF, (void*) &ifr)) < 0) { printk("Failed to set interface, returned %d " _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are origin.patch git-alsa.patch scx200-use-mutex-instead-of-semaphore.patch git-r8169.patch x86-msr-add-support-for-safe-variants.patch apple-smc-driver-hardware-monitoring-and-control.patch apple-smc-driver-hardware-monitoring-and-control-fix-names.patch oss-strlcpy-is-smart-enough.patch rtc-add-rtc-class-driver-for-the-maxim-max6900.patch rtc-add-rtc-class-driver-for-the-maxim-max6900-update.patch legacy-pc-parports-support-parport-dev.patch layered-parport-code-uses-parport-dev.patch clean-up-mutex_trylock-noise.patch fbdev-dont-show-logo-if-driver-or-fbcon-are-modular.patch rivafb-handle-i2c-bus-creation-failure.patch rivafb-nvidiafb-various-cleanups.patch rivafb-fixed-reversed-ddc-ports.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