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
37 lines
1.1 KiB
Diff
37 lines
1.1 KiB
Diff
changeset: 26549:d2991367ecd2
|
|
user: Olaf Hering <olaf@aepfle.de>
|
|
date: Fri Feb 15 13:32:12 2013 +0000
|
|
files: tools/libxc/xenguest.h
|
|
description:
|
|
tools/xc: turn XCFLAGS_* into shifts
|
|
|
|
to make it clear that these are bits and to make it easier to use in
|
|
xend code.
|
|
|
|
Signed-off-by: Olaf Hering <olaf@aepfle.de>
|
|
Acked-by: Ian Campbell <ian.campbell@citrix.com>
|
|
Committed-by: Ian Campbell <ian.campbell@citrix.com>
|
|
|
|
|
|
diff -r e7d9bac5c11d -r d2991367ecd2 tools/libxc/xenguest.h
|
|
--- a/tools/libxc/xenguest.h Fri Feb 15 13:32:11 2013 +0000
|
|
+++ b/tools/libxc/xenguest.h Fri Feb 15 13:32:12 2013 +0000
|
|
@@ -23,11 +23,12 @@
|
|
#ifndef XENGUEST_H
|
|
#define XENGUEST_H
|
|
|
|
-#define XCFLAGS_LIVE 1
|
|
-#define XCFLAGS_DEBUG 2
|
|
-#define XCFLAGS_HVM 4
|
|
-#define XCFLAGS_STDVGA 8
|
|
-#define XCFLAGS_CHECKPOINT_COMPRESS 16
|
|
+#define XCFLAGS_LIVE (1 << 0)
|
|
+#define XCFLAGS_DEBUG (1 << 1)
|
|
+#define XCFLAGS_HVM (1 << 2)
|
|
+#define XCFLAGS_STDVGA (1 << 3)
|
|
+#define XCFLAGS_CHECKPOINT_COMPRESS (1 << 4)
|
|
+
|
|
#define X86_64_B_SIZE 64
|
|
#define X86_32_B_SIZE 32
|
|
|