On 4/8/2010 6:43 PM, Gomez Castellanos, Ivan wrote:
From 0306e1ff7c9160dbc5eb9fffcd789a40bea0debb Mon Sep 17 00:00:00 2001 From: Ivan Gomez Castellanos<ivan.gomez@xxxxxx> Date: Fri, 19 Mar 2010 16:43:26 -0600 Subject: [PATCH 01/13] DSPBRIDGE: Replace mem_calloc() by kzalloc() or __vmalloc() This is needed because the file drivers/dsp/bridge/services/mem.c is going to be deleted. The changes should be as follows: mem_calloc(x, MEM_PAGED) ==> kzalloc(x, GFP_KERNEL) mem_calloc(x, MEM_NONPAGED) ==> kzalloc(x, GFP_KERNEL) mem_calloc(x, MEM_MEM_LARGEVIRTMEM) ==> __vmalloc(x, GFP_KERNEL | __GFP_HIGHMEM | __GFP_ZERO, PAGE_KERNEL); If running in atomic context, then the GFP_KERNEL argument is changed to GFP_ATOMIC. Signed-off-by: Ivan Gomez Castellanos<ivan.gomez@xxxxxx> ---
Rebased and pushed the entire series. - omar -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html