Displaying 1 result from an estimated 1 matches for "gic_sgi_event_check".
2013 May 07
1
[PATCH V2] xen/arm: implement smp_call_function
...d flush_tlb_mask(const cpumask_t *mask)
flush_xen_data_tlb();
}
-void smp_call_function(
- void (*func) (void *info),
- void *info,
- int wait)
+void smp_send_event_check_mask(const cpumask_t *mask)
{
- printk("%s not implmented\n", __func__);
+ send_SGI_mask(mask, GIC_SGI_EVENT_CHECK);
}
-void smp_send_event_check_mask(const cpumask_t *mask)
+void smp_send_call_function_mask(const cpumask_t *mask)
{
- send_SGI_mask(mask, GIC_SGI_EVENT_CHECK);
+ send_SGI_mask(mask, GIC_SGI_CALL_FUNCTION);
}
/*
diff --git a/xen/arch/x86/smp.c b/xen/arch/x86/smp.c
index a607531..0433...