diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-03-06 22:33:30 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-03-06 22:33:30 +0000 |
commit | 876105bf8b0895ac184d0ed9ec3d508cb6759343 (patch) | |
tree | 12603419c882aefd9e84586948e6c443ae93fbda /target/linux | |
parent | ac0b6ee5596fcede180f1c0fcc013e1b73160fb8 (diff) | |
download | upstream-876105bf8b0895ac184d0ed9ec3d508cb6759343.tar.gz upstream-876105bf8b0895ac184d0ed9ec3d508cb6759343.tar.bz2 upstream-876105bf8b0895ac184d0ed9ec3d508cb6759343.zip |
let 802.1q tagged frames go in and out from cpmac (#6730)
SVN-Revision: 20023
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar7/patches-2.6.30/950-cpmac_allow_vlan.patch | 11 | ||||
-rw-r--r-- | target/linux/ar7/patches-2.6.32/960-cpmac_allow_vlan.patch | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/ar7/patches-2.6.30/950-cpmac_allow_vlan.patch b/target/linux/ar7/patches-2.6.30/950-cpmac_allow_vlan.patch new file mode 100644 index 0000000000..022da4fab5 --- /dev/null +++ b/target/linux/ar7/patches-2.6.30/950-cpmac_allow_vlan.patch @@ -0,0 +1,11 @@ +--- a/drivers/net/cpmac.c 2010-02-11 23:52:19.000000000 +0000 ++++ b/drivers/net/cpmac.c 2010-02-20 20:32:58.000000000 +0000 +@@ -57,7 +57,7 @@ + + #define CPMAC_VERSION "0.5.0" + /* frame size + 802.1q tag */ +-#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + 4) ++#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN + 4) + #define CPMAC_QUEUES 8 + + /* Ethernet registers */ diff --git a/target/linux/ar7/patches-2.6.32/960-cpmac_allow_vlan.patch b/target/linux/ar7/patches-2.6.32/960-cpmac_allow_vlan.patch new file mode 100644 index 0000000000..022da4fab5 --- /dev/null +++ b/target/linux/ar7/patches-2.6.32/960-cpmac_allow_vlan.patch @@ -0,0 +1,11 @@ +--- a/drivers/net/cpmac.c 2010-02-11 23:52:19.000000000 +0000 ++++ b/drivers/net/cpmac.c 2010-02-20 20:32:58.000000000 +0000 +@@ -57,7 +57,7 @@ + + #define CPMAC_VERSION "0.5.0" + /* frame size + 802.1q tag */ +-#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + 4) ++#define CPMAC_SKB_SIZE (ETH_FRAME_LEN + ETH_FCS_LEN + 4) + #define CPMAC_QUEUES 8 + + /* Ethernet registers */ |