Re: [PATCH v13 07/10] xen/common: fix build issue for common/trace.c

2024-06-27 Thread George Dunlap
On Wed, Jun 26, 2024 at 11:46 AM Jan Beulich wrote: > > On 25.06.2024 18:23, Oleksii wrote: > > On Tue, 2024-06-25 at 16:25 +0200, Jan Beulich wrote: > >> On 25.06.2024 15:51, Oleksii Kurochko wrote: > >>> During Gitlab CI randconfig job for RISC-V failed witn an error: > >>> common/trace.c:57:22

Re: [PATCH v13 07/10] xen/common: fix build issue for common/trace.c

2024-06-26 Thread Jan Beulich
On 25.06.2024 18:23, Oleksii wrote: > On Tue, 2024-06-25 at 16:25 +0200, Jan Beulich wrote: >> On 25.06.2024 15:51, Oleksii Kurochko wrote: >>> During Gitlab CI randconfig job for RISC-V failed witn an error: >>>  common/trace.c:57:22: error: expected '=', ',', ';', 'asm' or >>>    

Re: [PATCH v13 07/10] xen/common: fix build issue for common/trace.c

2024-06-25 Thread Oleksii
On Tue, 2024-06-25 at 16:25 +0200, Jan Beulich wrote: > On 25.06.2024 15:51, Oleksii Kurochko wrote: > > During Gitlab CI randconfig job for RISC-V failed witn an error: > >  common/trace.c:57:22: error: expected '=', ',', ';', 'asm' or > >   '__attribute__' before > > '

Re: [PATCH v13 07/10] xen/common: fix build issue for common/trace.c

2024-06-25 Thread Jan Beulich
On 25.06.2024 15:51, Oleksii Kurochko wrote: > During Gitlab CI randconfig job for RISC-V failed witn an error: > common/trace.c:57:22: error: expected '=', ',', ';', 'asm' or > '__attribute__' before '__read_mostly' >57 | static u32 data_size __read_mostly; > >

[PATCH v13 07/10] xen/common: fix build issue for common/trace.c

2024-06-25 Thread Oleksii Kurochko
During Gitlab CI randconfig job for RISC-V failed witn an error: common/trace.c:57:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before '__read_mostly' 57 | static u32 data_size __read_mostly; Signed-off-by: Oleksii Kurochko --- Changes in V13: -