lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 12 Dec 2007 14:01:50 -0800 From: Stephen Hemminger <shemminger@...ux-foundation.org> To: Eugene Konev <ejka@...i.kspu.ru>, Jeff Garzik <jgarzik@...ox.com>, "David S. Miller" <davem@...emloft.net> Cc: netdev@...r.kernel.org Subject: [RFT] cpmac: napi fix The NAPI changes for 2.6.24 would break this driver. It doesn't return correct value and has error if exactly "budget" packets are received. Don't have ARM so this is by inspection only. Please test. --- a/drivers/net/cpmac.c 2007-10-26 11:56:12.000000000 -0700 +++ b/drivers/net/cpmac.c 2007-12-12 13:48:40.000000000 -0800 @@ -439,14 +439,14 @@ static int cpmac_poll(struct napi_struct if (unlikely(netif_msg_rx_status(priv))) printk(KERN_DEBUG "%s: poll processed %d packets\n", priv->dev->name, received); - if (desc->dataflags & CPMAC_OWN) { + + if (received < budget) { netif_rx_complete(priv->dev, napi); cpmac_write(priv->regs, CPMAC_RX_PTR(0), (u32)desc->mapping); cpmac_write(priv->regs, CPMAC_RX_INT_ENABLE, 1); - return 0; } - return 1; + return received; } static int cpmac_start_xmit(struct sk_buff *skb, struct net_device *dev) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists