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
146 ret = vsnprintf(module_name, MODULE_NAME_LEN, fmt, args); in __request_module()
151 ret = security_kernel_module_request(module_name); in __request_module()
174 module_name); in __request_module()
181 trace_module_request(module_name, wait, _RET_IP_); in __request_module()
183 ret = call_modprobe(module_name, wait ? UMH_WAIT_PROC : UMH_WAIT_EXEC); in __request_module()