From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1032986AbbKEOqt (ORCPT ); Thu, 5 Nov 2015 09:46:49 -0500 Received: from terminus.zytor.com ([198.137.202.10]:34665 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030728AbbKEOqr (ORCPT ); Thu, 5 Nov 2015 09:46:47 -0500 Date: Thu, 5 Nov 2015 06:46:12 -0800 From: tip-bot for Thomas Gleixner Message-ID: Cc: mingo@kernel.org, peterz@infradead.org, torvalds@linux-foundation.org, hpa@zytor.com, linux-kernel@vger.kernel.org, travis@sgi.com, bp@alien.de, daniel@numascale.com, tglx@linutronix.de Reply-To: mingo@kernel.org, tglx@linutronix.de, daniel@numascale.com, hpa@zytor.com, torvalds@linux-foundation.org, peterz@infradead.org, travis@sgi.com, bp@alien.de, linux-kernel@vger.kernel.org In-Reply-To: <20151104220849.455429817@linutronix.de> References: <20151104220849.455429817@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] x86/apic: Implement single IPI for apic_noop Git-Commit-ID: 4727da2eb1ec79fdc2acdd2f764b5b2aacab998c X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 4727da2eb1ec79fdc2acdd2f764b5b2aacab998c Gitweb: http://git.kernel.org/tip/4727da2eb1ec79fdc2acdd2f764b5b2aacab998c Author: Thomas Gleixner AuthorDate: Wed, 4 Nov 2015 22:57:06 +0000 Committer: Thomas Gleixner CommitDate: Thu, 5 Nov 2015 13:07:53 +0100 x86/apic: Implement single IPI for apic_noop Signed-off-by: Thomas Gleixner Reviewed-by: Ingo Molnar Cc: Linus Torvalds Cc: Borislav Petkov Cc: Peter Zijlstra Cc: Mike Travis Cc: Daniel J Blueman Link: http://lkml.kernel.org/r/20151104220849.455429817@linutronix.de --- arch/x86/kernel/apic/apic_noop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/kernel/apic/apic_noop.c b/arch/x86/kernel/apic/apic_noop.c index 0d96749..331a7a0 100644 --- a/arch/x86/kernel/apic/apic_noop.c +++ b/arch/x86/kernel/apic/apic_noop.c @@ -30,6 +30,7 @@ #include static void noop_init_apic_ldr(void) { } +static void noop_send_IPI(int cpu, int vector) { } static void noop_send_IPI_mask(const struct cpumask *cpumask, int vector) { } static void noop_send_IPI_mask_allbutself(const struct cpumask *cpumask, int vector) { } static void noop_send_IPI_allbutself(int vector) { } @@ -144,6 +145,7 @@ struct apic apic_noop = { .cpu_mask_to_apicid_and = flat_cpu_mask_to_apicid_and, + .send_IPI = noop_send_IPI, .send_IPI_mask = noop_send_IPI_mask, .send_IPI_mask_allbutself = noop_send_IPI_mask_allbutself, .send_IPI_allbutself = noop_send_IPI_allbutself,