X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=arch%2Fum%2Fos-Linux%2Fmain.c;h=eee69b9f52c92bfd355303fd72b5afbf70502d7e;hb=29e92f483603d97dd1d2bafcb32101287dfac4ad;hp=abb9b0ffd9600402e770d93fce945c9b0295b98b;hpb=4f4ae0d42680889c62db4e1f3e6b4aa7787a7257;p=pandora-kernel.git diff --git a/arch/um/os-Linux/main.c b/arch/um/os-Linux/main.c index abb9b0ffd960..eee69b9f52c9 100644 --- a/arch/um/os-Linux/main.c +++ b/arch/um/os-Linux/main.c @@ -199,7 +199,7 @@ void *__wrap_malloc(int size) return __real_malloc(size); else if (size <= UM_KERN_PAGE_SIZE) /* finding contiguous pages can be hard*/ - ret = kmalloc(size, UM_GFP_KERNEL); + ret = uml_kmalloc(size, UM_GFP_KERNEL); else ret = vmalloc(size); /*