Lines Matching refs:retval
70 int retval; in call_usermodehelper_exec_async() local
90 retval = -ENOMEM; in call_usermodehelper_exec_async()
102 retval = sub_info->init(sub_info, new); in call_usermodehelper_exec_async()
103 if (retval) { in call_usermodehelper_exec_async()
112 retval = kernel_execve(sub_info->path, in call_usermodehelper_exec_async()
116 sub_info->retval = retval; in call_usermodehelper_exec_async()
123 if (!retval) in call_usermodehelper_exec_async()
137 sub_info->retval = pid; in call_usermodehelper_exec_sync()
139 kernel_wait(pid, &sub_info->retval); in call_usermodehelper_exec_sync()
177 sub_info->retval = pid; in call_usermodehelper_exec_work()
298 long retval; in __usermodehelper_disable() local
313 retval = wait_event_timeout(running_helpers_waitq, in __usermodehelper_disable()
316 if (retval) in __usermodehelper_disable()
407 int retval = 0; in call_usermodehelper_exec() local
415 retval = -EBUSY; in call_usermodehelper_exec()
440 retval = wait_for_completion_killable(&done); in call_usermodehelper_exec()
441 if (!retval) in call_usermodehelper_exec()
452 retval = sub_info->retval; in call_usermodehelper_exec()
457 return retval; in call_usermodehelper_exec()