Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754192AbbHEUPn (ORCPT ); Wed, 5 Aug 2015 16:15:43 -0400 Received: from terminus.zytor.com ([198.137.202.10]:50894 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751890AbbHEUPk (ORCPT ); Wed, 5 Aug 2015 16:15:40 -0400 Date: Wed, 5 Aug 2015 13:14:53 -0700 From: tip-bot for Borislav Petkov Message-ID: Cc: peterz@infradead.org, sudeep.holla@arm.com, bp@suse.de, andre.przywara@arm.com, mingo@kernel.org, philm@manjaro.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, torvalds@linux-foundation.org, linux@roeck-us.net, hpa@zytor.com Reply-To: hpa@zytor.com, linux@roeck-us.net, torvalds@linux-foundation.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, philm@manjaro.org, mingo@kernel.org, andre.przywara@arm.com, bp@suse.de, sudeep.holla@arm.com, peterz@infradead.org In-Reply-To: <20150727075805.GA20416@nazgul.tnic> References: <20150727075805.GA20416@nazgul.tnic> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/cpu/cacheinfo: Fix teardown path Git-Commit-ID: 680ac028240f8747f31c03986fbcf18b2b521e93 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3262 Lines: 89 Commit-ID: 680ac028240f8747f31c03986fbcf18b2b521e93 Gitweb: http://git.kernel.org/tip/680ac028240f8747f31c03986fbcf18b2b521e93 Author: Borislav Petkov AuthorDate: Mon, 27 Jul 2015 09:58:05 +0200 Committer: Ingo Molnar CommitDate: Wed, 5 Aug 2015 10:08:17 +0200 x86/cpu/cacheinfo: Fix teardown path Philip Müller reported a hang when booting 32-bit 4.1 kernel on an AMD box. A fragment of the splat was enough to pinpoint the issue: task: f58e0000 ti: f58e8000 task.ti: f58e800 EIP: 0060:[] EFLAGS: 00010206 CPU: 0 EIP is at free_cache_attributes+0x83/0xd0 EAX: 00000001 EBX: f589d46c ECX: 00000090 EDX: 360c2000 ESI: 00000000 EDI: c1724a80 EBP: f58e9ec0 ESP: f58e9ea0 DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068 CR0: 8005003b CR2: 000000ac CR3: 01731000 CR4: 000006d0 cache_shared_cpu_map_setup() did check sibling CPUs cacheinfo descriptor while the respective teardown path cache_shared_cpu_map_remove() didn't. Fix that. >From tglx's version: to be on the safe side, move the cacheinfo descriptor check to free_cache_attributes(), thus cleaning up the hotplug path a little and making this even more robust. Reported-by: Philip Müller Signed-off-by: Borislav Petkov Cc: # v4.1+ Cc: Andre Przywara Cc: Guenter Roeck Cc: H. Peter Anvin Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Sudeep Holla Cc: Thomas Gleixner Cc: linux-kernel@vger.kernel.org Cc: manjaro-dev@manjaro.org Link: http://lkml.kernel.org/r/20150727075805.GA20416@nazgul.tnic Link: https://lkml.kernel.org/r/55B47BB8.6080202@manjaro.org Signed-off-by: Ingo Molnar --- drivers/base/cacheinfo.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/base/cacheinfo.c b/drivers/base/cacheinfo.c index 764280a..e9fd32e 100644 --- a/drivers/base/cacheinfo.c +++ b/drivers/base/cacheinfo.c @@ -148,7 +148,11 @@ static void cache_shared_cpu_map_remove(unsigned int cpu) if (sibling == cpu) /* skip itself */ continue; + sib_cpu_ci = get_cpu_cacheinfo(sibling); + if (!sib_cpu_ci->info_list) + continue; + sib_leaf = sib_cpu_ci->info_list + index; cpumask_clear_cpu(cpu, &sib_leaf->shared_cpu_map); cpumask_clear_cpu(sibling, &this_leaf->shared_cpu_map); @@ -159,6 +163,9 @@ static void cache_shared_cpu_map_remove(unsigned int cpu) static void free_cache_attributes(unsigned int cpu) { + if (!per_cpu_cacheinfo(cpu)) + return; + cache_shared_cpu_map_remove(cpu); kfree(per_cpu_cacheinfo(cpu)); @@ -514,8 +521,7 @@ static int cacheinfo_cpu_callback(struct notifier_block *nfb, break; case CPU_DEAD: cache_remove_dev(cpu); - if (per_cpu_cacheinfo(cpu)) - free_cache_attributes(cpu); + free_cache_attributes(cpu); break; } return notifier_from_errno(rc); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/