Commit 28a71360 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] __GFP_ZERO pktcdvd fix

Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent e9ef8e97
......@@ -135,7 +135,7 @@ static struct packet_data *pkt_alloc_packet_data(void)
goto no_bio;
for (i = 0; i < PAGES_PER_PACKET; i++) {
pkt->pages[i] = alloc_page(GFP_KERNEL|| __GFP_ZERO);
pkt->pages[i] = alloc_page(GFP_KERNEL|__GFP_ZERO);
if (!pkt->pages[i])
goto no_page;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment