0d71e75f73
26369-libxl-devid.patch - fate##313584: pass bios information to XEN HVM guest 26554-hvm-firmware-passthrough.patch 26555-hvm-firmware-passthrough.patch 26556-hvm-firmware-passthrough.patch - Upstream patches from Jan 26516-ACPI-parse-table-retval.patch (Replaces CVE-2013-0153-xsa36.patch) 26517-AMD-IOMMU-clear-irtes.patch (Replaces CVE-2013-0153-xsa36.patch) 26518-AMD-IOMMU-disable-if-SATA-combined-mode.patch (Replaces CVE-2013-0153-xsa36.patch) 26519-AMD-IOMMU-perdev-intremap-default.patch (Replaces CVE-2013-0153-xsa36.patch) 26526-pvdrv-no-devinit.patch 26529-gcc48-build-fix.patch 26531-AMD-IOMMU-IVHD-special-missing.patch (Replaces CVE-2013-0153-xsa36.patch) 26532-AMD-IOMMU-phantom-MSI.patch 26536-xenoprof-div-by-0.patch 26576-x86-APICV-migration.patch 26577-x86-APICV-x2APIC.patch 26578-AMD-IOMMU-replace-BUG_ON.patch - bnc#797014 - no way to control live migrations 26547-tools-xc_fix_logic_error_in_stdiostream_progress.patch 26548-tools-xc_handle_tty_output_differently_in_stdiostream_progress.patch 26549-tools-xc_turn_XCFLAGS_*_into_shifts.patch 26550-tools-xc_restore_logging_in_xc_save.patch 26551-tools-xc_log_pid_in_xc_save-xc_restore_output.patch - PVonHVM: __devinit was removed in linux-3.8 OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=229
38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
References: CVE-2013-0153 XSA-36 bnc#800275
|
|
|
|
# HG changeset patch
|
|
# User Boris Ostrovsky <boris.ostrovsky@amd.com>
|
|
# Date 1360073898 -3600
|
|
# Node ID 32d4516a97f0b22ed06155f7b8e0bff075024991
|
|
# Parent 2fdca30363f08026971c094e8a1a84e19ca3e55b
|
|
ACPI: acpi_table_parse() should return handler's error code
|
|
|
|
Currently, the error code returned by acpi_table_parse()'s handler
|
|
is ignored. This patch will propagate handler's return value to
|
|
acpi_table_parse()'s caller.
|
|
|
|
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@amd.com>
|
|
Committed-by: Jan Beulich <jbeulich@suse.com>
|
|
|
|
--- a/xen/drivers/acpi/tables.c
|
|
+++ b/xen/drivers/acpi/tables.c
|
|
@@ -267,7 +267,7 @@ acpi_table_parse_madt(enum acpi_madt_typ
|
|
* @handler: handler to run
|
|
*
|
|
* Scan the ACPI System Descriptor Table (STD) for a table matching @id,
|
|
- * run @handler on it. Return 0 if table found, return on if not.
|
|
+ * run @handler on it.
|
|
*/
|
|
int __init acpi_table_parse(char *id, acpi_table_handler handler)
|
|
{
|
|
@@ -282,8 +282,7 @@ int __init acpi_table_parse(char *id, ac
|
|
acpi_get_table(id, 0, &table);
|
|
|
|
if (table) {
|
|
- handler(table);
|
|
- return 0;
|
|
+ return handler(table);
|
|
} else
|
|
return 1;
|
|
}
|