Messages in this thread |  | | From | "Takeo Saito" <> | Subject | Re: 2.4.9-ac18: __cpu_raise_softirq constantly redefined | Date | Sun, 30 Sep 2001 14:50:06 +0800 |
| |
Hello,
You can remove this define on interrupt.h, because the define on ac-17 is bellow: ----------------------------------------------------------------------- #ifndef __cpu_raise_softirq #define __cpu_raise_softirq(cpu, nr) \ do { softirq_pending(cpu) |= 1UL << (nr); } while (0) #endif -----------------------------------------------------------------------
but on ac-18 is bellow: ----------------------------------------------------------------------- #define __cpu_raise_softirq(cpu, nr) do { softirq_pending(cpu) |= 1UL << (nr); } while (0) -----------------------------------------------------------------------
Best Regrads, --- Takeo Tung (Takeo Saito)
----- Original Message ----- From: "Frank Davis" <fdavis@si.rr.com> To: <linux-kernel@vger.kernel.org> Cc: <alan@lxorguk.ukuu.org.uk> Sent: Sunday, September 30, 2001 11:36 AM Subject: 2.4.9-ac18: __cpu_raise_softirq constantly redefined
> Hello, > While building 2.4.9-ac18, I constantly received the warning that ' > __cpu_raise_softirq redefined'. I didn't notice the warning while > building 2.4.9-ac17. > > gcc version 2.91.66 > > Regards, > Frank > > - > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ >
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |