diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-22 15:01:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-22 15:01:36 +0000 |
commit | a8a01b42ae36ce4d04b73802b2b8a347d3ee6ac3 (patch) | |
tree | efbf4b9f72a4285e207c7648357773ce49dc62cc /target/linux/generic/patches-3.3 | |
parent | f99a208b4fc439044160b1e3525c2cfa3fdc1fb8 (diff) | |
download | mtk-20170518-a8a01b42ae36ce4d04b73802b2b8a347d3ee6ac3.zip mtk-20170518-a8a01b42ae36ce4d04b73802b2b8a347d3ee6ac3.tar.gz mtk-20170518-a8a01b42ae36ce4d04b73802b2b8a347d3ee6ac3.tar.bz2 |
kernel: allow __netdev_alloc_skb_ip_align to be called with dev = NULL
SVN-Revision: 36378
Diffstat (limited to 'target/linux/generic/patches-3.3')
-rw-r--r-- | target/linux/generic/patches-3.3/721-phy_packets.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-3.3/721-phy_packets.patch b/target/linux/generic/patches-3.3/721-phy_packets.patch index 575fbae..cdb01be 100644 --- a/target/linux/generic/patches-3.3/721-phy_packets.patch +++ b/target/linux/generic/patches-3.3/721-phy_packets.patch @@ -145,7 +145,7 @@ + struct sk_buff *skb = __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp); + +#ifdef CONFIG_ETHERNET_PACKET_MANGLE -+ if (dev->priv_flags & IFF_NO_IP_ALIGN) ++ if (dev && (dev->priv_flags & IFF_NO_IP_ALIGN)) + return skb; +#endif + |