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 <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
Cc: Kay Sievers <[EMAIL PROTECTED]>
Cc: Greg KH <[EMAIL PROTECTED]>
Cc: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html