The patch titled missing null termination in one wire uevent has been removed from the -mm tree. Its filename was missing-null-termination-in-one-wire-uevent.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: missing null termination in one wire uevent From: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Need to null terminate environment. Found by inspection while looking for similar problems to platform uevent bug Signed-off-by: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Acked-by: Evgeniy Polyakov <johnpol@xxxxxxxxxxx> Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/w1/w1.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/w1/w1.c~missing-null-termination-in-one-wire-uevent drivers/w1/w1.c --- a/drivers/w1/w1.c~missing-null-termination-in-one-wire-uevent +++ a/drivers/w1/w1.c @@ -431,6 +431,7 @@ static int w1_uevent(struct device *dev, err = add_uevent_var(envp, num_envp, &cur_index, buffer, buffer_size, &cur_len, "W1_SLAVE_ID=%024LX", (unsigned long long)sl->reg_num.id); + envp[cur_index] = NULL; if (err) return err; _ Patches currently in -mm which might be from shemminger@xxxxxxxxxxxxxxxxxxxx are origin.patch fix-oops-in-platform-uevent.patch git-infiniband.patch git-input.patch git-net.patch pci-x-pci-express-read-control-interfaces-e1000.patch export-reciprocal_value-for-modules.patch sky2-avoid-divide-in-receive-path.patch skge-remove-broken-and-unused-phy_m_pc_mdi_xmode-macro.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