patch-1.3.7 linux/drivers/net/at1700.c
Next file: linux/drivers/net/de4x5.c
Previous file: linux/drivers/net/arcnet.c
Back to the patch index
Back to the overall index
- Lines: 19
- Date:
Wed Jul 5 13:06:26 1995
- Orig file:
v1.3.6/linux/drivers/net/at1700.c
- Orig date:
Fri Jun 30 16:22:26 1995
diff -u --recursive --new-file v1.3.6/linux/drivers/net/at1700.c linux/drivers/net/at1700.c
@@ -527,7 +527,7 @@
lp->stats.rx_errors++;
break;
}
- skb = dev_alloc_skb(pkt_len+1);
+ skb = dev_alloc_skb(pkt_len+3);
if (skb == NULL) {
printk("%s: Memory squeeze, dropping packet (len %d).\n",
dev->name, pkt_len);
@@ -537,8 +537,8 @@
lp->stats.rx_dropped++;
break;
}
- skb->len = pkt_len;
skb->dev = dev;
+ skb_reserve(skb,2);
insw(ioaddr + DATAPORT, skb_put(skb,pkt_len), (pkt_len + 1) >> 1);
skb->protocol=eth_type_trans(skb, dev);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this