aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-09-04 22:50:43 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-09-04 22:50:43 +0000
commite465d849718c0b69ed7e00c44844fc0fcd722eb6 (patch)
treee5b8426a3107431ee191e577ff2b370c573ebe15 /target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch
parent64bc2e51fc337c8e2cd33e4781243301a978d02e (diff)
downloadupstream-e465d849718c0b69ed7e00c44844fc0fcd722eb6.tar.gz
upstream-e465d849718c0b69ed7e00c44844fc0fcd722eb6.tar.bz2
upstream-e465d849718c0b69ed7e00c44844fc0fcd722eb6.zip
linux/ixp4xx: revert r22922
SVN-Revision: 22923
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch')
-rw-r--r--target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch b/target/linux/ixp4xx/patches-2.6.36/600-skb_avoid_dmabounce.patch
deleted file mode 100644
index 5b0e3fdb85..0000000000
--- a/target/linux/ixp4xx/patches-2.6.36/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);