From: Chanho Min Date: Mon, 10 Dec 2018 07:49:54 +0000 (+0900) Subject: exec: make prepare_bprm_creds static X-Git-Tag: v5.4-rc1~1857^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4addd2640fcaeb150b42a8a352b6c9d13d6c00af;p=platform%2Fkernel%2Flinux-rpi.git exec: make prepare_bprm_creds static prepare_bprm_creds is not used outside exec.c, so there's no reason for it to have external linkage. Signed-off-by: Chanho Min Signed-off-by: Al Viro --- diff --git a/fs/exec.c b/fs/exec.c index fc281b7..b6c9e5f 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -1399,7 +1399,7 @@ EXPORT_SYMBOL(finalize_exec); * Or, if exec fails before, free_bprm() should release ->cred and * and unlock. */ -int prepare_bprm_creds(struct linux_binprm *bprm) +static int prepare_bprm_creds(struct linux_binprm *bprm) { if (mutex_lock_interruptible(¤t->signal->cred_guard_mutex)) return -ERESTARTNOINTR; diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index e9f5fe6..6a9e43d 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h @@ -138,7 +138,6 @@ extern int transfer_args_to_stack(struct linux_binprm *bprm, extern int bprm_change_interp(const char *interp, struct linux_binprm *bprm); extern int copy_strings_kernel(int argc, const char *const *argv, struct linux_binprm *bprm); -extern int prepare_bprm_creds(struct linux_binprm *bprm); extern void install_exec_creds(struct linux_binprm *bprm); extern void set_binfmt(struct linux_binfmt *new); extern ssize_t read_code(struct file *, unsigned long, loff_t, size_t);