1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 16:48:11 +03:00

[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
This commit is contained in:
florian 2012-10-24 13:23:20 +00:00
parent eb0c020062
commit 04a4114eac

View File

@ -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 */