summaryrefslogtreecommitdiff
path: root/target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-09 10:48:44 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-09 10:48:44 +0000
commit500ec3651583507c92f60867c106687fdf133c1e (patch)
treec5a6504d867313236aae1ecf2b65961b1eb73782 /target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch
parentd25a4e7ddc3c5ce61391dd4eed79f14b3c683a51 (diff)
downloadmtk-20170518-500ec3651583507c92f60867c106687fdf133c1e.zip
mtk-20170518-500ec3651583507c92f60867c106687fdf133c1e.tar.gz
mtk-20170518-500ec3651583507c92f60867c106687fdf133c1e.tar.bz2
ixp4xx: nuke 2.6.37 support
SVN-Revision: 31663
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch')
-rw-r--r--target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch b/target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch
deleted file mode 100644
index 5b0e3fd..0000000
--- a/target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/net/core/skbuff.c
-+++ b/net/core/skbuff.c
-@@ -183,6 +183,10 @@ struct sk_buff *__alloc_skb(unsigned int
- goto out;
- prefetchw(skb);
-
-+#ifdef CONFIG_ARCH_IXP4XX
-+ gfp_mask |= GFP_DMA;
-+#endif
-+
- size = SKB_DATA_ALIGN(size);
- data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
- gfp_mask, node);