mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 14:51:00 +07:00
[PATCH] selinux: ARRAY_SIZE cleanups
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]). Signed-off-by: Nicolas Kaiser <nikai@nikai.net> 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
b09eb1c06a
commit
6e20a64a39
@ -376,7 +376,7 @@ static ssize_t selinux_transaction_write(struct file *file, const char __user *b
|
||||
char *data;
|
||||
ssize_t rv;
|
||||
|
||||
if (ino >= sizeof(write_op)/sizeof(write_op[0]) || !write_op[ino])
|
||||
if (ino >= ARRAY_SIZE(write_op) || !write_op[ino])
|
||||
return -EINVAL;
|
||||
|
||||
data = simple_transaction_get(file, buf, size);
|
||||
@ -1161,7 +1161,7 @@ static int sel_make_avc_files(struct dentry *dir)
|
||||
#endif
|
||||
};
|
||||
|
||||
for (i = 0; i < sizeof (files) / sizeof (files[0]); i++) {
|
||||
for (i = 0; i < ARRAY_SIZE(files); i++) {
|
||||
struct inode *inode;
|
||||
struct dentry *dentry;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user