Re: [PATCH v3 08/14] xen/riscv: introduce exception handlers implementation

2023-02-09 Thread Alistair Francis
On Wed, Feb 8, 2023 at 12:47 AM Oleksii Kurochko wrote: > > The patch introduces an implementation of basic exception handlers: > - to save/restore context > - to handle an exception itself. The handler calls wait_for_interrupt > now, nothing more. > > Signed-off-by: Oleksii Kurochko Reviewed-

[PATCH v3 08/14] xen/riscv: introduce exception handlers implementation

2023-02-07 Thread Oleksii Kurochko
The patch introduces an implementation of basic exception handlers: - to save/restore context - to handle an exception itself. The handler calls wait_for_interrupt now, nothing more. Signed-off-by: Oleksii Kurochko --- Changes in V3: - Nothing changed --- Changes in V2: - Refactor entry.S t