Re: [PATCH] KVM: x86: cancel delayed EOI work on vm shutdown

2015-04-28 Thread Paolo Bonzini
On 28/04/2015 16:00, Radim Krčmář wrote: > kvm_ioapic_eoi_inject_work() can be called after ioapic has been freed, > fix it by cancelling its delayed work via a slightly better freeing. > (Could have been a one-liner.) > > Signed-off-by: Radim Krčmář > --- > I noticed it while reviewing the "K

[PATCH] KVM: x86: cancel delayed EOI work on vm shutdown

2015-04-28 Thread Radim Krčmář
kvm_ioapic_eoi_inject_work() can be called after ioapic has been freed, fix it by cancelling its delayed work via a slightly better freeing. (Could have been a one-liner.) Signed-off-by: Radim Krčmář --- I noticed it while reviewing the "KVM: x86: drop unneeded null test", so it applies after.