Re: [libvirt] [PATCH V2 3/3] libxl: add support for soft reset

2018-11-06 Thread Michal Privoznik
On 10/31/2018 08:51 PM, Jim Fehlig wrote: > The pvops Linux kernel implements machine_ops.crash_shutdown as > > static void xen_hvm_crash_shutdown(struct pt_regs *regs) > { > native_machine_crash_shutdown(regs); > xen_reboot(SHUTDOWN_soft_reset); > } > > but currently the libxl dr

[libvirt] [PATCH V2 3/3] libxl: add support for soft reset

2018-10-31 Thread Jim Fehlig
The pvops Linux kernel implements machine_ops.crash_shutdown as static void xen_hvm_crash_shutdown(struct pt_regs *regs) { native_machine_crash_shutdown(regs); xen_reboot(SHUTDOWN_soft_reset); } but currently the libxl driver does not handle the soft reset shutdown event. As a res