Home
last modified time | relevance | path

Searched refs:uuid (Results 1 – 25 of 303) sorted by relevance

12345678910>>...13

/linux/lib/
H A Duuid.c33 void generate_random_uuid(unsigned char uuid[16]) in generate_random_uuid()
35 get_random_bytes(uuid, 16); in generate_random_uuid()
37 uuid[6] = (uuid[6] & 0x0F) | 0x40; in generate_random_uuid()
39 uuid[8] = (uuid[8] & 0x3F) | 0x80; in generate_random_uuid()
88 bool uuid_is_valid(const char *uuid) in uuid_is_valid() argument
94 if (uuid[i] != '-') in uuid_is_valid()
96 } else if (!isxdigit(uuid[i])) { in uuid_is_valid()
105 static int __uuid_parse(const char *uuid, __u8 b[16], const u8 ei[16]) in __uuid_parse() argument
110 if (!uuid_is_valid(uuid)) in __uuid_parse()
114 int hi = hex_to_bin(uuid[si[i] + 0]); in __uuid_parse()
[all …]
H A Dtest_uuid.c13 const char *uuid; member
20 .uuid = "c33f4995-3701-450e-9fbf-206a2e98e576",
25 .uuid = "64b4371c-77c1-48f9-8221-29f054fc023b",
30 .uuid = "0cb4ddff-a545-4401-9d06-688af53e7f84",
70 if (guid_parse(data->uuid, &le)) in test_uuid_test()
71 test_uuid_failed("conversion", false, false, data->uuid, NULL); in test_uuid_test()
76 test_uuid_failed("cmp", false, false, data->uuid, buf); in test_uuid_test()
81 if (uuid_parse(data->uuid, &be)) in test_uuid_test()
82 test_uuid_failed("conversion", false, true, data->uuid, NULL); in test_uuid_test()
87 test_uuid_failed("cmp", false, true, data->uuid, buf); in test_uuid_test()
/linux/net/bluetooth/
H A Deir.c54 u8 eir_append_service_data(u8 *eir, u16 eir_len, u16 uuid, u8 *data, in eir_append_service_data() argument
57 eir[eir_len++] = sizeof(u8) + sizeof(uuid) + data_len; in eir_append_service_data()
59 put_unaligned_le16(uuid, &eir[eir_len]); in eir_append_service_data()
60 eir_len += sizeof(uuid); in eir_append_service_data()
70 struct bt_uuid *uuid; in create_uuid16_list() local
75 list_for_each_entry(uuid, &hdev->uuids, list) { in create_uuid16_list()
78 if (uuid->size != 16) in create_uuid16_list()
81 uuid16 = get_unaligned_le16(&uuid->uuid[12]); in create_uuid16_list()
112 struct bt_uuid *uuid; in create_uuid32_list() local
117 list_for_each_entry(uuid, &hdev->uuids, list) { in create_uuid32_list()
[all …]
/linux/drivers/firmware/arm_ffa/
H A Dbus.c30 while (!uuid_is_null(&id_table->uuid)) { in ffa_device_match()
36 if (uuid_is_null(&ffa_dev->uuid)) in ffa_device_match()
39 if (uuid_equal(&ffa_dev->uuid, &id_table->uuid)) in ffa_device_match()
53 if (uuid_is_null(&ffa_dev->uuid)) in ffa_device_probe()
72 ffa_dev->vm_id, &ffa_dev->uuid); in ffa_device_uevent()
81 &ffa_dev->uuid); in modalias_show()
99 return sprintf(buf, "%pUb\n", &ffa_dev->uuid); in uuid_show()
101 static DEVICE_ATTR_RO(uuid);
195 uuid_t uuid; in ffa_device_register() local
221 import_uuid(&uuid, (u8 *)part_info->uuid); in ffa_device_register()
[all …]
/linux/fs/btrfs/
H A Duuid-tree.c18 static void btrfs_uuid_to_key(const u8 *uuid, u8 type, struct btrfs_key *key) in btrfs_uuid_to_key() argument
21 key->objectid = get_unaligned_le64(uuid); in btrfs_uuid_to_key()
22 key->offset = get_unaligned_le64(uuid + sizeof(u64)); in btrfs_uuid_to_key()
26 static int btrfs_uuid_tree_lookup(struct btrfs_root *uuid_root, const u8 *uuid, in btrfs_uuid_tree_lookup() argument
48 btrfs_uuid_to_key(uuid, type, &key); in btrfs_uuid_tree_lookup()
86 int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, const u8 *uuid, u8 type, in btrfs_uuid_tree_add() argument
99 ret = btrfs_uuid_tree_lookup(uuid_root, uuid, type, subid_cpu); in btrfs_uuid_tree_add()
108 btrfs_uuid_to_key(uuid, type, &key); in btrfs_uuid_tree_add()
150 int btrfs_uuid_tree_remove(struct btrfs_trans_handle *trans, const u8 *uuid, u8 type, in btrfs_uuid_tree_remove() argument
171 btrfs_uuid_to_key(uuid, type, &key); in btrfs_uuid_tree_remove()
[all …]
/linux/drivers/md/
H A Ddm-log-userspace-base.c47 char uuid[DM_UUID_LEN]; member
85 static int userspace_do_request(struct log_c *lc, const char *uuid, in userspace_do_request() argument
97 r = dm_consult_userspace(uuid, lc->luid, request_type, data, in userspace_do_request()
108 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_CTR, in userspace_do_request()
116 r = dm_consult_userspace(uuid, lc->luid, DM_ULOG_RESUME, NULL, in userspace_do_request()
164 r = userspace_do_request(lc, lc->uuid, DM_ULOG_FLUSH, NULL, 0, NULL, NULL); in do_flush()
227 strscpy(lc->uuid, argv[0], sizeof(lc->uuid)); in userspace_ctr()
263 r = dm_consult_userspace(lc->uuid, lc->luid, DM_ULOG_CTR, in userspace_ctr()
277 r = dm_consult_userspace(lc->uuid, lc->luid, DM_ULOG_GET_REGION_SIZE, in userspace_ctr()
339 (void) dm_consult_userspace(lc->uuid, lc->luid, DM_ULOG_DTR, in userspace_dtr()
[all …]
H A Ddm-log-userspace-transfer.c170 int dm_consult_userspace(const char *uuid, uint64_t luid, int request_type, in dm_consult_userspace() argument
201 memcpy(tfr->uuid, uuid, DM_UUID_LEN); in dm_consult_userspace()
246 (strlen(uuid) > 8) ? in dm_consult_userspace()
247 (uuid + (strlen(uuid) - 8)) : (uuid), in dm_consult_userspace()
/linux/fs/nfs_common/
H A Dnfslocalio.c39 uuid_gen(&nfs_uuid->uuid); in nfs_uuid_begin()
58 static nfs_uuid_t * nfs_uuid_lookup_locked(const uuid_t *uuid) in nfs_uuid_lookup_locked() argument
63 if (uuid_equal(&nfs_uuid->uuid, uuid)) in nfs_uuid_lookup_locked()
71 void nfs_uuid_is_local(const uuid_t *uuid, struct list_head *list, in nfs_uuid_is_local() argument
78 nfs_uuid = nfs_uuid_lookup_locked(uuid); in nfs_uuid_is_local()
131 struct nfsd_file *nfs_open_local_fh(nfs_uuid_t *uuid, in nfs_open_local_fh() argument
149 net = rcu_dereference(uuid->net); in nfs_open_local_fh()
156 localio = nfs_to->nfsd_open_local_fh(net, uuid->dom, rpc_clnt, in nfs_open_local_fh()
/linux/drivers/nvdimm/
H A Dbtt_devs.c23 kfree(nd_btt->uuid); in nd_btt_release()
71 if (nd_btt->uuid) in uuid_show()
72 return sprintf(buf, "%pUb\n", nd_btt->uuid); in uuid_show()
83 rc = nd_uuid_store(dev, &nd_btt->uuid, buf, len); in uuid_store()
90 static DEVICE_ATTR_RW(uuid);
184 unsigned long lbasize, uuid_t *uuid, in __nd_btt_create() argument
199 if (uuid) { in __nd_btt_create()
200 uuid = kmemdup(uuid, 16, GFP_KERNEL); in __nd_btt_create()
201 if (!uuid) in __nd_btt_create()
204 nd_btt->uuid = uuid; in __nd_btt_create()
[all …]
H A Dnamespace_devs.c32 kfree(nspm->uuid); in namespace_pmem_release()
46 uuid2 = nspm->uuid; in is_uuid_busy()
50 uuid2 = nd_btt->uuid; in is_uuid_busy()
54 uuid2 = nd_pfn->uuid; in is_uuid_busy()
77 bool nd_is_uuid_unique(struct device *dev, uuid_t *uuid) in nd_is_uuid_unique() argument
84 if (device_for_each_child(&nvdimm_bus->dev, uuid, in nd_is_uuid_unique()
179 return nspm->uuid; in nd_dev_to_uuid()
251 if (size == 0 && nspm->uuid) in nd_namespace_label_update()
253 else if (!nspm->uuid) in nd_namespace_label_update()
704 if (size && !nspm->uuid) { in nd_namespace_pmem_set_resource()
[all …]
H A Dlabel.c332 char *nd_label_gen_id(struct nd_label_id *label_id, const uuid_t *uuid, in nd_label_gen_id() argument
335 if (!label_id || !uuid) in nd_label_gen_id()
337 snprintf(label_id->id, ND_LABEL_ID_SIZE, "pmem-%pUb", uuid); in nd_label_gen_id()
749 static enum nvdimm_claim_class uuid_to_nvdimm_cclass(uuid_t *uuid) in uuid_to_nvdimm_cclass() argument
751 if (uuid_equal(uuid, &nvdimm_btt_uuid)) in uuid_to_nvdimm_cclass()
753 else if (uuid_equal(uuid, &nvdimm_btt2_uuid)) in uuid_to_nvdimm_cclass()
755 else if (uuid_equal(uuid, &nvdimm_pfn_uuid)) in uuid_to_nvdimm_cclass()
757 else if (uuid_equal(uuid, &nvdimm_dax_uuid)) in uuid_to_nvdimm_cclass()
759 else if (uuid_equal(uuid, &uuid_null)) in uuid_to_nvdimm_cclass()
844 uuid_t uuid; in nsl_set_claim_class() local
[all …]
/linux/tools/power/acpi/tools/pfrut/
H A Dpfrut.c169 char *uuid; in print_cap() local
171 uuid = malloc(37); in print_cap()
172 if (!uuid) { in print_cap()
179 uuid_unparse(cap->code_type, uuid); in print_cap()
180 printf("code injection image type:%s\n", uuid); in print_cap()
184 uuid_unparse(cap->drv_type, uuid); in print_cap()
185 printf("driver update image type:%s\n", uuid); in print_cap()
189 uuid_unparse(cap->platform_id, uuid); in print_cap()
190 printf("platform id:%s\n", uuid); in print_cap()
191 uuid_unparse(cap->oem_id, uuid); in print_cap()
[all …]
/linux/fs/afs/
H A Dserver.c65 struct afs_server *afs_find_server_by_uuid(struct afs_net *net, const uuid_t *uuid) in afs_find_server_by_uuid() argument
71 _enter("%pU", uuid); in afs_find_server_by_uuid()
88 diff = memcmp(uuid, &server->uuid, sizeof(*uuid)); in afs_find_server_by_uuid()
134 diff = memcmp(&candidate->uuid, &server->uuid, sizeof(uuid_t)); in afs_install_server()
195 const uuid_t *uuid, in afs_alloc_server() argument
216 server->uuid = *uuid; in afs_alloc_server()
252 struct key *key, const uuid_t *uuid) in afs_vl_lookup_addrs() argument
262 alist = afs_yfsvl_get_endpoints(&vc, uuid); in afs_vl_lookup_addrs()
264 alist = afs_vl_get_addrs_u(&vc, uuid); in afs_vl_lookup_addrs()
277 const uuid_t *uuid, u32 addr_version) in afs_lookup_server() argument
[all …]
H A Dvlclient.c46 struct afs_uuid *uuid; in afs_deliver_vl_get_entry_by_name_u() local
62 uuid = (struct afs_uuid *)&entry->fs_server[n]; in afs_deliver_vl_get_entry_by_name_u()
63 uuid->time_low = xdr->time_low; in afs_deliver_vl_get_entry_by_name_u()
64 uuid->time_mid = htons(ntohl(xdr->time_mid)); in afs_deliver_vl_get_entry_by_name_u()
65 uuid->time_hi_and_version = htons(ntohl(xdr->time_hi_and_version)); in afs_deliver_vl_get_entry_by_name_u()
66 uuid->clock_seq_hi_and_reserved = (u8)ntohl(xdr->clock_seq_hi_and_reserved); in afs_deliver_vl_get_entry_by_name_u()
67 uuid->clock_seq_low = (u8)ntohl(xdr->clock_seq_low); in afs_deliver_vl_get_entry_by_name_u()
69 uuid->node[j] = (u8)ntohl(xdr->node[j]); in afs_deliver_vl_get_entry_by_name_u()
259 const uuid_t *uuid) in afs_vl_get_addrs_u() argument
263 const struct afs_uuid *u = (const struct afs_uuid *)uuid; in afs_vl_get_addrs_u()
[all …]
H A Dcmservice.c168 struct afs_uuid *uuid) in afs_find_cm_server_by_uuid() argument
472 if (memcmp(r, &call->net->uuid, sizeof(call->net->uuid)) == 0) in SRXAFSCB_ProbeUuid()
550 __be32 uuid[11]; in SRXAFSCB_TellMeAboutYourself() member
565 reply.ia.uuid[0] = call->net->uuid.time_low; in SRXAFSCB_TellMeAboutYourself()
566 reply.ia.uuid[1] = htonl(ntohs(call->net->uuid.time_mid)); in SRXAFSCB_TellMeAboutYourself()
567 reply.ia.uuid[2] = htonl(ntohs(call->net->uuid.time_hi_and_version)); in SRXAFSCB_TellMeAboutYourself()
568 reply.ia.uuid[3] = htonl((s8) call->net->uuid.clock_seq_hi_and_reserved); in SRXAFSCB_TellMeAboutYourself()
569 reply.ia.uuid[4] = htonl((s8) call->net->uuid.clock_seq_low); in SRXAFSCB_TellMeAboutYourself()
571 reply.ia.uuid[loop + 5] = htonl((s8) call->net->uuid.node[loop]); in SRXAFSCB_TellMeAboutYourself()
/linux/drivers/thunderbolt/
H A Dproperty.c32 u32 uuid[4]; member
177 dir->uuid = kmemdup(&block[dir_offset], sizeof(*dir->uuid), in __tb_property_parse_dir()
179 if (!dir->uuid) { in __tb_property_parse_dir()
242 struct tb_property_dir *tb_property_create_dir(const uuid_t *uuid) in tb_property_create_dir() argument
251 if (uuid) { in tb_property_create_dir()
252 dir->uuid = kmemdup(uuid, sizeof(*dir->uuid), GFP_KERNEL); in tb_property_create_dir()
253 if (!dir->uuid) { in tb_property_create_dir()
304 kfree(dir->uuid); in tb_property_free_dir()
315 if (dir->uuid) in tb_property_dir_length()
316 len += sizeof(*dir->uuid) / 4; in tb_property_dir_length()
[all …]
/linux/include/linux/
H A Duuid.h91 static inline bool uuid_is_null(const uuid_t *uuid) in uuid_is_null() argument
93 return uuid_equal(uuid, &uuid_null); in uuid_is_null()
96 void generate_random_uuid(unsigned char uuid[16]);
102 bool __must_check uuid_is_valid(const char *uuid);
107 int guid_parse(const char *uuid, guid_t *u);
108 int uuid_parse(const char *uuid, uuid_t *u);
/linux/fs/nfsd/
H A Dlocalio.c107 uuid_t uuid; member
116 nfs_uuid_is_local(&argp->uuid, &nn->local_clients, in localio_proc_uuid_is_local()
126 u8 uuid[UUID_SIZE]; in localio_decode_uuidarg() local
128 if (decode_opaque_fixed(xdr, uuid, UUID_SIZE)) in localio_decode_uuidarg()
130 import_uuid(&argp->uuid, uuid); in localio_decode_uuidarg()
/linux/scripts/mod/
H A Dfile2alias.c157 static inline void add_uuid(char *str, uuid_le uuid) in add_uuid() argument
162 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0], in add_uuid()
163 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6], in add_uuid()
164 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11], in add_uuid()
165 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]); in add_uuid()
1120 DEF_FIELD_ADDR(symval, mei_cl_device_id, uuid); in do_mei_entry()
1123 add_uuid(alias, *uuid); in do_mei_entry()
1240 DEF_FIELD_ADDR(symval, tee_client_device_id, uuid); in do_tee_entry()
1244 uuid->b[0], uuid->b[1], uuid->b[2], uuid->b[3], uuid->b[4], in do_tee_entry()
1245 uuid->b[5], uuid->b[6], uuid->b[7], uuid->b[8], uuid->b[9], in do_tee_entry()
[all …]
/linux/drivers/tee/amdtee/
H A Dcore.c180 } *uuid = ptr; in copy_ta_binary() local
185 TA_LOAD_PATH, uuid->lo, uuid->mid, uuid->hi_ver, in copy_ta_binary()
186 uuid->seq_n[0], uuid->seq_n[1], in copy_ta_binary()
187 uuid->seq_n[2], uuid->seq_n[3], in copy_ta_binary()
188 uuid->seq_n[4], uuid->seq_n[5], in copy_ta_binary()
189 uuid->seq_n[6], uuid->seq_n[7]); in copy_ta_binary()
246 rc = copy_ta_binary(ctx, &arg->uuid[0], &ta, &ta_size); in amdtee_open_session()
/linux/drivers/mfd/
H A Dwm831x-otp.c59 char uuid[WM831X_UNIQUE_ID_LEN]; in wm831x_otp_init() local
67 ret = wm831x_unique_id_read(wm831x, uuid); in wm831x_otp_init()
69 add_device_randomness(uuid, sizeof(uuid)); in wm831x_otp_init()
/linux/sound/soc/sof/
H A Dipc4-loader.c127 fm_entry->name, &fm_entry->uuid, fm_entry->cfg_count, in sof_ipc4_fw_parse_ext_man()
131 &fm_entry->uuid); in sof_ipc4_fw_parse_ext_man()
173 unsigned long lib_id, const guid_t *uuid) in sof_ipc4_load_library_by_uuid() argument
197 sdev->pdata->fw_lib_prefix, uuid); in sof_ipc4_load_library_by_uuid()
271 const guid_t *uuid) in sof_ipc4_find_module_by_uuid() argument
278 if (guid_is_null(uuid)) in sof_ipc4_find_module_by_uuid()
283 if (guid_equal(uuid, &fw_lib->modules[i].man4_module_entry.uuid)) in sof_ipc4_find_module_by_uuid()
300 ret = sof_ipc4_load_library_by_uuid(sdev, lib_id + 1, uuid); in sof_ipc4_find_module_by_uuid()
307 if (guid_equal(uuid, &fw_lib->modules[i].man4_module_entry.uuid)) in sof_ipc4_find_module_by_uuid()
495 &fw_module->man4_module_entry.uuid, msg, basecfg->ibs, in sof_ipc4_update_cpc_from_manifest()
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-optee-devices1 What: /sys/bus/tee/devices/optee-ta-<uuid>/
6 OP-TEE bus provides reference to registered drivers under this directory. The <uuid>
8 are free to create needed API under optee-ta-<uuid> directory.
10 What: /sys/bus/tee/devices/optee-ta-<uuid>/need_supplicant
/linux/drivers/gpu/drm/i915/
H A Di915_query.c237 char uuid[UUID_STRING_LEN + 1]; in query_perf_config_data() local
269 BUILD_BUG_ON(sizeof(user_query_config_ptr->uuid) >= sizeof(uuid)); in query_perf_config_data()
271 memset(&uuid, 0, sizeof(uuid)); in query_perf_config_data()
272 if (copy_from_user(uuid, user_query_config_ptr->uuid, in query_perf_config_data()
273 sizeof(user_query_config_ptr->uuid))) in query_perf_config_data()
279 if (!strcmp(tmp->uuid, uuid)) { in query_perf_config_data()
338 memcpy(user_config.uuid, oa_config->uuid, sizeof(user_config.uuid)); in query_perf_config_data()
/linux/sound/soc/intel/avs/
H A Dutils.c16 static int avs_module_entry_index(struct avs_dev *adev, const guid_t *uuid) in avs_module_entry_index() argument
24 if (guid_equal(&module->uuid, uuid)) in avs_module_entry_index()
47 int avs_get_module_entry(struct avs_dev *adev, const guid_t *uuid, struct avs_module_entry *entry) in avs_get_module_entry() argument
53 idx = avs_module_entry_index(adev, uuid); in avs_get_module_entry()
75 int avs_get_module_id(struct avs_dev *adev, const guid_t *uuid) in avs_get_module_id() argument
80 ret = avs_get_module_entry(adev, uuid, &module); in avs_get_module_id()

12345678910>>...13