diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2013-03-15 12:50:53 -0400 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2013-03-18 08:51:31 -0400 |
commit | 921f3ac4c3f2fd46ae99195a1168383ca9b41ed1 (patch) | |
tree | 02dae93a4c8c0b98b55c23638e054118f37f6c4b | |
parent | 2c4cdf5950b1a7a9d731c03c56e2cea3bd8ca7b7 (diff) |
tomoyo: use DEFINE_SRCU() to define tomoyo_ss
DEFINE_STATIC_SRCU() defines srcu struct and do init at build time.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Acked-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: James Morris <james.l.morris@oracle.com>
-rw-r--r-- | security/tomoyo/tomoyo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c index a2ee362546ab..f0b756e27fed 100644 --- a/security/tomoyo/tomoyo.c +++ b/security/tomoyo/tomoyo.c | |||
@@ -536,7 +536,7 @@ static struct security_operations tomoyo_security_ops = { | |||
536 | }; | 536 | }; |
537 | 537 | ||
538 | /* Lock for GC. */ | 538 | /* Lock for GC. */ |
539 | struct srcu_struct tomoyo_ss; | 539 | DEFINE_SRCU(tomoyo_ss); |
540 | 540 | ||
541 | /** | 541 | /** |
542 | * tomoyo_init - Register TOMOYO Linux as a LSM module. | 542 | * tomoyo_init - Register TOMOYO Linux as a LSM module. |
@@ -550,8 +550,7 @@ static int __init tomoyo_init(void) | |||
550 | if (!security_module_enable(&tomoyo_security_ops)) | 550 | if (!security_module_enable(&tomoyo_security_ops)) |
551 | return 0; | 551 | return 0; |
552 | /* register ourselves with the security framework */ | 552 | /* register ourselves with the security framework */ |
553 | if (register_security(&tomoyo_security_ops) || | 553 | if (register_security(&tomoyo_security_ops)) |
554 | init_srcu_struct(&tomoyo_ss)) | ||
555 | panic("Failure registering TOMOYO Linux"); | 554 | panic("Failure registering TOMOYO Linux"); |
556 | printk(KERN_INFO "TOMOYO Linux initialized\n"); | 555 | printk(KERN_INFO "TOMOYO Linux initialized\n"); |
557 | cred->security = &tomoyo_kernel_domain; | 556 | cred->security = &tomoyo_kernel_domain; |