From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965764AbcIHOW4 (ORCPT ); Thu, 8 Sep 2016 10:22:56 -0400 Received: from mail-wm0-f50.google.com ([74.125.82.50]:37121 "EHLO mail-wm0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938653AbcIHOWz (ORCPT ); Thu, 8 Sep 2016 10:22:55 -0400 Date: Thu, 8 Sep 2016 16:25:25 +0200 From: Christoffer Dall To: Arnd Bergmann Cc: Paolo Bonzini , Marc Zyngier , Radim =?utf-8?B?S3LEjW3DocWZ?= , Andre Przywara , Eric Auger , Thomas Gleixner , linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] KVM: arm/arm64: arch_timer: remove unused error handling Message-ID: <20160908142525.GB9940@cbox> References: <20160908135908.1312349-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160908135908.1312349-1-arnd@arndb.de> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Arnd, On Thu, Sep 08, 2016 at 03:58:44PM +0200, Arnd Bergmann wrote: > A cleanup removed the call to create_singlethread_workqueue(), but did not > remove the code that was used in case it failed: > > virt/kvm/arm/arch_timer.c: In function 'kvm_timer_hyp_init': > virt/kvm/arm/arch_timer.c:457:1: error: label 'out_free' defined but not used [-Werror=unused-label] > > This removes the now dead code too. Paolo beat you to it: https://lists.cs.columbia.edu/pipermail/kvmarm/2016-September/021626.html Thanks, -Christoffer > > Signed-off-by: Arnd Bergmann > Fixes: 3706feacd007 ("KVM: Remove deprecated create_singlethread_workqueue") > --- > virt/kvm/arm/arch_timer.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/virt/kvm/arm/arch_timer.c b/virt/kvm/arm/arch_timer.c > index 4309b60ebf17..46980a49a3bb 100644 > --- a/virt/kvm/arm/arch_timer.c > +++ b/virt/kvm/arm/arch_timer.c > @@ -453,9 +453,6 @@ int kvm_timer_hyp_init(void) > cpuhp_setup_state(CPUHP_AP_KVM_ARM_TIMER_STARTING, > "AP_KVM_ARM_TIMER_STARTING", kvm_timer_starting_cpu, > kvm_timer_dying_cpu); > - goto out; > -out_free: > - free_percpu_irq(host_vtimer_irq, kvm_get_running_vcpus()); > out: > return err; > } > -- > 2.9.0 >