diff options
author | Serge E. Hallyn <serue@us.ibm.com> | 2008-09-26 22:27:47 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-09-27 15:07:56 +1000 |
commit | de45e806a84909648623119dfe6fc1d31e71ceba (patch) | |
tree | ca10329190483178175c43ad84862faa04c57195 /security | |
parent | ab2b49518e743962f71b94246855c44ee9cf52cc (diff) | |
download | linux-3.10-de45e806a84909648623119dfe6fc1d31e71ceba.tar.gz linux-3.10-de45e806a84909648623119dfe6fc1d31e71ceba.tar.bz2 linux-3.10-de45e806a84909648623119dfe6fc1d31e71ceba.zip |
file capabilities: uninline cap_safe_nice
This reduces the kernel size by 289 bytes.
Signed-off-by: Serge E. Hallyn <serue@us.ibm.com>
Acked-by: Andrew G. Morgan <morgan@kernel.org>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/commoncap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/commoncap.c b/security/commoncap.c index e4c4b3fc0c0..399bfdb9e2d 100644 --- a/security/commoncap.c +++ b/security/commoncap.c @@ -541,7 +541,7 @@ int cap_task_post_setuid (uid_t old_ruid, uid_t old_euid, uid_t old_suid, * yet with increased caps. * So we check for increased caps on the target process. */ -static inline int cap_safe_nice(struct task_struct *p) +static int cap_safe_nice(struct task_struct *p) { if (!cap_issubset(p->cap_permitted, current->cap_permitted) && !capable(CAP_SYS_NICE)) |