Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xen for openSUSE:Factory checked in at 2022-03-05 14:43:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xen (Old) and /work/SRC/openSUSE:Factory/.xen.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xen" Sat Mar 5 14:43:58 2022 rev:313 rq:959301 version:4.16.0_06 Changes: -------- --- /work/SRC/openSUSE:Factory/xen/xen.changes 2022-02-22 21:18:18.214287469 +0100 +++ /work/SRC/openSUSE:Factory/.xen.new.1958/xen.changes 2022-03-05 14:44:42.331720428 +0100 @@ -1,0 +2,6 @@ +Thu Mar 3 14:42:07 MST 2022 - carn...@suse.com + +- bsc#1196545 - GCC 12: xen package fails + gcc12-fixes.patch + +------------------------------------------------------------------- New: ---- gcc12-fixes.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xen.spec ++++++ --- /var/tmp/diff_new_pack.69cyPx/_old 2022-03-05 14:44:44.175720892 +0100 +++ /var/tmp/diff_new_pack.69cyPx/_new 2022-03-05 14:44:44.183720895 +0100 @@ -262,6 +262,7 @@ Patch621: xen.build-compare.doc_html.patch # Build patches Patch99996: xen.stubdom.newlib.patch +Patch99997: gcc12-fixes.patch URL: http://www.cl.cam.ac.uk/Research/SRG/netos/xen/ BuildRoot: %{_tmppath}/%{name}-%{version}-build %define pyver %(python3 -c "import sys; print(sys.version[:3])") ++++++ gcc12-fixes.patch ++++++ References: bsc#1196545 Compiling against gcc12. Many of the failures are -Werror=array-bounds where macros from mm.h are being used. Common Examples are, include/asm/mm.h:528:61: error: array subscript 0 is outside array bounds of 'long unsigned int[0]' [-Werror=array-bounds] include/xen/mm.h:287:21: error: array subscript [0, 288230376151711743] is outside array bounds of 'struct page_info[0]' [-Werror=array-bounds] There are also several other headers that generate array-bounds macro failures. The pragmas to override are mostly in '.c' files with the exception of, xen/arch/x86/mm/shadow/private.h xen/include/asm-x86/paging.h --- a/xen/drivers/passthrough/amd/iommu_intr.c +++ b/xen/drivers/passthrough/amd/iommu_intr.c @@ -23,6 +23,10 @@ #include "iommu.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + union irte32 { uint32_t raw; struct { --- a/xen/drivers/passthrough/x86/hvm.c +++ b/xen/drivers/passthrough/x86/hvm.c @@ -901,6 +901,9 @@ static void __hvm_dpci_eoi(struct domain hvm_pirq_eoi(pirq); } +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Waddress" +#endif static void hvm_gsi_eoi(struct domain *d, unsigned int gsi) { struct pirq *pirq = pirq_info(d, gsi); --- a/xen/common/domctl.c +++ b/xen/common/domctl.c @@ -32,6 +32,10 @@ #include <public/domctl.h> #include <xsm/xsm.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + static DEFINE_SPINLOCK(domctl_lock); static int nodemask_to_xenctl_bitmap(struct xenctl_bitmap *xenctl_nodemap, --- a/xen/common/efi/boot.c +++ b/xen/common/efi/boot.c @@ -31,6 +31,10 @@ #undef __ASSEMBLY__ #endif +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + #define EFI_REVISION(major, minor) (((major) << 16) | (minor)) #define SMBIOS3_TABLE_GUID \ --- a/xen/common/xmalloc_tlsf.c +++ b/xen/common/xmalloc_tlsf.c @@ -28,6 +28,10 @@ #include <xen/pfn.h> #include <asm/time.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + #define MAX_POOL_NAME_LEN 16 /* Some IMPORTANT TLSF parameters */ --- a/xen/common/memory.c +++ b/xen/common/memory.c @@ -35,6 +35,10 @@ #include <asm/guest.h> #endif +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + struct memop_args { /* INPUT */ struct domain *domain; /* Domain to be affected. */ --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -155,6 +155,10 @@ #define PGC_reserved 0 #endif +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* * Comma-separated list of hexadecimal page numbers containing bad bytes. * e.g. 'badpage=0x3f45,0x8a321'. @@ -1529,6 +1533,7 @@ static void free_heap_pages( } + /* * Following rules applied for page offline: * Once a page is broken, it can't be assigned anymore --- a/xen/common/vmap.c +++ b/xen/common/vmap.c @@ -9,6 +9,10 @@ #include <xen/vmap.h> #include <asm/page.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + static DEFINE_SPINLOCK(vm_lock); static void *__read_mostly vm_base[VMAP_REGION_NR]; #define vm_bitmap(x) ((unsigned long *)vm_base[x]) --- a/xen/include/asm-x86/paging.h +++ b/xen/include/asm-x86/paging.h @@ -32,6 +32,10 @@ #include <asm/flushtlb.h> #include <asm/domain.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /***************************************************************************** * Macros to tell which paging mode a domain is in */ --- a/xen/arch/x86/x86_64/traps.c +++ b/xen/arch/x86/x86_64/traps.c @@ -24,6 +24,9 @@ #include <asm/hvm/hvm.h> #include <asm/hvm/support.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif static void print_xen_info(void) { --- a/xen/arch/x86/cpu/mcheck/mcaction.c +++ b/xen/arch/x86/cpu/mcheck/mcaction.c @@ -4,6 +4,10 @@ #include "vmce.h" #include "mce.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + static struct mcinfo_recovery * mci_action_add_pageoffline(int bank, struct mc_info *mi, mfn_t mfn, uint32_t status) --- a/xen/arch/x86/cpu/mcheck/mce.c +++ b/xen/arch/x86/cpu/mcheck/mce.c @@ -30,6 +30,10 @@ #include "util.h" #include "vmce.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + bool __read_mostly opt_mce = true; boolean_param("mce", opt_mce); bool __read_mostly mce_broadcast; --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -81,6 +81,10 @@ #include <compat/hvm/hvm_op.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + bool_t __read_mostly hvm_enabled; #ifdef DBG_LEVEL_0 --- a/xen/arch/x86/pv/dom0_build.c +++ b/xen/arch/x86/pv/dom0_build.c @@ -22,6 +22,10 @@ #include <asm/pv/mm.h> #include <asm/setup.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* Allow ring-3 access in long mode as guest cannot use ring 1 ... */ #define BASE_PROT (_PAGE_PRESENT|_PAGE_RW|_PAGE_ACCESSED|_PAGE_USER) #define L1_PROT (BASE_PROT|_PAGE_GUEST_KERNEL) --- a/xen/arch/x86/pv/ro-page-fault.c +++ b/xen/arch/x86/pv/ro-page-fault.c @@ -26,6 +26,10 @@ #include "emulate.h" #include "mm.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /********************* * Writable Pagetables */ --- a/xen/arch/x86/pv/emul-priv-op.c +++ b/xen/arch/x86/pv/emul-priv-op.c @@ -39,6 +39,10 @@ #include "emulate.h" #include "mm.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + struct priv_op_ctxt { struct x86_emulate_ctxt ctxt; struct { --- a/xen/arch/x86/pv/mm.c +++ b/xen/arch/x86/pv/mm.c @@ -26,6 +26,10 @@ #include "mm.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* * Get a mapping of a PV guest's l1e for this linear address. The return * pointer should be unmapped using unmap_domain_page(). --- a/xen/arch/x86/domain_page.c +++ b/xen/arch/x86/domain_page.c @@ -18,6 +18,10 @@ #include <asm/hardirq.h> #include <asm/setup.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + static DEFINE_PER_CPU(struct vcpu *, override); static inline struct vcpu *mapcache_current_vcpu(void) --- a/xen/arch/x86/mm/shadow/private.h +++ b/xen/arch/x86/mm/shadow/private.h @@ -33,6 +33,10 @@ #include "../mm-locks.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /****************************************************************************** * Levels of self-test and paranoia */ --- a/xen/arch/x86/mm/hap/hap.c +++ b/xen/arch/x86/mm/hap/hap.c @@ -42,6 +42,10 @@ #include "private.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /************************************************/ /* HAP VRAM TRACKING SUPPORT */ /************************************************/ --- a/xen/arch/x86/mm/p2m-pod.c +++ b/xen/arch/x86/mm/p2m-pod.c @@ -31,6 +31,10 @@ #include "mm-locks.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + #define superpage_aligned(_x) (((_x)&(SUPERPAGE_PAGES-1))==0) /* Enforce lock ordering when grabbing the "external" page_alloc lock */ --- a/xen/arch/x86/mm/p2m-ept.c +++ b/xen/arch/x86/mm/p2m-ept.c @@ -36,6 +36,10 @@ #include "mm-locks.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + #define atomic_read_ept_entry(__pepte) \ ( (ept_entry_t) { .epte = read_atomic(&(__pepte)->epte) } ) --- a/xen/arch/x86/mm/p2m.c +++ b/xen/arch/x86/mm/p2m.c @@ -44,6 +44,10 @@ #include "mm-locks.h" +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* Override macro from asm/page.h to make work with mfn_t */ #undef virt_to_mfn #define virt_to_mfn(v) _mfn(__virt_to_mfn(v)) --- a/xen/arch/x86/tboot.c +++ b/xen/arch/x86/tboot.c @@ -16,6 +16,10 @@ #include <asm/setup.h> #include <crypto/vmac.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* tboot=<physical address of shared page> */ static unsigned long __initdata opt_tboot_pa; integer_param("tboot", opt_tboot_pa); --- a/tools/firmware/hvmloader/ovmf.c +++ b/tools/firmware/hvmloader/ovmf.c @@ -34,6 +34,11 @@ #include <xen/hvm/ioreq.h> #include <xen/memory.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#pragma GCC diagnostic ignored "-Wstringop-overflow" +#endif + #define OVMF_MAXOFFSET 0x000FFFFFULL #define OVMF_END 0x100000000ULL #define LOWCHUNK_BEGIN 0x000F0000 --- a/tools/firmware/hvmloader/seabios.c +++ b/tools/firmware/hvmloader/seabios.c @@ -29,6 +29,11 @@ #include <acpi2_0.h> #include <libacpi.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#pragma GCC diagnostic ignored "-Wstringop-overflow" +#endif + struct seabios_info { char signature[14]; /* XenHVMSeaBIOS\0 */ uint8_t length; /* Length of this struct */ --- a/tools/firmware/hvmloader/util.c +++ b/tools/firmware/hvmloader/util.c @@ -31,6 +31,10 @@ #include <xen/hvm/hvm_xs_strings.h> #include <xen/hvm/params.h> +#if __GNUC__ >= 12 +#pragma GCC diagnostic ignored "-Warray-bounds" +#endif + /* * Check whether there exists overlap in the specified memory range. * Returns true if exists, else returns false. ++++++ xen.bug1026236.suse_vtsc_tolerance.patch ++++++ --- /var/tmp/diff_new_pack.69cyPx/_old 2022-03-05 14:44:44.547720987 +0100 +++ /var/tmp/diff_new_pack.69cyPx/_new 2022-03-05 14:44:44.551720987 +0100 @@ -22,7 +22,7 @@ unsigned long __read_mostly cpu_khz; /* CPU clock frequency in kHz. */ DEFINE_SPINLOCK(rtc_lock); unsigned long pit0_ticks; -@@ -2475,6 +2478,7 @@ int tsc_set_info(struct domain *d, +@@ -2486,6 +2489,7 @@ int tsc_set_info(struct domain *d, switch ( tsc_mode ) { @@ -30,7 +30,7 @@ case TSC_MODE_DEFAULT: case TSC_MODE_ALWAYS_EMULATE: d->arch.vtsc_offset = get_s_time() - elapsed_nsec; -@@ -2488,8 +2492,26 @@ int tsc_set_info(struct domain *d, +@@ -2499,8 +2503,26 @@ int tsc_set_info(struct domain *d, * When a guest is created, gtsc_khz is passed in as zero, making * d->arch.tsc_khz == cpu_khz. Thus no need to check incarnation. */