Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/thunderbolt/
Ddomain.c131 uuids = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_show()
141 ret = tb->cm_ops->get_boot_acl(tb, uuids, tb->nboot_acl); in boot_acl_show()
148 for (ret = 0, i = 0; i < tb->nboot_acl; i++) { in boot_acl_show()
154 i < tb->nboot_acl - 1 ? "," : "\n"); in boot_acl_show()
179 if (count > (UUID_STRING_LEN + 1) * tb->nboot_acl + 1) in boot_acl_store()
181 if (count < tb->nboot_acl - 1) in boot_acl_store()
188 acl = kcalloc(tb->nboot_acl, sizeof(uuid_t), GFP_KERNEL); in boot_acl_store()
195 while ((s = strsep(&uuid_str, ",")) != NULL && i < tb->nboot_acl) { in boot_acl_store()
211 if (s || i < tb->nboot_acl) { in boot_acl_store()
222 ret = tb->cm_ops->set_boot_acl(tb, acl, tb->nboot_acl); in boot_acl_store()
[all …]
Dicm.c90 size_t *nboot_acl, bool *rpm);
416 size_t *nboot_acl, bool *rpm) in icm_fr_driver_ready() argument
962 size_t *nboot_acl, bool *rpm) in icm_tr_driver_ready() argument
978 if (nboot_acl) in icm_tr_driver_ready()
979 *nboot_acl = (reply.info & ICM_TR_INFO_BOOT_ACL_MASK) >> in icm_tr_driver_ready()
1405 size_t *nboot_acl, bool *rpm) in icm_ar_driver_ready() argument
1421 if (nboot_acl && (reply.info & ICM_AR_INFO_BOOT_ACL_SUPPORTED)) in icm_ar_driver_ready()
1422 *nboot_acl = (reply.info & ICM_AR_INFO_BOOT_ACL_MASK) >> in icm_ar_driver_ready()
1535 size_t *nboot_acl, bool *rpm) in icm_icl_driver_ready() argument
1645 size_t *nboot_acl, bool *rpm) in __icm_driver_ready() argument
[all …]
/Linux-v5.4/include/linux/
Dthunderbolt.h82 size_t nboot_acl; member