diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2014-01-04 18:25:05 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2014-01-04 18:25:05 +0000 |
commit | 5a55ace3b841895d93a6dd7f649e37f35bd2d8d3 (patch) | |
tree | 031f591f1409112e1c8523e471fb79983e3e581d /target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch | |
parent | 815ceabd9dbbae62b30edad7b9e2923d6624fdfb (diff) | |
download | mtk-20170518-5a55ace3b841895d93a6dd7f649e37f35bd2d8d3.zip mtk-20170518-5a55ace3b841895d93a6dd7f649e37f35bd2d8d3.tar.gz mtk-20170518-5a55ace3b841895d93a6dd7f649e37f35bd2d8d3.tar.bz2 |
kernel: bgmac: update the driver patches to a version submitted for mainline kernel.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39201
Diffstat (limited to 'target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch')
-rw-r--r-- | target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch b/target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch index 3b818be..f708e7d 100644 --- a/target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch +++ b/target/linux/generic/patches-3.10/775-bgmac-check-length-of-received-frame.patch @@ -9,7 +9,7 @@ Subject: [PATCH] bgmac: check length of received frame --- a/drivers/net/ethernet/broadcom/bgmac.c +++ b/drivers/net/ethernet/broadcom/bgmac.c -@@ -347,6 +347,7 @@ static int bgmac_dma_rx_read(struct bgma +@@ -349,6 +349,7 @@ static int bgmac_dma_rx_read(struct bgma struct sk_buff *skb = slot->skb; struct bgmac_rx_header *rx; u16 len, flags; @@ -17,7 +17,7 @@ Subject: [PATCH] bgmac: check length of received frame /* Unmap buffer to make it accessible to the CPU */ dma_sync_single_for_cpu(dma_dev, slot->dma_addr, -@@ -355,6 +356,12 @@ static int bgmac_dma_rx_read(struct bgma +@@ -357,6 +358,12 @@ static int bgmac_dma_rx_read(struct bgma /* Get info from the header */ rx = (struct bgmac_rx_header *)skb->data; len = le16_to_cpu(rx->len); @@ -30,7 +30,7 @@ Subject: [PATCH] bgmac: check length of received frame flags = le16_to_cpu(rx->flags); do { -@@ -362,7 +369,7 @@ static int bgmac_dma_rx_read(struct bgma +@@ -364,7 +371,7 @@ static int bgmac_dma_rx_read(struct bgma int err; /* Check for poison and drop or pass the packet */ |