Merge pull request #6967 from beraldoleal/issues/6757-backport

runtime: sending SIGKILL to qemu (backport to 3.1)
This commit is contained in:
Wainer Moschetta
2023-05-30 13:35:09 -03:00
committed by GitHub

View File

@@ -1108,22 +1108,21 @@ func (q *qemu) StopVM(ctx context.Context, waitOnly bool) (err error) {
return err
}
pids := q.GetPids()
if len(pids) == 0 {
return errors.New("cannot determine QEMU PID")
}
pid := pids[0]
if waitOnly {
pids := q.GetPids()
if len(pids) == 0 {
return errors.New("cannot determine QEMU PID")
}
pid := pids[0]
err := utils.WaitLocalProcess(pid, qemuStopSandboxTimeoutSecs, syscall.Signal(0), q.Logger())
if err != nil {
return err
}
} else {
err := q.qmpMonitorCh.qmp.ExecuteQuit(q.qmpMonitorCh.ctx)
err = syscall.Kill(pid, syscall.SIGKILL)
if err != nil {
q.Logger().WithError(err).Error("Fail to execute qmp QUIT")
q.Logger().WithError(err).Error("Fail to send SIGKILL to qemu")
return err
}
}