mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
cns3xxx: prevent the ethernet driver from accessing uninitialized dma descriptor entries
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35950 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -619,8 +619,9 @@ static int eth_poll(struct napi_struct *napi, int budget)
|
||||
unsigned int length;
|
||||
unsigned int i = rx_ring->cur_index;
|
||||
struct rx_desc *desc = &(rx_ring)->desc[i];
|
||||
unsigned int alloc_count = rx_ring->alloc_count;
|
||||
|
||||
while (desc->cown) {
|
||||
while (desc->cown && alloc_count + received < RX_DESCS - 1) {
|
||||
struct sk_buff *skb;
|
||||
int reserve = SKB_HEAD_ALIGN;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user