Re: [PATCH 4/5] x86/syscall/x32: Move x32 syscall table
From: Ingo Molnar
Date: Fri Mar 14 2025 - 05:26:17 EST
* Sohil Mehta <sohil.mehta@xxxxxxxxx> wrote:
> > +#ifdef CONFIG_X86_X32_ABI
> > +long x32_sys_call(const struct pt_regs *regs, unsigned int nr)
> > +{
> > + switch (nr) {
> > + #include <asm/syscalls_x32.h>
> > + default: return __x64_sys_ni_syscall(regs);
> > + }
> > +};
>
> There seems to be a stray semicolon here. The original code also has it
> but it doesn't seem necessary.
Yeah, and this should be done in a followup patch.
Thanks,
Ingo