From: Jan Beulich <jbeulich@suse.com>
To: Josef Johansson <josef@oderland.se>
Cc: xen-devel@lists.xenproject.org, x86@kernel.org,
linux-acpi@vger.kernel.org,
Roger Pau Monne <roger.pau@citrix.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/3] acpi/processor: fix evaluating _PDC method when running as Xen dom0
Date: Fri, 3 Feb 2023 08:05:04 +0100 [thread overview]
Message-ID: <513e2851-9098-b510-588e-1e68d44d23fc@suse.com> (raw)
In-Reply-To: <952fdc14-a8e5-a59a-9c7d-af1adf361d77@oderland.se>
On 30.01.2023 10:21, Josef Johansson wrote:
> On 11/21/22 11:21, Roger Pau Monne wrote:
>> --- a/arch/x86/xen/enlighten.c
>> +++ b/arch/x86/xen/enlighten.c
>> @@ -346,3 +346,30 @@ void xen_arch_unregister_cpu(int num)
>> }
>> EXPORT_SYMBOL(xen_arch_unregister_cpu);
>> #endif
>> +
>> +#ifdef CONFIG_XEN_DOM0
>> +bool __init xen_processor_present(uint32_t acpi_id)
>> +{
>> + unsigned int i, maxid;
>> + struct xen_platform_op op = {
>> + .cmd = XENPF_get_cpuinfo,
>> + .interface_version = XENPF_INTERFACE_VERSION,
>> + };
>> + int ret = HYPERVISOR_platform_op(&op);
>> +
>> + if (ret)
>> + return false;
>> +
>> + maxid = op.u.pcpu_info.max_present;
>> + for (i = 0; i <= maxid; i++) {
>> + op.u.pcpu_info.xen_cpuid = i;
>> + ret = HYPERVISOR_platform_op(&op);
>> + if (ret)
>> + continue;
>> + if (op.u.pcpu_info.acpi_id == acpi_id)
>> + return op.u.pcpu_info.flags & XEN_PCPU_FLAGS_ONLINE;
>> + }
>> +
>> + return false;
>> +}
> My compiler (Default GCC on Fedora 32, compiling for Qubes) complain
> loudly that the below was missing.
>
> +}
> +EXPORT_SYMBOL(xen_processor_present);
>
> `ERROR: MODPOST xen_processor_present
> [drivers/xen/xen-acpi-processor.ko] undefined!`
>
> Same thing with xen_sanitize_pdc in the next patch.
>
> +}
> +EXPORT_SYMBOL(xen_sanitize_pdc);
>
> Everything compiled fine after those changes.
Except that you may not export __init symbols. The section mismatch checker
should actually complain about that.
Jan
next prev parent reply other threads:[~2023-02-03 7:05 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-21 10:21 [PATCH 0/3] xen: ACPI processor related fixes Roger Pau Monne
2022-11-21 10:21 ` [PATCH 1/3] acpi/processor: fix evaluating _PDC method when running as Xen dom0 Roger Pau Monne
2022-11-21 14:02 ` Jan Beulich
2022-11-21 14:29 ` Roger Pau Monné
2022-11-21 14:51 ` Jan Beulich
2022-11-21 15:09 ` Roger Pau Monné
2022-11-29 16:01 ` Roger Pau Monné
2022-11-29 17:43 ` Dave Hansen
2022-11-30 15:53 ` Roger Pau Monné
2022-11-30 16:48 ` Dave Hansen
2022-12-02 12:24 ` Roger Pau Monné
2022-12-02 16:17 ` Dave Hansen
2022-12-02 16:37 ` Roger Pau Monné
2022-12-02 17:06 ` Rafael J. Wysocki
2022-12-09 10:12 ` Roger Pau Monné
2023-01-30 9:21 ` Josef Johansson
2023-02-03 7:05 ` Jan Beulich [this message]
2023-02-03 13:58 ` Josef Johansson
2022-11-21 10:21 ` [PATCH 2/3] acpi/processor: sanitize _PDC buffer bits " Roger Pau Monne
2022-11-21 14:10 ` Jan Beulich
2022-11-21 14:13 ` Jan Beulich
2022-11-21 15:03 ` Roger Pau Monné
2023-06-14 19:57 ` Jason Andryuk
2023-06-16 14:39 ` Roger Pau Monné
2022-11-21 10:21 ` [PATCH 3/3] xen/acpi: upload power and performance related data from a PVH dom0 Roger Pau Monne
2023-01-30 9:10 ` Josef Johansson
2023-03-15 11:39 ` Roger Pau Monné
2023-03-16 7:54 ` Josef Johansson
2023-03-16 10:06 ` Roger Pau Monné
2022-11-21 14:20 ` [PATCH 0/3] xen: ACPI processor related fixes Jan Beulich
2022-11-21 16:27 ` Roger Pau Monné
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=513e2851-9098-b510-588e-1e68d44d23fc@suse.com \
--to=jbeulich@suse.com \
--cc=josef@oderland.se \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=roger.pau@citrix.com \
--cc=x86@kernel.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox