From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 01222C433ED for ; Tue, 6 Apr 2021 12:50:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BB064613C6 for ; Tue, 6 Apr 2021 12:50:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243337AbhDFMvE (ORCPT ); Tue, 6 Apr 2021 08:51:04 -0400 Received: from us-smtp-delivery-124.mimecast.com ([216.205.24.124]:25707 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232927AbhDFMvD (ORCPT ); Tue, 6 Apr 2021 08:51:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1617713454; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=LqmvLDyPcw5HvzsN9d3OA/0ZQ4y65craa/qJjjsW6V4=; b=elZFzJrCjWDenxWshqbObmUy+MawQv/Jtz+NQfUbkeb/p09+3Sm/jPwshz5a6Y3Eu4IQ+b gO83wm8JT4Ps87HUWNvwXzMCoTZZp2VhOj2nm5CdjuT3hSQ4I52KE0jvzphaUcD7JGc32/ ZFog/ILCp2zoKNk6Es6eiIw84zHDPDQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-429-LOHyKUCXMviH3Vb_XtLnIg-1; Tue, 06 Apr 2021 08:50:53 -0400 X-MC-Unique: LOHyKUCXMviH3Vb_XtLnIg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 6DDB5800D53; Tue, 6 Apr 2021 12:50:51 +0000 (UTC) Received: from vitty.brq.redhat.com (unknown [10.40.194.34]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8478860C4A; Tue, 6 Apr 2021 12:50:48 +0000 (UTC) From: Vitaly Kuznetsov To: linux-acpi@vger.kernel.org, "Rafael J. Wysocki" Cc: x86@kernel.org, Len Brown , Thomas Gleixner , Ingo Molnar , Borislav Petkov , "H. Peter Anvin" , stable@vger.kernel.org, kernel test robot , linux-kernel@vger.kernel.org Subject: [PATCH] ACPI: processor: Fix build when CONFIG_ACPI_PROCESSOR=m Date: Tue, 6 Apr 2021 14:50:47 +0200 Message-Id: <20210406125047.547501-1-vkuznets@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 8cdddd182bd7 ("ACPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead()") tried to fix CPU0 hotplug breakage by copying wakeup_cpu0() + start_cpu0() logic from hlt_play_dead()//mwait_play_dead() into acpi_idle_play_dead(). The problem is that these functions are not exported to modules so when CONFIG_ACPI_PROCESSOR=m build fails. The issue could've been fixed by exporting both wakeup_cpu0()/start_cpu0() (the later from assembly) but it seems putting the whole pattern into a new function and exporting it instead is better. Reported-by: kernel test robot Fixes: 8cdddd182bd7 ("CPI: processor: Fix CPU0 wakeup in acpi_idle_play_dead()") Cc: # 5.10+ Signed-off-by: Vitaly Kuznetsov --- arch/x86/include/asm/smp.h | 2 +- arch/x86/kernel/smpboot.c | 15 ++++++++++----- drivers/acpi/processor_idle.c | 3 +-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 57ef2094af93..6f79deb1f970 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h @@ -132,7 +132,7 @@ void native_play_dead(void); void play_dead_common(void); void wbinvd_on_cpu(int cpu); int wbinvd_on_all_cpus(void); -bool wakeup_cpu0(void); +void wakeup_cpu0_if_needed(void); void native_smp_send_reschedule(int cpu); void native_send_call_func_ipi(const struct cpumask *mask); diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index f877150a91da..9547d870ee27 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -1659,7 +1659,7 @@ void play_dead_common(void) local_irq_disable(); } -bool wakeup_cpu0(void) +static bool wakeup_cpu0(void) { if (smp_processor_id() == 0 && enable_start_cpu0) return true; @@ -1667,6 +1667,13 @@ bool wakeup_cpu0(void) return false; } +void wakeup_cpu0_if_needed(void) +{ + if (wakeup_cpu0()) + start_cpu0(); +} +EXPORT_SYMBOL_GPL(wakeup_cpu0_if_needed); + /* * We need to flush the caches before going to sleep, lest we have * dirty data in our caches when we come back up. @@ -1737,8 +1744,7 @@ static inline void mwait_play_dead(void) /* * If NMI wants to wake up CPU0, start CPU0. */ - if (wakeup_cpu0()) - start_cpu0(); + wakeup_cpu0_if_needed(); } } @@ -1752,8 +1758,7 @@ void hlt_play_dead(void) /* * If NMI wants to wake up CPU0, start CPU0. */ - if (wakeup_cpu0()) - start_cpu0(); + wakeup_cpu0_if_needed(); } } diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 768a6b4d2368..de15116b754a 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c @@ -545,8 +545,7 @@ static int acpi_idle_play_dead(struct cpuidle_device *dev, int index) #if defined(CONFIG_X86) && defined(CONFIG_HOTPLUG_CPU) /* If NMI wants to wake up CPU0, start CPU0. */ - if (wakeup_cpu0()) - start_cpu0(); + wakeup_cpu0_if_needed(); #endif } -- 2.30.2