x86: remove debug printks (io_apic.c)

Impact: reduce printk noise

The message "alloc irq_2_pin on cpu 0 node 0" is printed way too often.

% dmesg|grep irq_2_pin|wc -l
20

Get rid of the debug printks.

Signed-off-by: Markus Trippelsdorf <markus@trippelsdorf.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Markus Trippelsdorf and committed by
Ingo Molnar
37dd3cb4 47dabdc7

-2
-2
arch/x86/kernel/io_apic.c
··· 129 node = cpu_to_node(cpu); 130 131 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node); 132 - printk(KERN_DEBUG " alloc irq_2_pin on cpu %d node %d\n", cpu, node); 133 134 return pin; 135 } ··· 226 cpumask_clear(cfg->old_domain); 227 } 228 } 229 - printk(KERN_DEBUG " alloc irq_cfg on cpu %d node %d\n", cpu, node); 230 231 return cfg; 232 }
··· 129 node = cpu_to_node(cpu); 130 131 pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node); 132 133 return pin; 134 } ··· 227 cpumask_clear(cfg->old_domain); 228 } 229 } 230 231 return cfg; 232 }