[PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-01 Thread Andrew Cooper
For one, they render the vector in a different base. Introduce X86_EXC_* constants and vec_name() to refer to exceptions by their mnemonic, which starts bringing the code/diagnostics in line with the Intel and AMD manuals. Provide constants for every archtiecturally defined exception, even those

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-04 Thread Jan Beulich
On 02.05.2020 00:58, Andrew Cooper wrote: > For one, they render the vector in a different base. > > Introduce X86_EXC_* constants and vec_name() to refer to exceptions by their > mnemonic, which starts bringing the code/diagnostics in line with the Intel > and AMD manuals. For this "bringing in

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-11 Thread Andrew Cooper
On 04/05/2020 14:08, Jan Beulich wrote: > On 02.05.2020 00:58, Andrew Cooper wrote: >> For one, they render the vector in a different base. >> >> Introduce X86_EXC_* constants and vec_name() to refer to exceptions by their >> mnemonic, which starts bringing the code/diagnostics in line with the Int

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-11 Thread Jan Beulich
On 11.05.2020 17:01, Andrew Cooper wrote: > On 04/05/2020 14:08, Jan Beulich wrote: >> On 02.05.2020 00:58, Andrew Cooper wrote: >>> For one, they render the vector in a different base. >>> >>> Introduce X86_EXC_* constants and vec_name() to refer to exceptions by their >>> mnemonic, which starts b

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-18 Thread Andrew Cooper
On 11/05/2020 16:09, Jan Beulich wrote: > [CAUTION - EXTERNAL EMAIL] DO NOT reply, click links, or open attachments > unless you have verified the sender and know the content is safe. > > On 11.05.2020 17:01, Andrew Cooper wrote: >> On 04/05/2020 14:08, Jan Beulich wrote: >>> On 02.05.2020 00:58,

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-19 Thread Jan Beulich
On 18.05.2020 18:54, Andrew Cooper wrote: > On 11/05/2020 16:09, Jan Beulich wrote: >> [CAUTION - EXTERNAL EMAIL] DO NOT reply, click links, or open attachments >> unless you have verified the sender and know the content is safe. >> >> On 11.05.2020 17:01, Andrew Cooper wrote: >>> On 04/05/2020 14

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-26 Thread Andrew Cooper
On 19/05/2020 09:50, Jan Beulich wrote: > On 18.05.2020 18:54, Andrew Cooper wrote: >> On 11/05/2020 16:09, Jan Beulich wrote: >>> On 11.05.2020 17:01, Andrew Cooper wrote: On 04/05/2020 14:08, Jan Beulich wrote: > On 02.05.2020 00:58, Andrew Cooper wrote: >> For one, they render the v

Re: [PATCH 02/16] x86/traps: Clean up printing in do_reserved_trap()/fatal_trap()

2020-05-26 Thread Jan Beulich
On 26.05.2020 17:38, Andrew Cooper wrote: > On 19/05/2020 09:50, Jan Beulich wrote: >> On 18.05.2020 18:54, Andrew Cooper wrote: >>> On 11/05/2020 16:09, Jan Beulich wrote: On 11.05.2020 17:01, Andrew Cooper wrote: > On 04/05/2020 14:08, Jan Beulich wrote: >> On 02.05.2020 00:58, Andre