Latest diffs attached ... Manik Raina wrote: > > Manik Raina wrote: > > > > diff -u -r linux-2.5.22/include/asm-ia64/softirq.h real/include/asm-ia64/softirq.h > > --- linux-2.5.22/include/asm-ia64/softirq.h Mon Jun 17 08:01:35 2002 > > +++ real/include/asm-ia64/softirq.h Fri Jun 21 10:44:05 2002 > > @@ -13,7 +13,7 @@ > > #define local_bh_enable() \ > > do { \ > > __local_bh_enable(); \ > > - if (__builtin_expect(local_softirq_pending(), 0) && really_local_bh_count() == 0) \ > > + if (unlikely(local_softirq_pending()) && really_local_bh_count() == 0) \ > > do_softirq(); \ > > } while (0) > > > > I don't think softirq.h includes linux/compiler.h . Can you please include > that ?