The patch titled acpi: temp fix for proximity domain has been added to the -mm tree. Its filename is acpi-temp_fix_for_proximity_domain.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: acpi: temp fix for proximity domain From: Alexey Starikovskiy <alexey.y.starikovskiy@xxxxxxxxxxxxxxx> Proximity domain just became u32 what makes HP to break... Mask the extended range for now. Cc: Bob Picco <bob.picco@xxxxxx> CC: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/ia64/kernel/acpi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/ia64/kernel/acpi.c~acpi-temp_fix_for_proximity_domain arch/ia64/kernel/acpi.c --- a/arch/ia64/kernel/acpi.c~acpi-temp_fix_for_proximity_domain +++ a/arch/ia64/kernel/acpi.c @@ -422,8 +422,8 @@ static int get_memory_proximity_domain(s int pxm; pxm = ma->proximity_domain; - if (ia64_platform_is("sn2")) - pxm += ma->reserved << 8; + if (!ia64_platform_is("sn2")) + pxm &= 0xff; return pxm; } _ Patches currently in -mm which might be from alexey.y.starikovskiy@xxxxxxxxxxxxxxx are git-acpi.patch acpi-fix-tbfadt.patch acpi-temp_fix_for_proximity_domain.patch swsusp-change-code-order-in-diskc-fix.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