Clearly for the adjusted BUG_ON()s to not yield false positives
num_chs_used must be incremented before setting up an IRQ (and
decremented back when the setup failed).
Signed-off-by: Jan Beulich <jbeulich@novell.com>
ch->flags = 0;
ch->idx = i;
- if ( (ch->irq = hpet_assign_irq(num_chs_used)) < 0 )
- continue;
-
- num_chs_used++;
+ if ( (ch->irq = hpet_assign_irq(num_chs_used++)) < 0 )
+ num_chs_used--;
}
printk(XENLOG_INFO "HPET: %u timers (%u will be used for broadcast)\n",