diff options
Diffstat (limited to 'arch/um/os-Linux/helper.c')
| -rw-r--r-- | arch/um/os-Linux/helper.c | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/um/os-Linux/helper.c b/arch/um/os-Linux/helper.c index f25c29a12d0..30860b89ec5 100644 --- a/arch/um/os-Linux/helper.c +++ b/arch/um/os-Linux/helper.c @@ -7,6 +7,7 @@  #include <unistd.h>  #include <errno.h>  #include <sched.h> +#include <linux/limits.h>  #include <sys/socket.h>  #include <sys/wait.h>  #include "kern_constants.h" @@ -71,8 +72,8 @@ int run_helper(void (*pre_exec)(void *), void *pre_data, char **argv)  	data.pre_data = pre_data;  	data.argv = argv;  	data.fd = fds[1]; -	data.buf = __cant_sleep() ? kmalloc(PATH_MAX, UM_GFP_ATOMIC) : -					kmalloc(PATH_MAX, UM_GFP_KERNEL); +	data.buf = __cant_sleep() ? uml_kmalloc(PATH_MAX, UM_GFP_ATOMIC) : +					uml_kmalloc(PATH_MAX, UM_GFP_KERNEL);  	pid = clone(helper_child, (void *) sp, CLONE_VM, &data);  	if (pid < 0) {  		ret = -errno;  |