patch-2.4.21 linux-2.4.21/drivers/net/eepro.c
Next file: linux-2.4.21/drivers/net/eepro100.c
Previous file: linux-2.4.21/drivers/net/e2100.c
Back to the patch index
Back to the overall index
- Lines: 26
- Date:
2003-06-13 07:51:34.000000000 -0700
- Orig file:
linux-2.4.20/drivers/net/eepro.c
- Orig date:
2002-11-28 15:53:13.000000000 -0800
diff -urN linux-2.4.20/drivers/net/eepro.c linux-2.4.21/drivers/net/eepro.c
@@ -1128,17 +1128,24 @@
struct eepro_local *lp = (struct eepro_local *)dev->priv;
unsigned long flags;
int ioaddr = dev->base_addr;
+ short length = skb->len;
if (net_debug > 5)
printk(KERN_DEBUG "%s: entering eepro_send_packet routine.\n", dev->name);
+ if(length < ETH_ZLEN)
+ {
+ skb = skb_padto(skb, ETH_ZLEN);
+ if(skb == NULL)
+ return 0;
+ length = ETH_ZLEN;
+ }
netif_stop_queue (dev);
eepro_dis_int(ioaddr);
spin_lock_irqsave(&lp->lock, flags);
{
- short length = ETH_ZLEN < skb->len ? skb->len : ETH_ZLEN;
unsigned char *buf = skb->data;
if (hardware_send_packet(dev, buf, length))
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)