The patch titled smbus unhiding kills thermal management has been added to the -mm tree. Its filename is smbus-unhiding-kills-thermal-management.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Pavel Machek <pavel@xxxxxxx> Do not enable the SMBus device on Asus boards if suspend is used. We do not reenable the device on resume, leading to all sorts of undesirable effects, the worst being a total fan failure after resume on Samsung P35 laptop. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@xxxxxxx> Signed-off-by: Pavel Machek <pavel@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pci/quirks.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletion(-) diff -puN drivers/pci/quirks.c~smbus-unhiding-kills-thermal-management drivers/pci/quirks.c --- devel/drivers/pci/quirks.c~smbus-unhiding-kills-thermal-management 2006-05-12 11:27:45.000000000 -0700 +++ devel-akpm/drivers/pci/quirks.c 2006-05-12 11:27:45.000000000 -0700 @@ -893,6 +893,7 @@ static void __init k8t_sound_hostbridge( } DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8237, k8t_sound_hostbridge); +#ifndef CONFIG_ACPI_SLEEP /* * On ASUS P4B boards, the SMBus PCI Device within the ICH2/4 southbridge * is not activated. The myth is that Asus said that they do not want the @@ -904,8 +905,12 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_V * bridge. Unfortunately, this device has no subvendor/subdevice ID. So it * becomes necessary to do this tweak in two steps -- I've chosen the Host * bridge as trigger. + * + * Actually, leaving it unhidden and not redoing the quirk over suspend2ram + * will cause thermal management to break down, and causing machine to + * overheat. */ -static int __initdata asus_hides_smbus = 0; +static int __initdata asus_hides_smbus; static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev) { @@ -1048,6 +1053,8 @@ static void __init asus_hides_smbus_lpc_ } DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, asus_hides_smbus_lpc_ich6 ); +#endif + /* * SiS 96x south bridge: BIOS typically hides SMBus device... */ _ Patches currently in -mm which might be from pavel@xxxxxxx are origin.patch smbus-unhiding-kills-thermal-management.patch git-gfs2.patch via-pmu-add-input-device.patch via-pmu-add-input-device-tidy.patch libata_resume_fix.patch swsusp-use-less-memory-during-resume.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