Re: [PATCH] x86/emul: Use existing X86_EXC_* constants

2023-04-06 Thread Andrew Cooper
On 06/04/2023 1:50 pm, Jan Beulich wrote: > On 06.04.2023 14:17, Andrew Cooper wrote: >> ... rather than having separate definitions locally. EXC_HAS_EC in >> particular >> is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. >> >> No functional change. >> >> Signed-off-by: Andrew Cooper > Acked-by:

Re: [PATCH] x86/emul: Use existing X86_EXC_* constants

2023-04-06 Thread Jan Beulich
On 06.04.2023 14:17, Andrew Cooper wrote: > ... rather than having separate definitions locally. EXC_HAS_EC in particular > is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. > > No functional change. > > Signed-off-by: Andrew Cooper Acked-by: Jan Beulich Yet more re-basing for me to do ... But

[PATCH] x86/emul: Use existing X86_EXC_* constants

2023-04-06 Thread Andrew Cooper
... rather than having separate definitions locally. EXC_HAS_EC in particular is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. No functional change. Signed-off-by: Andrew Cooper --- CC: Jan Beulich CC: Roger Pau Monné CC: Wei Liu --- xen/arch/x86/x86_emulate/x86_emulate.c | 608 -

Re: [PATCH] x86/emul: Use existing X86_EXC_* constants

2021-04-28 Thread Jan Beulich
On 27.04.2021 20:56, Andrew Cooper wrote: > On 27/04/2021 08:09, Jan Beulich wrote: >> On 26.04.2021 14:45, Andrew Cooper wrote: >>> ... rather than having separate definitions locally. EXC_HAS_EC in >>> particular >>> is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. >>> >>> Also switch a raw 14 f

Re: [PATCH] x86/emul: Use existing X86_EXC_* constants

2021-04-27 Thread Andrew Cooper
On 27/04/2021 08:09, Jan Beulich wrote: > On 26.04.2021 14:45, Andrew Cooper wrote: >> ... rather than having separate definitions locally. EXC_HAS_EC in >> particular >> is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. >> >> Also switch a raw 14 for X86_EXC_PF in x86_emul_pagefault(). >> >> No fu

Re: [PATCH] x86/emul: Use existing X86_EXC_* constants

2021-04-27 Thread Jan Beulich
On 26.04.2021 14:45, Andrew Cooper wrote: > ... rather than having separate definitions locally. EXC_HAS_EC in particular > is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. > > Also switch a raw 14 for X86_EXC_PF in x86_emul_pagefault(). > > No functional change. > > Signed-off-by: Andrew Cooper

[PATCH] x86/emul: Use existing X86_EXC_* constants

2021-04-26 Thread Andrew Cooper
... rather than having separate definitions locally. EXC_HAS_EC in particular is missing #CP, #VC and #SX vs X86_EXC_HAVE_EC. Also switch a raw 14 for X86_EXC_PF in x86_emul_pagefault(). No functional change. Signed-off-by: Andrew Cooper --- CC: Jan Beulich CC: Roger Pau Monné CC: Wei Liu -