The patch titled fix OOPS in platform uevent has been removed from the -mm tree. Its filename was fix-oops-in-platform-uevent.patch This patch was dropped because it is obsolete ------------------------------------------------------ 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 git-net-fix-ax25-build.patch git-net-more-bustage.patch pci-x-pci-express-read-control-interfaces-e1000.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