From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751865Ab2KFMsr (ORCPT ); Tue, 6 Nov 2012 07:48:47 -0500 Received: from cn.fujitsu.com ([222.73.24.84]:57734 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751132Ab2KFMsp (ORCPT ); Tue, 6 Nov 2012 07:48:45 -0500 X-IronPort-AV: E=Sophos;i="4.80,722,1344182400"; d="scan'208";a="6148164" Message-ID: <5098F1C6.1010602@cn.fujitsu.com> Date: Tue, 06 Nov 2012 19:17:26 +0800 From: Tang Chen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: tony.luck@intel.com, bp@amd64.org, tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com, miaox@cn.fujitsu.com, laijs@cn.fujitsu.com, wency@cn.fujitsu.com, x86@kernel.org, linux-edac@vger.kernel.org, linux-kernel@vger.kernel.org, bp@alien8.de Subject: Re: [PATCH v3] Do not change worker's running cpu in cmci_rediscover(). References: <1351479710-9144-1-git-send-email-tangchen@cn.fujitsu.com> In-Reply-To: <1351479710-9144-1-git-send-email-tangchen@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/11/06 19:17:41, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/11/06 19:17:51, Serialize complete at 2012/11/06 19:17:51 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-8859-1; format=flowed Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Tony, Borislav, Would you please help to review this patch ? Thanks. ;) On 10/29/2012 11:01 AM, Tang Chen wrote: > cmci_rediscover() used set_cpus_allowed_ptr() to change the current process's > running cpu, and migrate itself to the dest cpu. But worker processes are not > allowed to be migrated. If current is a worker, the worker will be migrated to > another cpu, but the corresponding worker_pool is still on the original cpu. > > In this case, the following BUG_ON in try_to_wake_up_local() will be triggered: > BUG_ON(rq != this_rq()); > > This will cause the kernel panic. The call trace is like the following: > > [ 6155.451107] ------------[ cut here ]------------ > [ 6155.452019] kernel BUG at kernel/sched/core.c:1654! > ...... > [ 6155.452019] RIP: 0010:[] [] try_to_wake_up_local+0x115/0x130 > ...... > [ 6155.452019] Call Trace: > [ 6155.452019] [] __schedule+0x764/0x880 > [ 6155.452019] [] schedule+0x29/0x70 > [ 6155.452019] [] schedule_timeout+0x235/0x2d0 > [ 6155.452019] [] ? mark_held_locks+0x8d/0x140 > [ 6155.452019] [] ? __lock_release+0x133/0x1a0 > [ 6155.452019] [] ? _raw_spin_unlock_irq+0x30/0x50 > [ 6155.452019] [] ? trace_hardirqs_on_caller+0x105/0x190 > [ 6155.452019] [] wait_for_common+0x12b/0x180 > [ 6155.452019] [] ? try_to_wake_up+0x2f0/0x2f0 > [ 6155.452019] [] wait_for_completion+0x1d/0x20 > [ 6155.452019] [] stop_one_cpu+0x8a/0xc0 > [ 6155.452019] [] ? __migrate_task+0x1a0/0x1a0 > [ 6155.452019] [] ? complete+0x28/0x60 > [ 6155.452019] [] set_cpus_allowed_ptr+0x128/0x130 > [ 6155.452019] [] cmci_rediscover+0xf5/0x140 > [ 6155.452019] [] mce_cpu_callback+0x18d/0x19d > [ 6155.452019] [] notifier_call_chain+0x67/0x150 > [ 6155.452019] [] __raw_notifier_call_chain+0xe/0x10 > [ 6155.452019] [] __cpu_notify+0x20/0x40 > [ 6155.452019] [] cpu_notify_nofail+0x15/0x30 > [ 6155.452019] [] _cpu_down+0x262/0x2e0 > [ 6155.452019] [] cpu_down+0x36/0x50 > [ 6155.452019] [] acpi_processor_remove+0x50/0x11e > [ 6155.452019] [] acpi_device_remove+0x90/0xb2 > [ 6155.452019] [] __device_release_driver+0x7c/0xf0 > [ 6155.452019] [] device_release_driver+0x2f/0x50 > [ 6155.452019] [] acpi_bus_remove+0x32/0x6d > [ 6155.452019] [] acpi_bus_trim+0x87/0xee > [ 6155.452019] [] acpi_bus_hot_remove_device+0x88/0x16b > [ 6155.452019] [] acpi_os_execute_deferred+0x27/0x34 > [ 6155.452019] [] process_one_work+0x219/0x680 > [ 6155.452019] [] ? process_one_work+0x1b8/0x680 > [ 6155.452019] [] ? acpi_os_wait_events_complete+0x23/0x23 > [ 6155.452019] [] worker_thread+0x12e/0x320 > [ 6155.452019] [] ? manage_workers+0x110/0x110 > [ 6155.452019] [] kthread+0xc6/0xd0 > [ 6155.452019] [] kernel_thread_helper+0x4/0x10 > [ 6155.452019] [] ? retint_restore_args+0x13/0x13 > [ 6155.452019] [] ? __init_kthread_worker+0x70/0x70 > [ 6155.452019] [] ? gs_change+0x13/0x13 > > This patch removes the set_cpus_allowed_ptr() call, and put the cmci rediscover > jobs onto all the other cpus using system_wq. This could bring some delay for > the jobs. > > Change log v1 -> v2: > 1) removed patch1, when an online cpu == dying, just continue; > 2) rebased on the lastest kernel. > > Signed-off-by: Tang Chen > Signed-off-by: Miao Xie > --- > arch/x86/kernel/cpu/mcheck/mce_intel.c | 31 ++++++++++++++++++------------- > 1 file changed, 18 insertions(+), 13 deletions(-) > > diff --git a/arch/x86/kernel/cpu/mcheck/mce_intel.c b/arch/x86/kernel/cpu/mcheck/mce_intel.c > index 5f88abf..4f9a3cb 100644 > --- a/arch/x86/kernel/cpu/mcheck/mce_intel.c > +++ b/arch/x86/kernel/cpu/mcheck/mce_intel.c > @@ -285,34 +285,39 @@ void cmci_clear(void) > raw_spin_unlock_irqrestore(&cmci_discover_lock, flags); > } > > +static long cmci_rediscover_work_func(void *arg) > +{ > + int banks; > + > + /* Recheck banks in case CPUs don't all have the same */ > + if (cmci_supported(&banks)) > + cmci_discover(banks); > + > + return 0; > +} > + > /* > * After a CPU went down cycle through all the others and rediscover > * Must run in process context. > */ > void cmci_rediscover(int dying) > { > - int banks; > - int cpu; > - cpumask_var_t old; > + int cpu, banks; > > if (!cmci_supported(&banks)) > return; > - if (!alloc_cpumask_var(&old, GFP_KERNEL)) > - return; > - cpumask_copy(old,¤t->cpus_allowed); > > for_each_online_cpu(cpu) { > if (cpu == dying) > continue; > - if (set_cpus_allowed_ptr(current, cpumask_of(cpu))) > + > + if (cpu == smp_processor_id()) { > + cmci_rediscover_work_func(NULL); > continue; > - /* Recheck banks in case CPUs don't all have the same */ > - if (cmci_supported(&banks)) > - cmci_discover(banks); > - } > + } > > - set_cpus_allowed_ptr(current, old); > - free_cpumask_var(old); > + work_on_cpu(cpu, cmci_rediscover_work_func, NULL); > + } > } > > /*