mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
xen-netback: Remove __GFP_COLD
This flag is unnecessary, it came from some old code. Suggested-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: Zoltan Kiss <zoltan.kiss@linaro.org> Signed-off-by: David Vrabel <david.vrabel@citrix.com> Acked-by: Wei Liu <wei.liu2@citrix.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8fe78989c3
commit
44cc8ed17e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user