aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/ss
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2011-04-28 15:11:21 -0400
committerEric Paris <eparis@redhat.com>2011-04-28 15:15:52 -0400
commit3f058ef7787e1b48720622346de9a5317aeb749a (patch)
tree3cfdfa068b6eae4716f3be7d02f44bbd15e64573 /security/selinux/ss
parentbe30b16d43f4781406de0c08c96501dae4cc5a77 (diff)
SELinux: generic hashtab entry counter
Instead of a hashtab entry counter function only useful for range transition rules make a function generic for any hashtable to use. Signed-off-by: Eric Paris <eparis@redhat.com> Reviewed-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/selinux/ss')
-rw-r--r--security/selinux/ss/policydb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 70c863bf715e..ca7a7231b5a2 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -3066,7 +3066,7 @@ static int genfs_write(struct policydb *p, void *fp)
3066 return 0; 3066 return 0;
3067} 3067}
3068 3068
3069static int range_count(void *key, void *data, void *ptr) 3069static int hashtab_cnt(void *key, void *data, void *ptr)
3070{ 3070{
3071 int *cnt = ptr; 3071 int *cnt = ptr;
3072 *cnt = *cnt + 1; 3072 *cnt = *cnt + 1;
@@ -3114,7 +3114,7 @@ static int range_write(struct policydb *p, void *fp)
3114 3114
3115 /* count the number of entries in the hashtab */ 3115 /* count the number of entries in the hashtab */
3116 nel = 0; 3116 nel = 0;
3117 rc = hashtab_map(p->range_tr, range_count, &nel); 3117 rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
3118 if (rc) 3118 if (rc)
3119 return rc; 3119 return rc;
3120 3120