Commit 765a5e0cb581ef32646f58a213b38b56c77709b0

Authored by Thomas Gleixner
1 parent 1fda107d44

debugobjects: printk with irqs enabled

No point in keeping interrupts disabled here.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1051,10 +1051,10 @@
1051 1051 cnt++;
1052 1052 }
1053 1053 }
  1054 + local_irq_enable();
1054 1055  
1055 1056 printk(KERN_DEBUG "ODEBUG: %d of %d active objects replaced\n", cnt,
1056 1057 obj_pool_used);
1057   - local_irq_enable();
1058 1058 return 0;
1059 1059 free:
1060 1060 hlist_for_each_entry_safe(obj, node, tmp, &objects, node) {