Lines Matching refs:xen_vector
596 int xen_vector; in xen_map_vector() local
600 xen_vector = XEN_RESCHEDULE_VECTOR; in xen_map_vector()
603 xen_vector = XEN_CALL_FUNCTION_VECTOR; in xen_map_vector()
606 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR; in xen_map_vector()
609 xen_vector = XEN_IRQ_WORK_VECTOR; in xen_map_vector()
614 xen_vector = XEN_NMI_VECTOR; in xen_map_vector()
618 xen_vector = -1; in xen_map_vector()
623 return xen_vector; in xen_map_vector()
629 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask() local
631 if (xen_vector >= 0) in xen_send_IPI_mask()
632 __xen_send_IPI_mask(mask, xen_vector); in xen_send_IPI_mask()
637 int xen_vector = xen_map_vector(vector); in xen_send_IPI_all() local
639 if (xen_vector >= 0) in xen_send_IPI_all()
640 __xen_send_IPI_mask(cpu_online_mask, xen_vector); in xen_send_IPI_all()
645 int xen_vector = xen_map_vector(vector); in xen_send_IPI_self() local
647 if (xen_vector >= 0) in xen_send_IPI_self()
648 xen_send_IPI_one(smp_processor_id(), xen_vector); in xen_send_IPI_self()
656 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask_allbutself() local
658 if (!(num_online_cpus() > 1) || (xen_vector < 0)) in xen_send_IPI_mask_allbutself()
665 xen_send_IPI_one(cpu, xen_vector); in xen_send_IPI_mask_allbutself()