The patch titled fix OOPS in platform uevent has been added to the -mm tree. Its filename is fix-oops-in-platform-uevent.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fix OOPS in platform uevent From: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Environment wasn't being NULL terminated. Suggested by Kay Sievers Fixes: http://bugzilla.kernel.org/show_bug.cgi?id=9034 Signed-off-by: Stephen Hemminger <shemminger@xxxxxxxxxxxxxxxxxxxx> Cc: Kay Sievers <kay.sievers@xxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/base/platform.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/base/platform.c~fix-oops-in-platform-uevent drivers/base/platform.c --- a/drivers/base/platform.c~fix-oops-in-platform-uevent +++ a/drivers/base/platform.c @@ -546,6 +546,7 @@ static int platform_uevent(struct device struct platform_device *pdev = to_platform_device(dev); envp[0] = buffer; + envp[1] = NULL; snprintf(buffer, buffer_size, "MODALIAS=%s", pdev->name); return 0; } _ 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