diff options
author | Andrii Nakryiko <andrii@kernel.org> | 2024-08-07 00:38:12 +0200 |
---|---|---|
committer | Andrii Nakryiko <andrii@kernel.org> | 2024-09-13 03:57:54 +0200 |
commit | 433d7ce2d86d21274838c9e8c796f4232cd13cdb (patch) | |
tree | 0edfccd22377e193ed1897147e3ce531a5c18d1f /security/selinux | |
parent | bpf: more trivial fdget() conversions (diff) | |
download | linux-433d7ce2d86d21274838c9e8c796f4232cd13cdb.tar.xz linux-433d7ce2d86d21274838c9e8c796f4232cd13cdb.zip |
security,bpf: constify struct path in bpf_token_create() LSM hook
There is no reason why struct path pointer shouldn't be const-qualified
when being passed into bpf_token_create() LSM hook. Add that const.
Acked-by: Paul Moore <paul@paul-moore.com> (LSM/SELinux)
Suggested-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Diffstat (limited to 'security/selinux')
-rw-r--r-- | security/selinux/hooks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 55c78c318ccd..0eec141a8f37 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c @@ -6965,7 +6965,7 @@ static void selinux_bpf_prog_free(struct bpf_prog *prog) } static int selinux_bpf_token_create(struct bpf_token *token, union bpf_attr *attr, - struct path *path) + const struct path *path) { struct bpf_security_struct *bpfsec; |