mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 14:20:55 +07:00
[PATCH] selinux: more ARRAY_SIZE cleanups
Further ARRAY_SIZE cleanups under security/selinux. Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch> Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
6e20a64a39
commit
32725ad843
@ -359,7 +359,7 @@ int avtab_read_item(void *fp, u32 vers, struct avtab *a,
|
||||
return -1;
|
||||
}
|
||||
|
||||
for (i = 0; i < sizeof(spec_order)/sizeof(u16); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(spec_order); i++) {
|
||||
if (val & spec_order[i]) {
|
||||
key.specified = spec_order[i] | enabled;
|
||||
datum.data = le32_to_cpu(buf32[items++]);
|
||||
|
@ -103,7 +103,7 @@ static struct policydb_compat_info *policydb_lookup_compat(int version)
|
||||
int i;
|
||||
struct policydb_compat_info *info = NULL;
|
||||
|
||||
for (i = 0; i < sizeof(policydb_compat)/sizeof(*info); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
|
||||
if (policydb_compat[i].version == version) {
|
||||
info = &policydb_compat[i];
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user