From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ingo Molnar Subject: Re: [PATCH] x86: KVM, fix lock imbalance Date: Wed, 7 Jul 2010 15:05:45 +0200 Message-ID: <20100707130545.GA14934@elte.hu> References: <1278507745-32746-1-git-send-email-jirislaby@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: avi@redhat.com, linux-kernel@vger.kernel.org, Marcelo Tosatti , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, Gleb Natapov , "Michael S. Tsirkin" , Gregory Haskins , kvm@vger.kernel.org To: Jiri Slaby Return-path: Content-Disposition: inline In-Reply-To: <1278507745-32746-1-git-send-email-jirislaby@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org * Jiri Slaby wrote: > Stanse found that there is an omitted unlock in kvm_create_pit in one fail > path. Add proper unlock there. > > Signed-off-by: Jiri Slaby > Cc: Avi Kivity > Cc: Marcelo Tosatti > Cc: Thomas Gleixner > Cc: Ingo Molnar > Cc: "H. Peter Anvin" > Cc: x86@kernel.org > Cc: Gleb Natapov > Cc: "Michael S. Tsirkin" > Cc: Gregory Haskins > Cc: kvm@vger.kernel.org > --- > arch/x86/kvm/i8254.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c > index 467cc47..70db4d4 100644 > --- a/arch/x86/kvm/i8254.c > +++ b/arch/x86/kvm/i8254.c > @@ -696,6 +696,7 @@ struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags) > > pit->wq = create_singlethread_workqueue("kvm-pit-wq"); > if (!pit->wq) { > + mutex_unlock(&pit->pit_state.lock); > kfree(pit); > return NULL; > } A cleanliness comment: why is that tear-down/dealloc sequence open-coded? It should be at the end of the function, with goto labels, like we do it in similar cases. Thanks, Ingo