From: Heiko Carstens Date: Thu, 11 Jun 2009 13:14:40 +0000 (+0200) Subject: partitions: fix broken uevent_suppress conversion X-Git-Tag: v2.6.31-rc3~3^2~7 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8c73c790c588fd70fda1632c8927a87b3d31dcd;p=pandora-kernel.git partitions: fix broken uevent_suppress conversion git commit f67f129e "Driver core: implement uevent suppress in kobject" contains this chunk for fs/partitions/check.c: /* suppress uevent if the disk supresses it */ - if (!ddev->uevent_suppress) + if (!dev_get_uevent_suppress(pdev)) kobject_uevent(&pdev->kobj, KOBJ_ADD); However that should have been - if (!ddev->uevent_suppress) + if (!dev_get_uevent_suppress(ddev)) Signed-off-by: Heiko Carstens Acked-by: Ming Lei Cc: stable Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed