|
@@ -45,7 +45,7 @@ static inline int request_module_nowait(const char *name, ...) { return -ENOSYS;
|
|
|
#endif
|
|
|
|
|
|
|
|
|
-struct key;
|
|
|
+struct cred;
|
|
|
struct file;
|
|
|
|
|
|
enum umh_wait {
|
|
@@ -62,7 +62,7 @@ struct subprocess_info {
|
|
|
char **envp;
|
|
|
enum umh_wait wait;
|
|
|
int retval;
|
|
|
- int (*init)(struct subprocess_info *info);
|
|
|
+ int (*init)(struct subprocess_info *info, struct cred *new);
|
|
|
void (*cleanup)(struct subprocess_info *info);
|
|
|
void *data;
|
|
|
};
|
|
@@ -73,7 +73,7 @@ struct subprocess_info *call_usermodehelper_setup(char *path, char **argv,
|
|
|
|
|
|
/* Set various pieces of state into the subprocess_info structure */
|
|
|
void call_usermodehelper_setfns(struct subprocess_info *info,
|
|
|
- int (*init)(struct subprocess_info *info),
|
|
|
+ int (*init)(struct subprocess_info *info, struct cred *new),
|
|
|
void (*cleanup)(struct subprocess_info *info),
|
|
|
void *data);
|
|
|
|
|
@@ -87,7 +87,7 @@ void call_usermodehelper_freeinfo(struct subprocess_info *info);
|
|
|
static inline int
|
|
|
call_usermodehelper_fns(char *path, char **argv, char **envp,
|
|
|
enum umh_wait wait,
|
|
|
- int (*init)(struct subprocess_info *info),
|
|
|
+ int (*init)(struct subprocess_info *info, struct cred *new),
|
|
|
void (*cleanup)(struct subprocess_info *), void *data)
|
|
|
{
|
|
|
struct subprocess_info *info;
|