1CALL_USERMODEHELPER(9) Module Support CALL_USERMODEHELPER(9)
2
3
4
6 call_usermodehelper - prepare and start a usermode application
7
9 int call_usermodehelper(char * path, char ** argv, char ** envp,
10 int wait);
11
13 path
14 path to usermode executable
15
16 argv
17 arg vector for process
18
19 envp
20 environment for process
21
22 wait
23 wait for the application to finish and return status. when
24 UMH_NO_WAIT don't wait at all, but you get no useful error back
25 when the program couldn't be exec'ed. This makes it safe to call
26 from interrupt context.
27
29 This function is the equivalent to use call_usermodehelper_setup and
30 call_usermodehelper_exec.
31
33Kernel Hackers Manual 3.10 June 2019 CALL_USERMODEHELPER(9)