Commit ae3cef73 authored by Boaz Harrosh's avatar Boaz Harrosh Committed by Linus Torvalds

kmod: unexport call_usermodehelper_freeinfo()

call_usermodehelper_freeinfo() is not used outside of kmod.c.  So unexport
it, and make it static to kmod.c
Signed-off-by: default avatarBoaz Harrosh <bharrosh@panasas.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f0aac616
...@@ -79,10 +79,6 @@ void call_usermodehelper_setfns(struct subprocess_info *info, ...@@ -79,10 +79,6 @@ void call_usermodehelper_setfns(struct subprocess_info *info,
/* Actually execute the sub-process */ /* Actually execute the sub-process */
int call_usermodehelper_exec(struct subprocess_info *info, int wait); int call_usermodehelper_exec(struct subprocess_info *info, int wait);
/* Free the subprocess_info. This is only needed if you're not going
to call call_usermodehelper_exec */
void call_usermodehelper_freeinfo(struct subprocess_info *info);
static inline int static inline int
call_usermodehelper_fns(char *path, char **argv, char **envp, int wait, call_usermodehelper_fns(char *path, char **argv, char **envp, int wait,
int (*init)(struct subprocess_info *info, struct cred *new), int (*init)(struct subprocess_info *info, struct cred *new),
......
...@@ -221,13 +221,12 @@ static int ____call_usermodehelper(void *data) ...@@ -221,13 +221,12 @@ static int ____call_usermodehelper(void *data)
return 0; return 0;
} }
void call_usermodehelper_freeinfo(struct subprocess_info *info) static void call_usermodehelper_freeinfo(struct subprocess_info *info)
{ {
if (info->cleanup) if (info->cleanup)
(*info->cleanup)(info); (*info->cleanup)(info);
kfree(info); kfree(info);
} }
EXPORT_SYMBOL(call_usermodehelper_freeinfo);
static void umh_complete(struct subprocess_info *sub_info) static void umh_complete(struct subprocess_info *sub_info)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment