Lines Matching refs:module_name
70 static int call_modprobe(char *module_name, int wait) in call_modprobe() argument
84 module_name = kstrdup(module_name, GFP_KERNEL); in call_modprobe()
85 if (!module_name) in call_modprobe()
91 argv[3] = module_name; /* check free_modprobe_argv() */ in call_modprobe()
102 kfree(module_name); in call_modprobe()
128 char module_name[MODULE_NAME_LEN]; in __request_module() local
143 ret = vsnprintf(module_name, MODULE_NAME_LEN, fmt, args); in __request_module()
148 ret = security_kernel_module_request(module_name); in __request_module()
155 MAX_KMOD_CONCURRENT, module_name); in __request_module()
161 module_name, MAX_KMOD_CONCURRENT, MAX_KMOD_ALL_BUSY_TIMEOUT); in __request_module()
164 pr_warn_ratelimited("request_module: sigkill sent for modprobe %s, giving up", module_name); in __request_module()
169 trace_module_request(module_name, wait, _RET_IP_); in __request_module()
171 ret = call_modprobe(module_name, wait ? UMH_WAIT_PROC : UMH_WAIT_EXEC); in __request_module()