public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* From last __GFP_ZERO changes
@ 2005-01-06 11:43 Marco Cipullo
  2005-01-07 19:33 ` Martin Hicks
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Cipullo @ 2005-01-06 11:43 UTC (permalink / raw)
  To: linux-kernel

>From last __GFP_ZERO changes:

--- a/drivers/block/pktcdvd.c	2005-01-06 03:27:45 -08:00
+++ b/drivers/block/pktcdvd.c	2005-01-06 03:27:45 -08:00
@@ -135,12 +135,10 @@
 		goto no_bio;
 
 	for (i = 0; i < PAGES_PER_PACKET; i++) {
-		pkt->pages[i] = alloc_page(GFP_KERNEL);
+		pkt->pages[i] = alloc_page(GFP_KERNEL|| __GFP_ZERO);

Is this OK?

Or should be

 	for (i = 0; i < PAGES_PER_PACKET; i++) {
-		pkt->pages[i] = alloc_page(GFP_KERNEL);
+		pkt->pages[i] = alloc_page(GFP_KERNEL| __GFP_ZERO);


Bye
Marco

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-01-07 20:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-06 11:43 From last __GFP_ZERO changes Marco Cipullo
2005-01-07 19:33 ` Martin Hicks
2005-01-07 20:02   ` Christoph Lameter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox