diff options
| author | Dave Hansen <dave.hansen@linux.intel.com> | 2023-08-09 08:21:45 -0700 |
|---|---|---|
| committer | Dave Hansen <dave.hansen@linux.intel.com> | 2023-08-09 12:00:55 -0700 |
| commit | 28b8235238fa39a1b5c5820e7f5b14e7f104aac0 (patch) | |
| tree | c5159d7fe8a080a941f4da64969838337ae1f0c8 /arch/x86/kernel/nmi_selftest.c | |
| parent | 54271fb0b78511048aa7910d593994f2ca055e68 (diff) | |
| download | linux-28b8235238fa39a1b5c5820e7f5b14e7f104aac0.tar.gz linux-28b8235238fa39a1b5c5820e7f5b14e7f104aac0.tar.bz2 linux-28b8235238fa39a1b5c5820e7f5b14e7f104aac0.zip | |
x86/apic: Wrap IPI calls into helper functions
Move them to one place so the static call conversion gets simpler.
No functional change.
[ dhansen: merge against recent x86/apic changes ]
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: Michael Kelley <mikelley@microsoft.com>
Tested-by: Sohil Mehta <sohil.mehta@intel.com>
Tested-by: Juergen Gross <jgross@suse.com> # Xen PV (dom0 and unpriv. guest)
Diffstat (limited to 'arch/x86/kernel/nmi_selftest.c')
| -rw-r--r-- | arch/x86/kernel/nmi_selftest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/nmi_selftest.c b/arch/x86/kernel/nmi_selftest.c index a1a96df3dff1..e93a8545c74d 100644 --- a/arch/x86/kernel/nmi_selftest.c +++ b/arch/x86/kernel/nmi_selftest.c @@ -75,7 +75,7 @@ static void __init test_nmi_ipi(struct cpumask *mask) /* sync above data before sending NMI */ wmb(); - apic->send_IPI_mask(mask, NMI_VECTOR); + __apic_send_IPI_mask(mask, NMI_VECTOR); /* Don't wait longer than a second */ timeout = USEC_PER_SEC; |
