aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/genapic_flat_64.c
diff options
context:
space:
mode:
authorSuresh Siddha <suresh.b.siddha@intel.com>2008-07-10 14:16:53 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-12 02:45:02 -0400
commitcff73a6ffaed726780b001937d2a42efde553922 (patch)
treea1fcc056d756d02e8a19abd4eb9db426f8e30d1d /arch/x86/kernel/genapic_flat_64.c
parent13c88fb58d0112d47f7839f24a755715c6218822 (diff)
x64, x2apic/intr-remap: introcude self IPI to genapic routines
Introduce self IPI op for genapic. Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com> Cc: akpm@linux-foundation.org Cc: arjan@linux.intel.com Cc: andi@firstfloor.org Cc: ebiederm@xmission.com Cc: jbarnes@virtuousgeek.org Cc: steiner@sgi.com Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/genapic_flat_64.c')
-rw-r--r--arch/x86/kernel/genapic_flat_64.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/genapic_flat_64.c b/arch/x86/kernel/genapic_flat_64.c
index 400ed8df8b4e..735586822135 100644
--- a/arch/x86/kernel/genapic_flat_64.c
+++ b/arch/x86/kernel/genapic_flat_64.c
@@ -131,6 +131,7 @@ struct genapic apic_flat = {
131 .send_IPI_all = flat_send_IPI_all, 131 .send_IPI_all = flat_send_IPI_all,
132 .send_IPI_allbutself = flat_send_IPI_allbutself, 132 .send_IPI_allbutself = flat_send_IPI_allbutself,
133 .send_IPI_mask = flat_send_IPI_mask, 133 .send_IPI_mask = flat_send_IPI_mask,
134 .send_IPI_self = apic_send_IPI_self,
134 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid, 135 .cpu_mask_to_apicid = flat_cpu_mask_to_apicid,
135 .phys_pkg_id = phys_pkg_id, 136 .phys_pkg_id = phys_pkg_id,
136 .read_apic_id = read_xapic_id, 137 .read_apic_id = read_xapic_id,
@@ -196,6 +197,7 @@ struct genapic apic_physflat = {
196 .send_IPI_all = physflat_send_IPI_all, 197 .send_IPI_all = physflat_send_IPI_all,
197 .send_IPI_allbutself = physflat_send_IPI_allbutself, 198 .send_IPI_allbutself = physflat_send_IPI_allbutself,
198 .send_IPI_mask = physflat_send_IPI_mask, 199 .send_IPI_mask = physflat_send_IPI_mask,
200 .send_IPI_self = apic_send_IPI_self,
199 .cpu_mask_to_apicid = physflat_cpu_mask_to_apicid, 201 .cpu_mask_to_apicid = physflat_cpu_mask_to_apicid,
200 .phys_pkg_id = phys_pkg_id, 202 .phys_pkg_id = phys_pkg_id,
201 .read_apic_id = read_xapic_id, 203 .read_apic_id = read_xapic_id,