diff options
author | Khadija Kamran <kamrankhadijadj@gmail.com> | 2023-08-07 08:59:29 +0200 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2023-08-08 22:48:47 +0200 |
commit | 6672efbb685f7c9c9df005beb839e1942fd6b34e (patch) | |
tree | e29f61323cc3b5923c4013248381cb6382c2ca0e /kernel/capability.c | |
parent | lsm: add comment block for security_sk_classify_flow LSM hook (diff) | |
download | linux-6672efbb685f7c9c9df005beb839e1942fd6b34e.tar.xz linux-6672efbb685f7c9c9df005beb839e1942fd6b34e.zip |
lsm: constify the 'target' parameter in security_capget()
Three LSMs register the implementations for the "capget" hook: AppArmor,
SELinux, and the normal capability code. Looking at the function
implementations we may observe that the first parameter "target" is not
changing.
Mark the first argument "target" of LSM hook security_capget() as
"const" since it will not be changing in the LSM hook.
cap_capget() LSM hook declaration exceeds the 80 characters per line
limit. Split the function declaration to multiple lines to decrease the
line length.
Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com>
Acked-by: John Johansen <john.johansen@canonical.com>
[PM: align the cap_capget() declaration, spelling fixes]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/capability.c')
-rw-r--r-- | kernel/capability.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/capability.c b/kernel/capability.c index 1a2795102ae4..dac4df77e376 100644 --- a/kernel/capability.c +++ b/kernel/capability.c @@ -112,7 +112,7 @@ static inline int cap_get_target_pid(pid_t pid, kernel_cap_t *pEp, int ret; if (pid && (pid != task_pid_vnr(current))) { - struct task_struct *target; + const struct task_struct *target; rcu_read_lock(); |