Re: [PATCH] s390 (5/7): kmalloc arguments.

Pete Zaitcev (zaitcev@redhat.com)
Fri, 7 Mar 2003 15:08:01 -0500


> Add missing GFP_KERNEL to kmallocs with GFP_DMA.

> - sch = kmalloc (sizeof (*sch), GFP_DMA);
> + sch = kmalloc (sizeof (*sch), GFP_KERNEL | GFP_DMA);
> if (sch == NULL)
> return -ENOMEM;

Would you mind explaining why you are doing this?
What does GFP_DMA do on s390 and s390x?

-- Pete
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/