diff options
author | Richard Guy Briggs <rgb@redhat.com> | 2018-05-12 21:58:20 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2018-05-14 17:24:18 -0400 |
commit | cdfb6b341f0f2409aba24b84f3b4b2bba50be5c5 (patch) | |
tree | cb31684487723bae90c53e58d97b7b9e6aa53020 /security/integrity/ima | |
parent | f0b752168d7091f38e7d61a80de2542e8b71d266 (diff) | |
download | op-kernel-dev-cdfb6b341f0f2409aba24b84f3b4b2bba50be5c5.zip op-kernel-dev-cdfb6b341f0f2409aba24b84f3b4b2bba50be5c5.tar.gz |
audit: use inline function to get audit context
Recognizing that the audit context is an internal audit value, use an
access function to retrieve the audit context pointer for the task
rather than reaching directly into the task struct to get it.
Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
[PM: merge fuzz in auditsc.c and selinuxfs.c, checkpatch.pl fixes]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/integrity/ima')
-rw-r--r-- | security/integrity/ima/ima_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_api.c b/security/integrity/ima/ima_api.c index bf88236..a02c5ac 100644 --- a/security/integrity/ima/ima_api.c +++ b/security/integrity/ima/ima_api.c @@ -326,7 +326,7 @@ void ima_audit_measurement(struct integrity_iint_cache *iint, hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]); hash[i * 2] = '\0'; - ab = audit_log_start(current->audit_context, GFP_KERNEL, + ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_INTEGRITY_RULE); if (!ab) goto out; |