1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 17:10:14 +03:00
openwrt-xburst/target/linux/ixp4xx/patches-2.6.37/600-skb_avoid_dmabounce.patch
acoul bb1657ec55 linux/ixp4xx: add preliminary 2.6.37 kernel support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23964 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-11-11 18:42:38 +00:00

14 lines
330 B
Diff

--- 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);