Tag: cab7a1eeeb007be309cd99cf14407261a72d2418

KVM: ia64: Fix irq disabling leak in error handling code

Author: Julia Lawall <julia@diku.dk> There is a call to local_irq_restore in the normal exit case, so it would seem that there should be one on an error return as well. The semantic patch that finds this problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ expression l; expression E,E1,E2; @@ local_irq_save(l); … when != local_irq_restore(l) when != …

Continue reading