diff options
author | Dr. David Alan Gilbert <linux@treblig.org> | 2024-09-21 01:55:17 +0200 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2024-11-27 04:21:05 +0100 |
commit | 75535669c9c1647e8098947f045c95db1bbdfa8c (patch) | |
tree | bdee4461413e0fd182df25e24827551a34462e4f /security/apparmor/secid.c | |
parent | apparmor: Remove unnecessary NULL check before kvfree() (diff) | |
download | linux-75535669c9c1647e8098947f045c95db1bbdfa8c.tar.xz linux-75535669c9c1647e8098947f045c95db1bbdfa8c.zip |
apparmor: Remove deadcode
aa_label_audit, aa_label_find, aa_label_seq_print and aa_update_label_name
were added by commit
f1bd904175e8 ("apparmor: add the base fns() for domain labels")
but never used.
aa_profile_label_perm was added by commit
637f688dc3dc ("apparmor: switch from profiles to using labels on contexts")
but never used.
aa_secid_update was added by commit
c092921219d2 ("apparmor: add support for mapping secids and using secctxes")
but never used.
aa_split_fqname has been unused since commit
3664268f19ea ("apparmor: add namespace lookup fns()")
aa_lookup_profile has been unused since commit
93c98a484c49 ("apparmor: move exec domain mediation to using labels")
aa_audit_perms_cb was only used by aa_profile_label_perm (see above).
All of these commits are from around 2017.
Remove them.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to '')
-rw-r--r-- | security/apparmor/secid.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/security/apparmor/secid.c b/security/apparmor/secid.c index 6350d107013a..47dc08fc583e 100644 --- a/security/apparmor/secid.c +++ b/security/apparmor/secid.c @@ -39,20 +39,6 @@ int apparmor_display_secid_mode; * TODO: use secid_update in label replace */ -/** - * aa_secid_update - update a secid mapping to a new label - * @secid: secid to update - * @label: label the secid will now map to - */ -void aa_secid_update(u32 secid, struct aa_label *label) -{ - unsigned long flags; - - xa_lock_irqsave(&aa_secids, flags); - __xa_store(&aa_secids, secid, label, 0); - xa_unlock_irqrestore(&aa_secids, flags); -} - /* * see label for inverse aa_label_to_secid */ |