The current (well, 2 hours ago) kernel has a bug in the isdn driver for
hisax (wtf is that?). Configure HISAX out for now.
[alane@wwweasel hisax]$ cd /usr/src/linux-2.4.7/drivers/isdn/hisax/
[alane@wwweasel hisax]$ grep jiftime *.c
config.c:jiftime(char *s, long mark)
config.c: p += jiftime(p, jiffies);
q931.c: dp += jiftime(dp, jiffies);
see, jiftime is global. that's cool.
[alane@wwweasel alane]$ cd rpm/BUILD/kernel-2.4.7/linux/drivers/isdn/hisax/
[alane@wwweasel hisax]$ grep jiftime *c
config.c:static inline int jiftime(char *s, long mark)
config.c: p += jiftime(p, jiffies);
q931.c: dp += jiftime(dp, jiffies);
oops, jiftime is now static and what? q931.c wants to call it? houston, we
have problem...
--
Alan Eldridge
from std_disclaimer import *
|