aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-extended/xen/files/xen-fix-gcc12-build-issues.patch
blob: 6cdd312db110583529a57233313992787ff0d3ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
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

[Upstream-Status: imported from: https://build.opensuse.org/package/view_file/openSUSE:Factory/xen/gcc12-fixes.patch?expand=1]

Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>


Index: xen-4.16.1-testing/xen/drivers/passthrough/amd/iommu_intr.c
===================================================================
--- xen-4.16.1-testing.orig/xen/drivers/passthrough/amd/iommu_intr.c
+++ xen-4.16.1-testing/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 {
Index: xen-4.16.1-testing/xen/drivers/passthrough/x86/hvm.c
===================================================================
--- xen-4.16.1-testing.orig/xen/drivers/passthrough/x86/hvm.c
+++ xen-4.16.1-testing/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);
Index: xen-4.16.1-testing/xen/common/domctl.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/domctl.c
+++ xen-4.16.1-testing/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,
Index: xen-4.16.1-testing/xen/common/efi/boot.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/efi/boot.c
+++ xen-4.16.1-testing/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 \
Index: xen-4.16.1-testing/xen/common/xmalloc_tlsf.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/xmalloc_tlsf.c
+++ xen-4.16.1-testing/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 */
Index: xen-4.16.1-testing/xen/common/memory.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/memory.c
+++ xen-4.16.1-testing/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. */
Index: xen-4.16.1-testing/xen/common/page_alloc.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/page_alloc.c
+++ xen-4.16.1-testing/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
Index: xen-4.16.1-testing/xen/common/vmap.c
===================================================================
--- xen-4.16.1-testing.orig/xen/common/vmap.c
+++ xen-4.16.1-testing/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])
Index: xen-4.16.1-testing/xen/include/asm-x86/paging.h
===================================================================
--- xen-4.16.1-testing.orig/xen/include/asm-x86/paging.h
+++ xen-4.16.1-testing/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 */
 
Index: xen-4.16.1-testing/xen/arch/x86/x86_64/traps.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/x86_64/traps.c
+++ xen-4.16.1-testing/xen/arch/x86/x86_64/traps.c
@@ -25,6 +25,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)
 {
Index: xen-4.16.1-testing/xen/arch/x86/cpu/mcheck/mcaction.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/cpu/mcheck/mcaction.c
+++ xen-4.16.1-testing/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)
Index: xen-4.16.1-testing/xen/arch/x86/cpu/mcheck/mce.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/cpu/mcheck/mce.c
+++ xen-4.16.1-testing/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;
Index: xen-4.16.1-testing/xen/arch/x86/hvm/hvm.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/hvm/hvm.c
+++ xen-4.16.1-testing/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
Index: xen-4.16.1-testing/xen/arch/x86/pv/dom0_build.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/pv/dom0_build.c
+++ xen-4.16.1-testing/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)
Index: xen-4.16.1-testing/xen/arch/x86/pv/ro-page-fault.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/pv/ro-page-fault.c
+++ xen-4.16.1-testing/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
  */
Index: xen-4.16.1-testing/xen/arch/x86/pv/emul-priv-op.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/pv/emul-priv-op.c
+++ xen-4.16.1-testing/xen/arch/x86/pv/emul-priv-op.c
@@ -40,6 +40,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 {
Index: xen-4.16.1-testing/xen/arch/x86/pv/mm.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/pv/mm.c
+++ xen-4.16.1-testing/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().
Index: xen-4.16.1-testing/xen/arch/x86/domain_page.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/domain_page.c
+++ xen-4.16.1-testing/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)
Index: xen-4.16.1-testing/xen/arch/x86/mm/shadow/private.h
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/mm/shadow/private.h
+++ xen-4.16.1-testing/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
  */
Index: xen-4.16.1-testing/xen/arch/x86/mm/hap/hap.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/mm/hap/hap.c
+++ xen-4.16.1-testing/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           */
 /************************************************/
Index: xen-4.16.1-testing/xen/arch/x86/mm/p2m-pod.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/mm/p2m-pod.c
+++ xen-4.16.1-testing/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 */
Index: xen-4.16.1-testing/xen/arch/x86/mm/p2m-ept.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/mm/p2m-ept.c
+++ xen-4.16.1-testing/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) } )
 
Index: xen-4.16.1-testing/xen/arch/x86/mm/p2m.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/mm/p2m.c
+++ xen-4.16.1-testing/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))
Index: xen-4.16.1-testing/xen/arch/x86/tboot.c
===================================================================
--- xen-4.16.1-testing.orig/xen/arch/x86/tboot.c
+++ xen-4.16.1-testing/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);
Index: xen-4.16.1-testing/tools/firmware/hvmloader/ovmf.c
===================================================================
--- xen-4.16.1-testing.orig/tools/firmware/hvmloader/ovmf.c
+++ xen-4.16.1-testing/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
Index: xen-4.16.1-testing/tools/firmware/hvmloader/seabios.c
===================================================================
--- xen-4.16.1-testing.orig/tools/firmware/hvmloader/seabios.c
+++ xen-4.16.1-testing/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 */
Index: xen-4.16.1-testing/tools/firmware/hvmloader/util.c
===================================================================
--- xen-4.16.1-testing.orig/tools/firmware/hvmloader/util.c
+++ xen-4.16.1-testing/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.