Commits

Huang Shijie committed eb7b92213c2
MLK-11483-4 UTP : replace kzalloc() with vmalloc() When allocating large memory, such as 128K, vmalloc() uses single page for the allocation process, while kzalloc() has to consume a continuous pages for the allocation. In low memory case, the kzalloc() may fails. So use the vmalloc() instead. Also add some sanity check for the NULL pointer. Add missed line for ENGR00161643-3 UTP : bugfix Signed-off-by: Huang Shijie <b32955@freescale.com>