lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1414510171-12853-3-git-send-email-david.vrabel@citrix.com> Date: Tue, 28 Oct 2014 15:29:31 +0000 From: David Vrabel <david.vrabel@...rix.com> To: <netdev@...r.kernel.org> CC: David Vrabel <david.vrabel@...rix.com>, <xen-devel@...ts.xenproject.org>, Ian Campbell <ian.campbell@...rix.com>, Wei Liu <wei.liu2@...rix.com>, "Zoltan Kiss" <zoltan.kiss@...aro.org> Subject: [PATCH 2/2] xen-netback: Remove __GFP_COLD From: Zoltan Kiss <zoltan.kiss@...aro.org> This flag is unnecessary, it came from some old code. Suggested-by: Eric Dumazet <eric.dumazet@...il.com> Signed-off-by: Zoltan Kiss <zoltan.kiss@...aro.org> Signed-off-by: David Vrabel <david.vrabel@...rix.com> --- drivers/net/xen-netback/netback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 25f4c06..730252c 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1550,7 +1550,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; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists