Lines Matching refs:module_name
69 static int call_modprobe(char *module_name, int wait) in call_modprobe() argument
83 module_name = kstrdup(module_name, GFP_KERNEL); in call_modprobe()
84 if (!module_name) in call_modprobe()
90 argv[3] = module_name; /* check free_modprobe_argv() */ in call_modprobe()
101 kfree(module_name); in call_modprobe()
127 char module_name[MODULE_NAME_LEN]; in __request_module() local
142 ret = vsnprintf(module_name, MODULE_NAME_LEN, fmt, args); in __request_module()
147 ret = security_kernel_module_request(module_name); in __request_module()
154 MAX_KMOD_CONCURRENT, module_name); in __request_module()
160 module_name, MAX_KMOD_CONCURRENT, MAX_KMOD_ALL_BUSY_TIMEOUT); in __request_module()
163 pr_warn_ratelimited("request_module: sigkill sent for modprobe %s, giving up", module_name); in __request_module()
168 trace_module_request(module_name, wait, _RET_IP_); in __request_module()
170 ret = call_modprobe(module_name, wait ? UMH_WAIT_PROC : UMH_WAIT_EXEC); in __request_module()