1__REQUEST_MODULE(9) Module Support __REQUEST_MODULE(9)
2
3
4
6 __request_module - try to load a kernel module
7
9 int __request_module(bool wait, const char * fmt, ...);
10
12 wait
13 wait (or not) for the operation to complete
14
15 fmt
16 printf style format string for the name of the module @...:
17 arguments as specified in the format string
18
19 ...
20 variable arguments
21
23 Load a module using the user mode module loader. The function returns
24 zero on success or a negative errno code on failure. Note that a
25 successful module load does not mean the module did not then unload and
26 exit on an error of its own. Callers must check that the service they
27 requested is now available not blindly invoke it.
28
29 If module auto-loading support is disabled then this function becomes a
30 no-operation.
31
33Kernel Hackers Manual 2.6. June 2019 __REQUEST_MODULE(9)