Lines Matching refs:uuid
46 struct afs_uuid *uuid;
62 uuid = (struct afs_uuid *)&entry->fs_server[n];
63 uuid->time_low = xdr->time_low;
64 uuid->time_mid = htons(ntohl(xdr->time_mid));
65 uuid->time_hi_and_version = htons(ntohl(xdr->time_hi_and_version));
66 uuid->clock_seq_hi_and_reserved = (u8)ntohl(xdr->clock_seq_hi_and_reserved);
67 uuid->clock_seq_low = (u8)ntohl(xdr->clock_seq_low);
69 uuid->node[j] = (u8)ntohl(xdr->node[j]);
107 * Dispatch a get volume entry by name or ID operation (uuid variant). If the
189 /* Extract the returned uuid, uniquifier, nentries and
259 const uuid_t *uuid)
263 const struct afs_uuid *u = (const struct afs_uuid *)uuid;
291 r->uuid.time_low = u->time_low;
292 r->uuid.time_mid = htonl(ntohs(u->time_mid));
293 r->uuid.time_hi_and_version = htonl(ntohs(u->time_hi_and_version));
294 r->uuid.clock_seq_hi_and_reserved = htonl(u->clock_seq_hi_and_reserved);
295 r->uuid.clock_seq_low = htonl(u->clock_seq_low);
297 r->uuid.node[i] = htonl(u->node[i]);
426 * OUT opr_uuid *uuid,
446 /* Extract the returned uuid, uniquifier, fsEndpoints count and
635 const uuid_t *uuid)
645 sizeof(__be32) * 2 + sizeof(*uuid),
660 memcpy(bp, uuid, sizeof(*uuid)); /* Type opr_uuid */