From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [PATCH] KVM: x86: hyperv: fix semicolon.cocci warnings Date: Fri, 29 Jun 2018 03:09:34 +0800 Message-ID: <20180628190934.GA50065@lkp-hsx03> References: <20180628135313.17468-3-vkuznets@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kbuild-all@01.org, kvm@vger.kernel.org, x86@kernel.org, Paolo Bonzini , Radim =?utf-8?B?S3LEjW3DocWZ?= , Roman Kagan , "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , "Michael Kelley (EOSG)" , Mohammed Gamal , Cathy Avery , Wanpeng Li , linux-kernel@vger.kernel.org To: Vitaly Kuznetsov Return-path: Content-Disposition: inline In-Reply-To: <20180628135313.17468-3-vkuznets@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org From: kbuild test robot arch/x86/kvm/hyperv.c:174:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: 5282e205b1f9 ("KVM: x86: hyperv: introduce vp_index_to_vcpu_idx mapping") CC: Vitaly Kuznetsov Signed-off-by: kbuild test robot --- hyperv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/x86/kvm/hyperv.c +++ b/arch/x86/kvm/hyperv.c @@ -171,7 +171,7 @@ static u32 vp_idx_to_vcpu_idx(struct kvm } else /* (tmp_vp_idx > vp_idx) */ { r_index = tmp_index - 1; } - }; + } unlock: rcu_read_unlock();