Lines Matching refs:retval
69 int retval; in call_usermodehelper_exec_async() local
89 retval = -ENOMEM; in call_usermodehelper_exec_async()
101 retval = sub_info->init(sub_info, new); in call_usermodehelper_exec_async()
102 if (retval) { in call_usermodehelper_exec_async()
110 retval = kernel_execve(sub_info->path, in call_usermodehelper_exec_async()
114 sub_info->retval = retval; in call_usermodehelper_exec_async()
121 if (!retval) in call_usermodehelper_exec_async()
135 sub_info->retval = pid; in call_usermodehelper_exec_sync()
137 kernel_wait(pid, &sub_info->retval); in call_usermodehelper_exec_sync()
175 sub_info->retval = pid; in call_usermodehelper_exec_work()
296 long retval; in __usermodehelper_disable() local
311 retval = wait_event_timeout(running_helpers_waitq, in __usermodehelper_disable()
314 if (retval) in __usermodehelper_disable()
405 int retval = 0; in call_usermodehelper_exec() local
413 retval = -EBUSY; in call_usermodehelper_exec()
438 retval = wait_for_completion_killable(&done); in call_usermodehelper_exec()
439 if (!retval) in call_usermodehelper_exec()
450 retval = sub_info->retval; in call_usermodehelper_exec()
455 return retval; in call_usermodehelper_exec()