module if_disc.ko - network module

2000-08-11 Thread Emmanuel Duros
if it is possible to make this driver a loadable module. Assuming that the board is in on PCI bus, supports DMA bus mastering, may transfer data up to 40Mbps. Any idea, pointers ? What should I pay attention to, what are the limits... ? Thanks in advance, Emmanuel Duros -- UDcast: Where IP and

RE: FreeBSD 3.2 - new ifnet structure

1999-05-28 Thread Emmanuel Duros
> [ML] I don't have the source in front of me, but I think it >uses queue.h macros now so that the definition probably looks like > typedef LIST_HEAD( something, ifnet ) ifnethead; > > where LIST could also be TAILQ, CIRCQ, or something else (the >AIX version of sys/queue

FreeBSD 3.2 - new ifnet structure

1999-05-28 Thread Emmanuel Duros
The last FreeBSD release provides a new ifnet structure different from the one in 2.x-R. In 2.x-R we can have this code: { struct ifnet *ifp = ifnet; /* go through the ifnet list */ for ( ifp = ifnet; ifp; ifp = ifp->if_next) ... } What is it in 3.x-R assuming that the global variable ifnet is