apic.c (0337966d121ebebf73a1c346123e8112796e684e) | apic.c (91cd9cb7ee1c081304d0e61f09e9faccb33d3df7) |
---|---|
1#include <linux/init.h> 2 3#include <asm/x86_init.h> 4#include <asm/apic.h> 5#include <asm/xen/hypercall.h> 6 7#include <xen/xen.h> 8#include <xen/interface/physdev.h> --- 164 unchanged lines hidden (view full) --- 173 .cpu_present_to_apicid = xen_cpu_present_to_apicid, 174 .apicid_to_cpu_present = physid_set_mask_of_physid, /* Used on 32-bit */ 175 .check_phys_apicid_present = default_check_phys_apicid_present, /* smp_sanity_check needs it */ 176 .phys_pkg_id = xen_phys_pkg_id, /* detect_ht */ 177 178 .get_apic_id = xen_get_apic_id, 179 .set_apic_id = xen_set_apic_id, /* Can be NULL on 32-bit. */ 180 | 1#include <linux/init.h> 2 3#include <asm/x86_init.h> 4#include <asm/apic.h> 5#include <asm/xen/hypercall.h> 6 7#include <xen/xen.h> 8#include <xen/interface/physdev.h> --- 164 unchanged lines hidden (view full) --- 173 .cpu_present_to_apicid = xen_cpu_present_to_apicid, 174 .apicid_to_cpu_present = physid_set_mask_of_physid, /* Used on 32-bit */ 175 .check_phys_apicid_present = default_check_phys_apicid_present, /* smp_sanity_check needs it */ 176 .phys_pkg_id = xen_phys_pkg_id, /* detect_ht */ 177 178 .get_apic_id = xen_get_apic_id, 179 .set_apic_id = xen_set_apic_id, /* Can be NULL on 32-bit. */ 180 |
181 .cpu_mask_to_apicid_and = flat_cpu_mask_to_apicid_and, | 181 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid, |
182 183#ifdef CONFIG_SMP 184 .send_IPI_mask = xen_send_IPI_mask, 185 .send_IPI_mask_allbutself = xen_send_IPI_mask_allbutself, 186 .send_IPI_allbutself = xen_send_IPI_allbutself, 187 .send_IPI_all = xen_send_IPI_all, 188 .send_IPI_self = xen_send_IPI_self, 189#endif --- 38 unchanged lines hidden --- | 182 183#ifdef CONFIG_SMP 184 .send_IPI_mask = xen_send_IPI_mask, 185 .send_IPI_mask_allbutself = xen_send_IPI_mask_allbutself, 186 .send_IPI_allbutself = xen_send_IPI_allbutself, 187 .send_IPI_all = xen_send_IPI_all, 188 .send_IPI_self = xen_send_IPI_self, 189#endif --- 38 unchanged lines hidden --- |