aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/events.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/events.c')
-rw-r--r--drivers/xen/events.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/xen/events.c b/drivers/xen/events.c
index 7d2987e9b1bb..2f57276e87a2 100644
--- a/drivers/xen/events.c
+++ b/drivers/xen/events.c
@@ -928,9 +928,9 @@ static struct irq_chip xen_dynamic_chip __read_mostly = {
928void __init xen_init_IRQ(void) 928void __init xen_init_IRQ(void)
929{ 929{
930 int i; 930 int i;
931 size_t size = nr_cpu_ids * sizeof(struct cpu_evtchn_s);
932 931
933 cpu_evtchn_mask_p = alloc_bootmem(size); 932 cpu_evtchn_mask_p = kcalloc(nr_cpu_ids, sizeof(struct cpu_evtchn_s),
933 GFP_KERNEL);
934 BUG_ON(cpu_evtchn_mask_p == NULL); 934 BUG_ON(cpu_evtchn_mask_p == NULL);
935 935
936 init_evtchn_cpu_bindings(); 936 init_evtchn_cpu_bindings();