aboutsummaryrefslogtreecommitdiffstats
path: root/security/tomoyo/memory.c
diff options
context:
space:
mode:
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>2010-06-20 22:14:39 -0400
committerJames Morris <jmorris@namei.org>2010-08-02 01:34:43 -0400
commit5448ec4f5062ef75ce74f8d7784d4cea9c46ad00 (patch)
treec4c742b928c799e03328e345e1d4af738f315afb /security/tomoyo/memory.c
parent0617c7ff34dc9b1d641640c3953274bb2dbe21a6 (diff)
TOMOYO: Use common code for domain transition control.
Use common code for "initialize_domain"/"no_initialize_domain"/"keep_domain"/ "no_keep_domain" keywords. Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/tomoyo/memory.c')
-rw-r--r--security/tomoyo/memory.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/security/tomoyo/memory.c b/security/tomoyo/memory.c
index a1d75df93e16..95a77599ff98 100644
--- a/security/tomoyo/memory.c
+++ b/security/tomoyo/memory.c
@@ -211,10 +211,10 @@ void __init tomoyo_mm_init(void)
211 panic("Can't register tomoyo_kernel_domain"); 211 panic("Can't register tomoyo_kernel_domain");
212 { 212 {
213 /* Load built-in policy. */ 213 /* Load built-in policy. */
214 tomoyo_write_domain_initializer_policy("/sbin/hotplug", 214 tomoyo_write_transition_control("/sbin/hotplug", false,
215 false, false); 215 TOMOYO_TRANSITION_CONTROL_INITIALIZE);
216 tomoyo_write_domain_initializer_policy("/sbin/modprobe", 216 tomoyo_write_transition_control("/sbin/modprobe", false,
217 false, false); 217 TOMOYO_TRANSITION_CONTROL_INITIALIZE);
218 } 218 }
219 tomoyo_read_unlock(idx); 219 tomoyo_read_unlock(idx);
220} 220}