VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   55 Tags
author: Ondrej Mosnacek <omosnace@redhat.com> 2021-01-06 14:26:19 +0100 committer: Paul Moore <paul@paul-moore.com> 2021-01-12 09:53:57 -0500 commit: 3c797e514b927e6c85c0ae3359e85cc55422eec1 parent: 46434ba040935f5aadcb428c774c74875d280501
Commit Summary:
selinux: drop the unnecessary aurule_callback variable
Diffstat:
1 file changed, 3 insertions, 6 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c
index 597b79703584..5e08ce2c5994 100644
--- a/security/selinux/ss/services.c
+++ b/security/selinux/ss/services.c
@@ -3693,15 +3693,11 @@ out:
 	return match;
 }
 
-static int (*aurule_callback)(void) = audit_update_lsm_rules;
-
 static int aurule_avc_callback(u32 event)
 {
-	int err = 0;
-
-	if (event == AVC_CALLBACK_RESET && aurule_callback)
-		err = aurule_callback();
-	return err;
+	if (event == AVC_CALLBACK_RESET)
+		return audit_update_lsm_rules();
+	return 0;
 }
 
 static int __init aurule_init(void)