From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Morton Date: Tue, 08 May 2007 20:34:30 +0000 Subject: Re: [PATCH Resend] - SN: validate smp_affinity mask on intr Message-Id: <20070508133430.f5eef0c1.akpm@linux-foundation.org> List-Id: References: <20070508121945.3e8d29c1.akpm@linux-foundation.org> <617E1C2C70743745A92448908E030B2A01719BB8@scsmsx411.amr.corp.intel.com> In-Reply-To: <617E1C2C70743745A92448908E030B2A01719BB8@scsmsx411.amr.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: "Luck, Tony" , Paul Jackson Cc: John Keller , linux-kernel@vger.kernel.org, steiner@sgi.com, linux-ia64@vger.kernel.org On Tue, 8 May 2007 13:14:26 -0700 "Luck, Tony" wrote: > > It had a dopey little bug: > > > > -#define is_affinity_mask_valid() 1 > > +#define is_affinity_mask_valid(val) 1 > > That would fix warnings on non-ia64 systems (which is > a step in the right direction). But on ia64 I have > the > > #define is_affinity_mask_valid is_affinity_mask_valid > > in play at that point, so I have a real function call > which doesn't have an in-scope declaration, so I get: > > kernel/irq/proc.c:49: warning: implicit declaration of function `is_affinity_mask_valid' > hm, I wonder if John sent the right patch. The obvious fix fixes it up for me: --- a/include/asm-ia64/irq.h~sn-validate-smp_affinity-mask-on-intr-redirect-fix-2 +++ a/include/asm-ia64/irq.h @@ -11,6 +11,9 @@ * 02/29/00 D.Mosberger moved most things into hw_irq.h */ +#include +#include + #define NR_IRQS 256 #define NR_IRQ_VECTORS NR_IRQS @@ -29,6 +32,7 @@ extern void disable_irq (unsigned int); extern void disable_irq_nosync (unsigned int); extern void enable_irq (unsigned int); extern void set_irq_affinity_info (unsigned int irq, int dest, int redir); +bool is_affinity_mask_valid(cpumask_t cpumask); #define is_affinity_mask_valid is_affinity_mask_valid _ but the new includes are always a worry. We need the cpumask.h include because we went and created a stupid typedef. I think at the time we did this because cpumask_t could optionally be a plain old "long". However I don't think we ended up doing that so we could now do: -typedef struct { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; +typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; and then we can forward-declare `struct cpumask' in include/asm-ia64/irq.h rather than adding the nested include.