1CALL_USERMODEHELPER_(9) Module Support CALL_USERMODEHELPER_(9)
2
3
4
6 call_usermodehelper_exec - start a usermode application
7
9 int call_usermodehelper_exec(struct subprocess_info * sub_info,
10 int wait);
11
13 sub_info
14 information about the subprocessa
15
16 wait
17 wait for the application to finish and return status. when
18 UMH_NO_WAIT don't wait at all, but you get no useful error back
19 when the program couldn't be exec'ed. This makes it safe to call
20 from interrupt context.
21
23 Runs a user-space application. The application is started
24 asynchronously if wait is not set, and runs as a child of keventd. (ie.
25 it runs with full root capabilities).
26
28Kernel Hackers Manual 3.10 June 2019 CALL_USERMODEHELPER_(9)