The patch titled oss: strlcpy is smart enough has been removed from the -mm tree. Its filename was oss-strlcpy-is-smart-enough.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: oss: 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> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- sound/oss/btaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN sound/oss/btaudio.c~oss-strlcpy-is-smart-enough sound/oss/btaudio.c --- a/sound/oss/btaudio.c~oss-strlcpy-is-smart-enough +++ a/sound/oss/btaudio.c @@ -344,7 +344,7 @@ static int btaudio_mixer_ioctl(struct in if (cmd == SOUND_OLD_MIXER_INFO) { _old_mixer_info info; memset(&info,0,sizeof(info)); - strlcpy(info.id,"bt878",sizeof(info.id)-1); + strlcpy(info.id, "bt878", sizeof(info.id)); strlcpy(info.name,"Brooktree Bt878 audio",sizeof(info.name)); if (copy_to_user(argp, &info, sizeof(info))) return -EFAULT; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are origin.patch applesmc-use-the-address-as-platform-device-id.patch applesmc-use-standard-sysfs-names-for-labels.patch git-alsa.patch git-dvb.patch scx200-use-mutex-instead-of-semaphore.patch x86-msr-add-support-for-safe-variants.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