Re: [PATCH v7 15/15] KVM: s390: test for non NULL gisa origin in pending_irqs()

2019-01-31 Thread Michael Mueller
Ignore this patch please, it has the wrong commit message. The following is the right patch: "KVM: s390: fix possible null pointer dereference in pending_irqs()" On 31.01.19 09:52, Michael Mueller wrote: Assure a GISA is in use before accessing the IPM to avoid a NULL pointer de-referencin

[PATCH v7 15/15] KVM: s390: test for non NULL gisa origin in pending_irqs()

2019-01-31 Thread Michael Mueller
Assure a GISA is in use before accessing the IPM to avoid a NULL pointer de-referencing issue. Reported-by: Halil Pasic Signed-off-by: Michael Mueller --- arch/s390/kvm/interrupt.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/arch/s390/kvm/interrupt.c b/arch/s3