Lines Matching refs:xen_vector
167 int xen_vector; in xen_map_vector() local
171 xen_vector = XEN_RESCHEDULE_VECTOR; in xen_map_vector()
174 xen_vector = XEN_CALL_FUNCTION_VECTOR; in xen_map_vector()
177 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR; in xen_map_vector()
180 xen_vector = XEN_IRQ_WORK_VECTOR; in xen_map_vector()
185 xen_vector = XEN_NMI_VECTOR; in xen_map_vector()
189 xen_vector = -1; in xen_map_vector()
194 return xen_vector; in xen_map_vector()
200 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask() local
202 if (xen_vector >= 0) in xen_send_IPI_mask()
203 __xen_send_IPI_mask(mask, xen_vector); in xen_send_IPI_mask()
208 int xen_vector = xen_map_vector(vector); in xen_send_IPI_all() local
210 if (xen_vector >= 0) in xen_send_IPI_all()
211 __xen_send_IPI_mask(cpu_online_mask, xen_vector); in xen_send_IPI_all()
216 int xen_vector = xen_map_vector(vector); in xen_send_IPI_self() local
218 if (xen_vector >= 0) in xen_send_IPI_self()
219 xen_send_IPI_one(smp_processor_id(), xen_vector); in xen_send_IPI_self()
227 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask_allbutself() local
229 if (!(num_online_cpus() > 1) || (xen_vector < 0)) in xen_send_IPI_mask_allbutself()
236 xen_send_IPI_one(cpu, xen_vector); in xen_send_IPI_mask_allbutself()