From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753934AbbJNOuc (ORCPT ); Wed, 14 Oct 2015 10:50:32 -0400 Received: from mx2.suse.de ([195.135.220.15]:35591 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753106AbbJNOub (ORCPT ); Wed, 14 Oct 2015 10:50:31 -0400 Date: Wed, 14 Oct 2015 07:50:17 -0700 From: Davidlohr Bueso To: Qais Yousef Cc: linux-kernel@vger.kernel.org, tglx@linutronix.de, jason@lakedaemon.net, marc.zyngier@arm.com, jiang.liu@linux.intel.com, ralf@linux-mips.org, linux-mips@linux-mips.org Subject: Re: [RFC v2 PATCH 05/14] irq: add struct ipi_mask to irq_data Message-ID: <20151014145017.GE3052@linux-uzut.site> References: <1444731382-19313-1-git-send-email-qais.yousef@imgtec.com> <1444731382-19313-6-git-send-email-qais.yousef@imgtec.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <1444731382-19313-6-git-send-email-qais.yousef@imgtec.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 13 Oct 2015, Qais Yousef wrote: >It has a similar role to affinity mask, but tracks the IPI affinity instead. > >Signed-off-by: Qais Yousef >--- > include/linux/irq.h | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/include/linux/irq.h b/include/linux/irq.h >index 504133671985..b000b217ea24 100644 >--- a/include/linux/irq.h >+++ b/include/linux/irq.h >@@ -157,6 +157,7 @@ struct irq_common_data { > void *handler_data; > struct msi_desc *msi_desc; > cpumask_var_t affinity; >+ struct ipi_mask ipi_mask; > }; This should be folded into patch 3, no?