search for: gic_sgi_call_function

Displaying 1 result from an estimated 1 matches for "gic_sgi_call_function".

2013 May 07
1
[PATCH V2] xen/arm: implement smp_call_function
...ch/arm/gic.c b/xen/arch/arm/gic.c index a8cdd0b..61de230 100644 --- a/xen/arch/arm/gic.c +++ b/xen/arch/arm/gic.c @@ -672,6 +672,9 @@ static void do_sgi(struct cpu_user_regs *regs, int othercpu, enum gic_sgi sgi) case GIC_SGI_DUMP_STATE: dump_execstate(regs); break; + case GIC_SGI_CALL_FUNCTION: + smp_call_function_interrupt(); + break; default: panic("Unhandled SGI %d on CPU%d\n", sgi, smp_processor_id()); break; diff --git a/xen/arch/arm/smp.c b/xen/arch/arm/smp.c index 2a429bd..4042db5 100644 --- a/xen/arch/arm/smp.c +++ b/xen/arch/arm/smp...