20,11 → 20,11 |
|
/** |
------------ |
CVS : $Id: eth.c,v 1.3 2002-11-11 08:41:31 pj Exp $ |
CVS : $Id: eth.c,v 1.4 2003-07-10 07:52:04 pj Exp $ |
|
File: $File$ |
Revision: $Revision: 1.3 $ |
Last update: $Date: 2002-11-11 08:41:31 $ |
Revision: $Revision: 1.4 $ |
Last update: $Date: 2003-07-10 07:52:04 $ |
------------ |
**/ |
|
188,7 → 188,10 |
/* debug... */ |
netlev = 20; |
//cprintf("ETH: releasing %p\n", pkt); |
netbuff_release(&rxbuff, pkt); |
|
// NOTE changed by PJ because skb.data not always point to the |
// buffer start!!!... it is skb.head that always points there! |
netbuff_release(&rxbuff, skb.head); |
/* debug... */ |
netlev = 30; |
} |
404,7 → 407,7 |
task_activate(nettask_pid); |
if (pci_init() == 1) { |
linuxpci_init(); |
// pci_show(); |
pci_show(); |
#ifdef DEBUG_ETH |
printk(KERN_DEBUG "LF %d\n", linux_found); |
#endif |
417,6 → 420,7 |
#ifdef DEBUG_ETH |
printk(KERN_DEBUG "LF %d\n", linux_found); |
#endif |
|
#if 0 |
ndev = pci_scan_bus(pci_devs); |
#ifdef __ETH_DBG__ |