diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-10-24 13:23:20 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-10-24 13:23:20 +0000 |
commit | b7494455f22fb9c9f2822f3389cdd3709a80389c (patch) | |
tree | 81d9a2fd13dad83bac667449797707dd7da72fd0 /target/linux/generic | |
parent | dcde44e37ed89b02bf98c89c9d20eb7097e21707 (diff) | |
download | upstream-b7494455f22fb9c9f2822f3389cdd3709a80389c.tar.gz upstream-b7494455f22fb9c9f2822f3389cdd3709a80389c.tar.bz2 upstream-b7494455f22fb9c9f2822f3389cdd3709a80389c.zip |
[kernel] fix IFF_NO_IP_ALIGN bitmask to contain only 1 bit set
This issue got introduced while porting the patch over 3.6 in r33897
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33913 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-rw-r--r-- | target/linux/generic/patches-3.6/721-phy_packets.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-3.6/721-phy_packets.patch b/target/linux/generic/patches-3.6/721-phy_packets.patch index c99e64e243..e8578de57a 100644 --- a/target/linux/generic/patches-3.6/721-phy_packets.patch +++ b/target/linux/generic/patches-3.6/721-phy_packets.patch @@ -28,7 +28,7 @@ #define IFF_SUPP_NOFCS 0x80000 /* device supports sending custom FCS */ #define IFF_LIVE_ADDR_CHANGE 0x100000 /* device supports hardware address * change when it's running */ -+#define IFF_NO_IP_ALIGN 0x120000 /* do not ip-align allocated rx pkts */ ++#define IFF_NO_IP_ALIGN 0x200000 /* do not ip-align allocated rx pkts */ #define IF_GET_IFACE 0x0001 /* for querying only */ |