TOMOYO: Fix unused kernel config option.
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Sun, 16 Oct 2011 00:43:46 +0000 (09:43 +0900)
committerJames Morris <jmorris@namei.org>
Wed, 19 Oct 2011 14:58:59 +0000 (16:58 +0200)
CONFIG_SECURITY_TOMOYO_MAX_{ACCEPT_ENTRY,AUDIT_LOG} introduced by commit
0e4ae0e0 "TOMOYO: Make several options configurable." were by error not used.

Reported-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: James Morris <jmorris@namei.org>
security/tomoyo/common.c

index 365f3bd..96b7233 100644 (file)
@@ -502,8 +502,10 @@ static struct tomoyo_profile *tomoyo_assign_profile
                        TOMOYO_CONFIG_WANT_REJECT_LOG;
                memset(ptr->config, TOMOYO_CONFIG_USE_DEFAULT,
                       sizeof(ptr->config));
-               ptr->pref[TOMOYO_PREF_MAX_AUDIT_LOG] = 1024;
-               ptr->pref[TOMOYO_PREF_MAX_LEARNING_ENTRY] = 2048;
+               ptr->pref[TOMOYO_PREF_MAX_AUDIT_LOG] =
+                       CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG;
+               ptr->pref[TOMOYO_PREF_MAX_LEARNING_ENTRY] =
+                       CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY;
                mb(); /* Avoid out-of-order execution. */
                ns->profile_ptr[profile] = ptr;
                entry = NULL;