508747f303
xen-4.20.0-testing-src.tar.bz2 - New Features * On Arm: - Experimental support for Armv8-R. - Support for NXP S32G3 Processors Family and NXP LINFlexD UART driver. - Basic handling for SCMI requests over SMC using Shared Memory, by allowing forwarding the calls to EL3 FW if coming from hwdom. - Support for LLC (Last Level Cache) coloring. * On x86: - xl suspend/resume subcommands. - Changed Features * Fixed blkif protocol specification for sector sizes different than 512b. * The dombuilder in libxenguest no longer un-gzips secondary modules, instead leaving this to the guest kernel to do in guest context. * On x86: - Prefer ACPI reboot over UEFI ResetSystem() run time service call. - Switched the xAPIC flat driver to use physical destination mode for external interrupts instead of logical destination mode. - Removed Features * On x86: - Support for running on Xeon Phi processors. - Removed the `ucode=allow-same` command line option. - Removed x2APIC Cluster Mode for external interrupts. x2APIC Physical and Mixed Modes are still available. - Dropped patches xsa466.patch - Move /etc/bash_completion.d/xl back to %_datadir/bash-completion/completions OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=863
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
Index: xen-4.18.0-testing/tools/libacpi/ssdt_s3.asl
|
|
===================================================================
|
|
--- xen-4.18.0-testing.orig/tools/libacpi/ssdt_s3.asl
|
|
+++ xen-4.18.0-testing/tools/libacpi/ssdt_s3.asl
|
|
@@ -7,13 +7,9 @@
|
|
|
|
DefinitionBlock ("SSDT_S3.aml", "SSDT", 2, "Xen", "HVM", 0)
|
|
{
|
|
- /* Must match piix emulation */
|
|
- Name (\_S3, Package (0x04)
|
|
- {
|
|
- 0x01, /* PM1a_CNT.SLP_TYP */
|
|
- 0x01, /* PM1b_CNT.SLP_TYP */
|
|
- 0x0, /* reserved */
|
|
- 0x0 /* reserved */
|
|
- })
|
|
+ /*
|
|
+ * Turn off support for s3 sleep state to deal with SVVP tests.
|
|
+ * This is what MSFT does on HyperV.
|
|
+ */
|
|
}
|
|
|
|
Index: xen-4.18.0-testing/tools/libacpi/ssdt_s4.asl
|
|
===================================================================
|
|
--- xen-4.18.0-testing.orig/tools/libacpi/ssdt_s4.asl
|
|
+++ xen-4.18.0-testing/tools/libacpi/ssdt_s4.asl
|
|
@@ -7,13 +7,9 @@
|
|
|
|
DefinitionBlock ("SSDT_S4.aml", "SSDT", 2, "Xen", "HVM", 0)
|
|
{
|
|
- /* Must match piix emulation */
|
|
- Name (\_S4, Package (0x04)
|
|
- {
|
|
- 0x00, /* PM1a_CNT.SLP_TYP */
|
|
- 0x00, /* PM1b_CNT.SLP_TYP */
|
|
- 0x00, /* reserved */
|
|
- 0x00 /* reserved */
|
|
- })
|
|
+ /*
|
|
+ * Turn off support for s4 sleep state to deal with SVVP tests.
|
|
+ * This is what MSFT does on HyperV.
|
|
+ */
|
|
}
|
|
|