Re: [XEN PATCH 3/7] xen/x86: add missing instances of asmlinkage attributes

2023-12-01 Thread Jan Beulich
On 01.12.2023 09:42, Nicola Vetrini wrote: > On 2023-11-30 17:44, Jan Beulich wrote: >> On 29.11.2023 16:24, Nicola Vetrini wrote: >>> --- a/xen/arch/x86/desc.c >>> +++ b/xen/arch/x86/desc.c >>> @@ -91,7 +91,7 @@ seg_desc_t boot_compat_gdt[PAGE_SIZE / >>> sizeof(seg_desc_t)] = >>> * References b

Re: [XEN PATCH 3/7] xen/x86: add missing instances of asmlinkage attributes

2023-12-01 Thread Nicola Vetrini
On 2023-11-30 17:44, Jan Beulich wrote: On 29.11.2023 16:24, Nicola Vetrini wrote: --- a/xen/arch/x86/desc.c +++ b/xen/arch/x86/desc.c @@ -91,7 +91,7 @@ seg_desc_t boot_compat_gdt[PAGE_SIZE / sizeof(seg_desc_t)] = * References boot_cpu_gdt_table for a short period, until the CPUs switch *

Re: [XEN PATCH 3/7] xen/x86: add missing instances of asmlinkage attributes

2023-11-30 Thread Jan Beulich
On 29.11.2023 16:24, Nicola Vetrini wrote: > --- a/xen/arch/x86/desc.c > +++ b/xen/arch/x86/desc.c > @@ -91,7 +91,7 @@ seg_desc_t boot_compat_gdt[PAGE_SIZE / sizeof(seg_desc_t)] = > * References boot_cpu_gdt_table for a short period, until the CPUs switch > * onto their per-CPU GDTs. > */ > -

[XEN PATCH 3/7] xen/x86: add missing instances of asmlinkage attributes

2023-11-29 Thread Nicola Vetrini
No functional change. Signed-off-by: Nicola Vetrini --- xen/arch/x86/desc.c | 2 +- xen/arch/x86/efi/efi-boot.h | 5 +++-- xen/arch/x86/mm.c | 2 +- xen/arch/x86/smpboot.c | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/desc.c b/xen/arch