linux-kernel September 2008 archive
Main Archive Page > Month Archives  > linux-kernel archives
linux-kernel: [PATCH 3/6] file capabilities: uninline cap_safe_n

[PATCH 3/6] file capabilities: uninline cap_safe_nice

From: Serge E. Hallyn <serue_at_nospam>
Date: Sat Sep 27 2008 - 02:27:47 GMT
To: linux-kernel@vger.kernel.org


This reduces the kernel size by 289 bytes.

Signed-off-by: Serge E. Hallyn <serue@us.ibm.com> --- security/commoncap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/security/commoncap.c b/security/commoncap.c index 9bfef94..d48fdd8 100644 --- a/security/commoncap.c +++ b/security/commoncap.c @@ -512,7 +512,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)) -- 1.5.1.1.GIT -- To unsubscribe from this list: send the line "unsubscribe linux-security-module" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html