Whamcloud - gitweb
LUDOC 299 protocol: Spell-check document
[doc/protocol.git] / struct_obd_uuid.txt
1 .Object Based Disk UUID
2 [[struct-obd-uuid]]
3 ****
4 [source,c]
5 ----
6 #define UUID_MAX        40
7 struct obd_uuid {
8         char uuid[UUID_MAX];
9 };
10 ----
11
12 The 'uuid' contains an ASCII-formatted string that identifies
13 the entity uniquely within the filesystem.  Clients use an RFC-4122
14 hexadecimal UUID of the form ''de305d54-75b4-431b-adb2-eb6b9e546014''
15 that is randomly generated.  Servers may use a string-based identifier
16 of the form ''fsname-TGTindx_UUID''.
17 ****