Lines Matching refs:xen_vector
623 int xen_vector; in xen_map_vector() local
627 xen_vector = XEN_RESCHEDULE_VECTOR; in xen_map_vector()
630 xen_vector = XEN_CALL_FUNCTION_VECTOR; in xen_map_vector()
633 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR; in xen_map_vector()
636 xen_vector = XEN_IRQ_WORK_VECTOR; in xen_map_vector()
641 xen_vector = XEN_NMI_VECTOR; in xen_map_vector()
645 xen_vector = -1; in xen_map_vector()
650 return xen_vector; in xen_map_vector()
656 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask() local
658 if (xen_vector >= 0) in xen_send_IPI_mask()
659 __xen_send_IPI_mask(mask, xen_vector); in xen_send_IPI_mask()
664 int xen_vector = xen_map_vector(vector); in xen_send_IPI_all() local
666 if (xen_vector >= 0) in xen_send_IPI_all()
667 __xen_send_IPI_mask(cpu_online_mask, xen_vector); in xen_send_IPI_all()
672 int xen_vector = xen_map_vector(vector); in xen_send_IPI_self() local
674 if (xen_vector >= 0) in xen_send_IPI_self()
675 xen_send_IPI_one(smp_processor_id(), xen_vector); in xen_send_IPI_self()
683 int xen_vector = xen_map_vector(vector); in xen_send_IPI_mask_allbutself() local
685 if (!(num_online_cpus() > 1) || (xen_vector < 0)) in xen_send_IPI_mask_allbutself()
692 xen_send_IPI_one(cpu, xen_vector); in xen_send_IPI_mask_allbutself()