[MODERATED] Re: The Annnoying Affair has No eXcuses - Bulletin #2

"Luck, Tony" <[email protected]> Mon, 4 Nov 2019 10:34:18 -0800
Newsgroups org.kernel.lore.historical-speck
Message-ID <[email protected]>
On Mon, Nov 04, 2019 at 01:09:21PM +0100, speck for Thomas Gleixner wrote:
> Folks,
> 
> I've merged Linus tree into master to pick up the KVM fix and applied
> Paolo's V9 series. The commits are considered stable from now on. Any
> further tweaks need to go on top.

Small typo causes build error:

arch/x86/kvm/../../../virt/kvm/kvm_main.c: In function ‘kvm_create_vm’:
arch/x86/kvm/../../../virt/kvm/kvm_main.c:703:31: error: expected ‘;’ before ‘:’ token
   goto out_err_no_mmu_notifier:
                               ^
                               ;

diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index d32a50aa104c..4aab3547a165 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -700,7 +700,7 @@ static struct kvm *kvm_create_vm(unsigned long type)
 
 	r = kvm_init_mmu_notifier(kvm);
 	if (r)
-		goto out_err_no_mmu_notifier:
+		goto out_err_no_mmu_notifier;
 
 	r = kvm_arch_post_init_vm(kvm);
 	if (r)