Lines Matching refs:xen_vector
188 int xen_vector; in xen_map_vector() local
192 xen_vector = XEN_RESCHEDULE_VECTOR; in xen_map_vector()
195 xen_vector = XEN_CALL_FUNCTION_VECTOR; in xen_map_vector()
198 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR; in xen_map_vector()
201 xen_vector = XEN_IRQ_WORK_VECTOR; in xen_map_vector()
206 xen_vector = XEN_NMI_VECTOR; in xen_map_vector()
210 xen_vector = -1; in xen_map_vector()
215 return xen_vector; in xen_map_vector()
221 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask() local
223 if (xen_vector >= 0) in xen_send_IPI_mask()
224 __xen_send_IPI_mask(mask, xen_vector); in xen_send_IPI_mask()
229 int xen_vector = xen_map_vector(vector); in xen_send_IPI_all() local
231 if (xen_vector >= 0) in xen_send_IPI_all()
232 __xen_send_IPI_mask(cpu_online_mask, xen_vector); in xen_send_IPI_all()
237 int xen_vector = xen_map_vector(vector); in xen_send_IPI_self() local
239 if (xen_vector >= 0) in xen_send_IPI_self()
240 xen_send_IPI_one(smp_processor_id(), xen_vector); in xen_send_IPI_self()
248 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask_allbutself() local
250 if (!(num_online_cpus() > 1) || (xen_vector < 0)) in xen_send_IPI_mask_allbutself()
257 xen_send_IPI_one(cpu, xen_vector); in xen_send_IPI_mask_allbutself()