diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-02 18:48:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-03 12:49:59 -0400 |
commit | b61c37f57988567c84359645f8202a7c84bc798a (patch) | |
tree | a808c891711d060060a751f4119198dc06e2c847 /security/selinux/avc.c | |
parent | 3f0882c48286e7bdb0bbdec9c4bfa934e0db8e09 (diff) |
lsm_audit: don't specify the audit pre/post callbacks in 'struct common_audit_data'
It just bloats the audit data structure for no good reason, since the
only time those fields are filled are just before calling the
common_lsm_audit() function, which is also the only user of those
fields.
So just make them be the arguments to common_lsm_audit(), rather than
bloating that structure that is passed around everywhere, and is
initialized in hot paths.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'security/selinux/avc.c')
-rw-r--r-- | security/selinux/avc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/security/selinux/avc.c b/security/selinux/avc.c index 36c42bb52d81..8ee42b2a5f19 100644 --- a/security/selinux/avc.c +++ b/security/selinux/avc.c | |||
@@ -492,9 +492,7 @@ static noinline int slow_avc_audit(u32 ssid, u32 tsid, u16 tclass, | |||
492 | slad.denied = denied; | 492 | slad.denied = denied; |
493 | 493 | ||
494 | a->selinux_audit_data->slad = &slad; | 494 | a->selinux_audit_data->slad = &slad; |
495 | a->lsm_pre_audit = avc_audit_pre_callback; | 495 | common_lsm_audit(a, avc_audit_pre_callback, avc_audit_post_callback); |
496 | a->lsm_post_audit = avc_audit_post_callback; | ||
497 | common_lsm_audit(a); | ||
498 | return 0; | 496 | return 0; |
499 | } | 497 | } |
500 | 498 | ||