From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933403AbeCSNqU (ORCPT ); Mon, 19 Mar 2018 09:46:20 -0400 Received: from foss.arm.com ([217.140.101.70]:52700 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932793AbeCSNqT (ORCPT ); Mon, 19 Mar 2018 09:46:19 -0400 Subject: Re: [RFC 01/12] KVM: arm/arm64: Avoid multiple dist->spis kfree To: Eric Auger , eric.auger.pro@gmail.com, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu, cdall@kernel.org, peter.maydell@linaro.org Cc: andre.przywara@arm.com, drjones@redhat.com, wei@redhat.com References: <1521451220-27754-1-git-send-email-eric.auger@redhat.com> <1521451220-27754-2-git-send-email-eric.auger@redhat.com> From: Marc Zyngier Organization: ARM Ltd Message-ID: <92f4b34e-f361-869a-7fca-c62a70e646b7@arm.com> Date: Mon, 19 Mar 2018 13:46:15 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <1521451220-27754-2-git-send-email-eric.auger@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 19/03/18 09:20, Eric Auger wrote: > in case kvm_vgic_map_resources() fails, typically if the vgic > distributor is not defined, __kvm_vgic_destroy will be called > several times. Indeed kvm_vgic_map_resources() is called on > first vcpu run. As a result dist->spis is freeed twice and on > the second time it causes a "kernel BUG at mm/slub.c:3912!" > > This patch avoids freeing dist->spis twice. > > Signed-off-by: Eric Auger > --- > virt/kvm/arm/vgic/vgic-init.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/virt/kvm/arm/vgic/vgic-init.c b/virt/kvm/arm/vgic/vgic-init.c > index 743ca5c..38fd5f1 100644 > --- a/virt/kvm/arm/vgic/vgic-init.c > +++ b/virt/kvm/arm/vgic/vgic-init.c > @@ -324,7 +324,10 @@ static void kvm_vgic_dist_destroy(struct kvm *kvm) > dist->ready = false; > dist->initialized = false; > > - kfree(dist->spis); > + if (dist->spis) { > + kfree(dist->spis); > + dist->spis = NULL; > + } Given that kfree(NULL) is always a valid thing to do, you could write the same thing just as dist-> spis = NULL; without any test. > dist->nr_spis = 0; > > if (vgic_supports_direct_msis(kvm)) > You also may want to add a Fixes tag to it. Thanks, M. -- Jazz is not dead. It just smells funny...