Home
last modified time | relevance | path

Searched refs:nboot_acl (Results 1 – 3 of 3) sorted by relevance

/Linux-v4.19/drivers/thunderbolt/
Ddomain.c132 uuids = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_show()
142 ret = tb->cm_ops->get_boot_acl(tb, uuids, tb->nboot_acl); in boot_acl_show()
149 for (ret = 0, i = 0; i < tb->nboot_acl; i++) { in boot_acl_show()
155 i < tb->nboot_acl - 1 ? "," : "\n"); in boot_acl_show()
180 if (count > (UUID_STRING_LEN + 1) * tb->nboot_acl + 1) in boot_acl_store()
182 if (count < tb->nboot_acl - 1) in boot_acl_store()
189 acl = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_store()
196 while ((s = strsep(&uuid_str, ",")) != NULL && i < tb->nboot_acl) { in boot_acl_store()
212 if (s || i < tb->nboot_acl) { in boot_acl_store()
223 ret = tb->cm_ops->set_boot_acl(tb, acl, tb->nboot_acl); in boot_acl_store()
[all …]
Dicm.c86 size_t *nboot_acl, bool *rpm);
314 size_t *nboot_acl, bool *rpm) in icm_fr_driver_ready() argument
836 size_t *nboot_acl, bool *rpm) in icm_tr_driver_ready() argument
852 if (nboot_acl) in icm_tr_driver_ready()
853 *nboot_acl = (reply.info & ICM_TR_INFO_BOOT_ACL_MASK) >> in icm_tr_driver_ready()
1259 size_t *nboot_acl, bool *rpm) in icm_ar_driver_ready() argument
1275 if (nboot_acl && (reply.info & ICM_AR_INFO_BOOT_ACL_SUPPORTED)) in icm_ar_driver_ready()
1276 *nboot_acl = (reply.info & ICM_AR_INFO_BOOT_ACL_MASK) >> in icm_ar_driver_ready()
1441 size_t *nboot_acl, bool *rpm) in __icm_driver_ready() argument
1447 ret = icm->driver_ready(tb, security_level, nboot_acl, rpm); in __icm_driver_ready()
[all …]
/Linux-v4.19/include/linux/
Dthunderbolt.h85 size_t nboot_acl; member