xen-netback: Remove __GFP_COLD
authorZoltan Kiss <[email protected]>
Tue, 28 Oct 2014 15:29:31 +0000 (15:29 +0000)
committerDavid S. Miller <[email protected]>
Wed, 29 Oct 2014 19:59:37 +0000 (15:59 -0400)
This flag is unnecessary, it came from some old code.

Suggested-by: Eric Dumazet <[email protected]>
Signed-off-by: Zoltan Kiss <[email protected]>
Signed-off-by: David Vrabel <[email protected]>
Acked-by: Wei Liu <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/xen-netback/netback.c

index 08f65996534cbd1b861c0031b70ebd6d78d47720..85fec0fb4ec2347f03d52a3a40d1c8c37947812f 100644 (file)
@@ -1494,7 +1494,7 @@ static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *s
                unsigned int len;
 
                BUG_ON(i >= MAX_SKB_FRAGS);
-               page = alloc_page(GFP_ATOMIC|__GFP_COLD);
+               page = alloc_page(GFP_ATOMIC);
                if (!page) {
                        int j;
                        skb->truesize += skb->data_len;