Lines Matching refs:uuid
13 #include <linux/uuid.h>
32 u32 uuid[4];
177 dir->uuid = kmemdup(&block[dir_offset], sizeof(*dir->uuid),
179 if (!dir->uuid) {
237 * @uuid: UUID used to identify the particular directory
239 * Creates new, empty property directory. If @uuid is %NULL then the
242 struct tb_property_dir *tb_property_create_dir(const uuid_t *uuid)
251 if (uuid) {
252 dir->uuid = kmemdup(uuid, sizeof(*dir->uuid), GFP_KERNEL);
253 if (!dir->uuid) {
304 kfree(dir->uuid);
315 if (dir->uuid)
316 len += sizeof(*dir->uuid) / 4;
412 if (dir->uuid) {
416 memcpy(pe->uuid, dir->uuid, sizeof(pe->uuid));
520 d = tb_property_create_dir(dir->uuid);