026c717c78fae9398e83b16bc6f416e5baa22b96
[openwrt/staging/chunkeey.git] / target / linux / ixp4xx / patches-2.6.33 / 600-skb_avoid_dmabounce.patch
1 --- a/net/core/skbuff.c
2 +++ b/net/core/skbuff.c
3 @@ -264,6 +264,10 @@ struct sk_buff *__alloc_skb(unsigned int
4 if (!skb)
5 goto out;
6
7 +#ifdef CONFIG_ARCH_IXP4XX
8 + gfp_mask |= GFP_DMA;
9 +#endif
10 +
11 size = SKB_DATA_ALIGN(size);
12 data = kmalloc_node_track_caller(size + sizeof(struct skb_shared_info),
13 gfp_mask, node);