aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/ss/policydb.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/selinux/ss/policydb.c')
-rw-r--r--security/selinux/ss/policydb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index cd79c6338aa0..0ac1021734c0 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -374,7 +374,7 @@ static void symtab_hash_eval(struct symtab *s)
374 struct hashtab_info info; 374 struct hashtab_info info;
375 375
376 hashtab_stat(h, &info); 376 hashtab_stat(h, &info);
377 printk(KERN_INFO "%s: %d entries and %d/%d buckets used, " 377 printk(KERN_DEBUG "%s: %d entries and %d/%d buckets used, "
378 "longest chain length %d\n", symtab_name[i], h->nel, 378 "longest chain length %d\n", symtab_name[i], h->nel,
379 info.slots_used, h->size, info.max_chain_len); 379 info.slots_used, h->size, info.max_chain_len);
380 } 380 }
@@ -391,14 +391,14 @@ static int policydb_index_others(struct policydb *p)
391{ 391{
392 int i, rc = 0; 392 int i, rc = 0;
393 393
394 printk(KERN_INFO "security: %d users, %d roles, %d types, %d bools", 394 printk(KERN_DEBUG "security: %d users, %d roles, %d types, %d bools",
395 p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim); 395 p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim);
396 if (selinux_mls_enabled) 396 if (selinux_mls_enabled)
397 printk(", %d sens, %d cats", p->p_levels.nprim, 397 printk(", %d sens, %d cats", p->p_levels.nprim,
398 p->p_cats.nprim); 398 p->p_cats.nprim);
399 printk("\n"); 399 printk("\n");
400 400
401 printk(KERN_INFO "security: %d classes, %d rules\n", 401 printk(KERN_DEBUG "security: %d classes, %d rules\n",
402 p->p_classes.nprim, p->te_avtab.nel); 402 p->p_classes.nprim, p->te_avtab.nel);
403 403
404#ifdef DEBUG_HASHES 404#ifdef DEBUG_HASHES