Lines Matching refs:retval
71 int retval; in call_usermodehelper_exec_async() local
91 retval = -ENOMEM; in call_usermodehelper_exec_async()
103 retval = sub_info->init(sub_info, new); in call_usermodehelper_exec_async()
104 if (retval) { in call_usermodehelper_exec_async()
113 retval = kernel_execve(sub_info->path, in call_usermodehelper_exec_async()
117 sub_info->retval = retval; in call_usermodehelper_exec_async()
124 if (!retval) in call_usermodehelper_exec_async()
138 sub_info->retval = pid; in call_usermodehelper_exec_sync()
140 kernel_wait(pid, &sub_info->retval); in call_usermodehelper_exec_sync()
178 sub_info->retval = pid; in call_usermodehelper_exec_work()
299 long retval; in __usermodehelper_disable() local
314 retval = wait_event_timeout(running_helpers_waitq, in __usermodehelper_disable()
317 if (retval) in __usermodehelper_disable()
409 int retval = 0; in call_usermodehelper_exec() local
417 retval = -EBUSY; in call_usermodehelper_exec()
445 retval = wait_for_completion_state(&done, state | TASK_KILLABLE); in call_usermodehelper_exec()
446 if (!retval) in call_usermodehelper_exec()
464 retval = sub_info->retval; in call_usermodehelper_exec()
469 return retval; in call_usermodehelper_exec()