From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1034103AbbKEGqO (ORCPT ); Thu, 5 Nov 2015 01:46:14 -0500 Received: from mail-ig0-f180.google.com ([209.85.213.180]:36232 "EHLO mail-ig0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1034074AbbKEGqD (ORCPT ); Thu, 5 Nov 2015 01:46:03 -0500 MIME-Version: 1.0 In-Reply-To: <20151105063813.GA12730@gmail.com> References: <20151104215716.810356093@linutronix.de> <20151104220848.817975597@linutronix.de> <20151105063813.GA12730@gmail.com> Date: Wed, 4 Nov 2015 22:46:01 -0800 X-Google-Sender-Auth: VlPd57WxXB13E3SNdX2c6aFCxko Message-ID: Subject: Re: [patch 02/14] x86/apic: Implement single target IPI function for x2apic_cluster From: Linus Torvalds To: Ingo Molnar Cc: Thomas Gleixner , LKML , Peter Anvin , Borislav Petkov , Peter Zijlstra , Mike Travis , Daniel J Blueman Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 4, 2015 at 10:38 PM, Ingo Molnar wrote: > > but in the above sequence I think we can do even better: we don't need the > local_irq_save()/restore() I think. Right. Thomas added that one to my patch. I don't think he realized just *how* trivial sending a single IPI is with the x2apic, and just how horribly nasty the mask case is in comparison (and how nasty it is that we historically turn a the single ipi into a mask). Linus