Lines Matching refs:nboot_acl
130 uuids = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_show()
140 ret = tb->cm_ops->get_boot_acl(tb, uuids, tb->nboot_acl); in boot_acl_show()
147 for (ret = 0, i = 0; i < tb->nboot_acl; i++) { in boot_acl_show()
153 i < tb->nboot_acl - 1 ? "," : "\n"); in boot_acl_show()
178 if (count > (UUID_STRING_LEN + 1) * tb->nboot_acl + 1) in boot_acl_store()
180 if (count < tb->nboot_acl - 1) in boot_acl_store()
187 acl = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_store()
194 while ((s = strsep(&uuid_str, ",")) != NULL && i < tb->nboot_acl) { in boot_acl_store()
210 if (s || i < tb->nboot_acl) { in boot_acl_store()
221 ret = tb->cm_ops->set_boot_acl(tb, acl, tb->nboot_acl); in boot_acl_store()
298 if (tb->nboot_acl && in domain_attr_is_visible()