apic.c (c1d1ee9ac1793d939ba1a1322767cc5f77a5b8fe) apic.c (9f9e3bb1cf2ecba7697bfb5e350ad2648e69dbdf)
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 .apicid_to_cpu_present = physid_set_mask_of_physid, /* Used on 32-bit */
174 .check_phys_apicid_present = default_check_phys_apicid_present, /* smp_sanity_check needs it */
175 .phys_pkg_id = xen_phys_pkg_id, /* detect_ht */
176
177 .get_apic_id = xen_get_apic_id,
178 .set_apic_id = xen_set_apic_id, /* Can be NULL on 32-bit. */
179
180 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid,
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 .apicid_to_cpu_present = physid_set_mask_of_physid, /* Used on 32-bit */
174 .check_phys_apicid_present = default_check_phys_apicid_present, /* smp_sanity_check needs it */
175 .phys_pkg_id = xen_phys_pkg_id, /* detect_ht */
176
177 .get_apic_id = xen_get_apic_id,
178 .set_apic_id = xen_set_apic_id, /* Can be NULL on 32-bit. */
179
180 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid,
181 .calc_dest_apicid = apic_flat_calc_apicid,
181
182#ifdef CONFIG_SMP
183 .send_IPI_mask = xen_send_IPI_mask,
184 .send_IPI_mask_allbutself = xen_send_IPI_mask_allbutself,
185 .send_IPI_allbutself = xen_send_IPI_allbutself,
186 .send_IPI_all = xen_send_IPI_all,
187 .send_IPI_self = xen_send_IPI_self,
188#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 ---