All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors
@ 2018-06-25 10:17 Jan Beulich
  2018-08-15  6:24 ` Ping: " Jan Beulich
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2018-06-25 10:17 UTC (permalink / raw)
  To: Len Brown, Boris Ostrovsky, Rafael J. Wysocki, Juergen Gross
  Cc: xen-devel, linux-acpi

This is unnecessary and triggers a warning in the hypervisor.

Often systems have more processor entries in their ACPI tables than are
actually installed/active. The ACPI_STA_DEVICE_PRESENT bit cannot be
reliably used, but the ACPI_MADT_ENABLED bit can. In order to not
introduce new functions in the main ACPI processor driver code, simply
use acpi_get_phys_id(), which does more than we need, but which checks
the MADT enabled bit in the process. Any CPU for which we can't
determine the APIC ID is unlikely to work properly anyway, so the extra
checks done by acpi_get_phys_id() should do no harm.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
---
 drivers/acpi/processor_core.c    |    1 +
 drivers/xen/xen-acpi-processor.c |    6 ++++++
 2 files changed, 7 insertions(+)

--- 4.18-rc2/drivers/acpi/processor_core.c
+++ 4.18-rc2-xen-ACPI-processor-skip-disabled/drivers/acpi/processor_core.c
@@ -205,6 +205,7 @@ phys_cpuid_t acpi_get_phys_id(acpi_handl
 
 	return phys_id;
 }
+EXPORT_SYMBOL_GPL(acpi_get_phys_id);
 
 int acpi_map_cpuid(phys_cpuid_t phys_id, u32 acpi_id)
 {
--- 4.18-rc2/drivers/xen/xen-acpi-processor.c
+++ 4.18-rc2-xen-ACPI-processor-skip-disabled/drivers/xen/xen-acpi-processor.c
@@ -362,6 +362,12 @@ read_acpi_id(acpi_handle handle, u32 lvl
 	default:
 		return AE_OK;
 	}
+	if (invalid_phys_cpuid(acpi_get_phys_id(handle,
+						acpi_type == ACPI_TYPE_DEVICE,
+						acpi_id))) {
+		pr_debug("CPU with ACPI ID %u is unavailable\n", acpi_id);
+		return AE_OK;
+	}
 	/* There are more ACPI Processor objects than in x2APIC or MADT.
 	 * This can happen with incorrect ACPI SSDT declerations. */
 	if (acpi_id >= nr_acpi_bits) {





_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Ping: [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors
  2018-06-25 10:17 [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors Jan Beulich
@ 2018-08-15  6:24 ` Jan Beulich
  2018-08-15  7:55   ` Rafael J. Wysocki
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2018-08-15  6:24 UTC (permalink / raw)
  To: Len Brown, rjw; +Cc: Juergen Gross, xen-devel, Boris Ostrovsky, linux-acpi

>>> On 25.06.18 at 12:17,  wrote:
> This is unnecessary and triggers a warning in the hypervisor.
> 
> Often systems have more processor entries in their ACPI tables than are
> actually installed/active. The ACPI_STA_DEVICE_PRESENT bit cannot be
> reliably used, but the ACPI_MADT_ENABLED bit can. In order to not
> introduce new functions in the main ACPI processor driver code, simply
> use acpi_get_phys_id(), which does more than we need, but which checks
> the MADT enabled bit in the process. Any CPU for which we can't
> determine the APIC ID is unlikely to work properly anyway, so the extra
> checks done by acpi_get_phys_id() should do no harm.
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> ---
>  drivers/acpi/processor_core.c    |    1 +
>  drivers/xen/xen-acpi-processor.c |    6 ++++++
>  2 files changed, 7 insertions(+)

With Jürgen's R-b in place, may I ask for an ack for the processor_core.c
change, or - in case you dislike the new export - an alternative suggestion?

Thanks, Jan

> --- 4.18-rc2/drivers/acpi/processor_core.c
> +++ 4.18-rc2-xen-ACPI-processor-skip-disabled/drivers/acpi/processor_core.c
> @@ -205,6 +205,7 @@ phys_cpuid_t acpi_get_phys_id(acpi_handl
>  
>  	return phys_id;
>  }
> +EXPORT_SYMBOL_GPL(acpi_get_phys_id);
>  
>  int acpi_map_cpuid(phys_cpuid_t phys_id, u32 acpi_id)
>  {
> --- 4.18-rc2/drivers/xen/xen-acpi-processor.c
> +++ 
> 4.18-rc2-xen-ACPI-processor-skip-disabled/drivers/xen/xen-acpi-processor.c
> @@ -362,6 +362,12 @@ read_acpi_id(acpi_handle handle, u32 lvl
>  	default:
>  		return AE_OK;
>  	}
> +	if (invalid_phys_cpuid(acpi_get_phys_id(handle,
> +						acpi_type == ACPI_TYPE_DEVICE,
> +						acpi_id))) {
> +		pr_debug("CPU with ACPI ID %u is unavailable\n", acpi_id);
> +		return AE_OK;
> +	}
>  	/* There are more ACPI Processor objects than in x2APIC or MADT.
>  	 * This can happen with incorrect ACPI SSDT declerations. */
>  	if (acpi_id >= nr_acpi_bits) {
> 
> 
> 
> 




_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Ping: [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors
  2018-08-15  6:24 ` Ping: " Jan Beulich
@ 2018-08-15  7:55   ` Rafael J. Wysocki
  2018-08-15 21:41     ` Boris Ostrovsky
  0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2018-08-15  7:55 UTC (permalink / raw)
  To: JBeulich
  Cc: Juergen Gross, Rafael J. Wysocki, ACPI Devel Maling List,
	xen-devel, Boris Ostrovsky, Len Brown

On Wed, Aug 15, 2018 at 8:44 AM Jan Beulich <JBeulich@suse.com> wrote:
>
> >>> On 25.06.18 at 12:17,  wrote:
> > This is unnecessary and triggers a warning in the hypervisor.
> >
> > Often systems have more processor entries in their ACPI tables than are
> > actually installed/active. The ACPI_STA_DEVICE_PRESENT bit cannot be
> > reliably used, but the ACPI_MADT_ENABLED bit can. In order to not
> > introduce new functions in the main ACPI processor driver code, simply
> > use acpi_get_phys_id(), which does more than we need, but which checks
> > the MADT enabled bit in the process. Any CPU for which we can't
> > determine the APIC ID is unlikely to work properly anyway, so the extra
> > checks done by acpi_get_phys_id() should do no harm.
> >
> > Signed-off-by: Jan Beulich <jbeulich@suse.com>
> > ---
> >  drivers/acpi/processor_core.c    |    1 +
> >  drivers/xen/xen-acpi-processor.c |    6 ++++++
> >  2 files changed, 7 insertions(+)
>
> With Jürgen's R-b in place, may I ask for an ack for the processor_core.c
> change, or - in case you dislike the new export - an alternative suggestion?

It is fine to export it IMO.  If you need my ACK for that, please feel
free to add it to the patch.

Thanks,
Rafael

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Ping: [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors
  2018-08-15  7:55   ` Rafael J. Wysocki
@ 2018-08-15 21:41     ` Boris Ostrovsky
  0 siblings, 0 replies; 4+ messages in thread
From: Boris Ostrovsky @ 2018-08-15 21:41 UTC (permalink / raw)
  To: Rafael J. Wysocki, JBeulich
  Cc: Juergen Gross, xen-devel, Rafael J. Wysocki,
	ACPI Devel Maling List, Len Brown

On 08/15/2018 03:55 AM, Rafael J. Wysocki wrote:
> On Wed, Aug 15, 2018 at 8:44 AM Jan Beulich <JBeulich@suse.com> wrote:
>>>>> On 25.06.18 at 12:17,  wrote:
>>> This is unnecessary and triggers a warning in the hypervisor.
>>>
>>> Often systems have more processor entries in their ACPI tables than are
>>> actually installed/active. The ACPI_STA_DEVICE_PRESENT bit cannot be
>>> reliably used, but the ACPI_MADT_ENABLED bit can. In order to not
>>> introduce new functions in the main ACPI processor driver code, simply
>>> use acpi_get_phys_id(), which does more than we need, but which checks
>>> the MADT enabled bit in the process. Any CPU for which we can't
>>> determine the APIC ID is unlikely to work properly anyway, so the extra
>>> checks done by acpi_get_phys_id() should do no harm.
>>>
>>> Signed-off-by: Jan Beulich <jbeulich@suse.com>
>>> ---
>>>  drivers/acpi/processor_core.c    |    1 +
>>>  drivers/xen/xen-acpi-processor.c |    6 ++++++
>>>  2 files changed, 7 insertions(+)
>> With Jürgen's R-b in place, may I ask for an ack for the processor_core.c
>> change, or - in case you dislike the new export - an alternative suggestion?
> It is fine to export it IMO.  If you need my ACK for that, please feel
> free to add it to the patch.


Applied to for-linus-4.19.

-boris

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-08-15 21:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-25 10:17 [PATCH] xen/ACPI: don't upload Px/Cx data for disabled processors Jan Beulich
2018-08-15  6:24 ` Ping: " Jan Beulich
2018-08-15  7:55   ` Rafael J. Wysocki
2018-08-15 21:41     ` Boris Ostrovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.