Dan, This has already been fixed by commit 57225096e5888d84e84224bac13aae2aaed89280. Thanks. On Tue, Nov 10, 2009 at 10:57:09AM +0200, Dan Carpenter wrote: > There were a couple unlocks missing. They were found by smatch static > checker. Compile tested. > > regards, > dan carpenter > > Signed-off-by: Dan Carpenter <error27@xxxxxxxxx> > > --- orig/virt/kvm/irq_comm.c 2009-11-08 19:00:50.000000000 +0200 > +++ devel/virt/kvm/irq_comm.c 2009-11-08 19:04:45.000000000 +0200 > @@ -209,6 +209,7 @@ > sizeof(kvm->arch.irq_sources_bitmap)); > > if (irq_source_id >= sizeof(kvm->arch.irq_sources_bitmap)) { > + mutex_unlock(&kvm->irq_lock); > printk(KERN_WARNING "kvm: exhaust allocatable IRQ sources!\n"); > return -EFAULT; > } > @@ -229,6 +230,7 @@ > mutex_lock(&kvm->irq_lock); > if (irq_source_id < 0 || > irq_source_id >= sizeof(kvm->arch.irq_sources_bitmap)) { > + mutex_unlock(&kvm->irq_lock); > printk(KERN_ERR "kvm: IRQ source ID out of range!\n"); > return; > } -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html