diff options
author | Gaosheng Cui <cuigaosheng1@huawei.com> | 2022-09-23 11:21:18 +0200 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2022-10-03 23:49:04 +0200 |
commit | adaa9a3f72e6f98538bfac54f6dc4afc0537f410 (patch) | |
tree | 56c572998b70ab8dc55428ff4a0decd4fc355200 /security/apparmor/task.c | |
parent | apparmor: Fix regression in stacking due to label flags (diff) | |
download | linux-adaa9a3f72e6f98538bfac54f6dc4afc0537f410.tar.xz linux-adaa9a3f72e6f98538bfac54f6dc4afc0537f410.zip |
apparmor: Simplify obtain the newest label on a cred
In aa_get_task_label(), aa_get_newest_cred_label(__task_cred(task))
can do the same things as aa_get_newest_label(__aa_task_raw_label(task)),
so we can replace it and remove __aa_task_raw_label() to simplify the code.
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Signed-off-by: John Johansen <john.johansen@canonical.com>
Diffstat (limited to 'security/apparmor/task.c')
-rw-r--r-- | security/apparmor/task.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/task.c b/security/apparmor/task.c index 5000cbd055b6..84d16a29bfcb 100644 --- a/security/apparmor/task.c +++ b/security/apparmor/task.c @@ -31,7 +31,7 @@ struct aa_label *aa_get_task_label(struct task_struct *task) struct aa_label *p; rcu_read_lock(); - p = aa_get_newest_label(__aa_task_raw_label(task)); + p = aa_get_newest_cred_label(__task_cred(task)); rcu_read_unlock(); return p; |