Whamcloud - gitweb
LUDOC-297 protocol: Update protocol document
[doc/protocol.git] / struct_lustre_handle.txt
1 .Lustre Handle
2 [[struct-lustre-handle]]
3 ****
4 A 'lustre_handle' is an opaque cookie that identifies some local
5 object to another node or another layer in the software stack.  It can
6 identify a variety of different types of objects, such as
7 client-target connections, open file handles, DLM lock handles, etc.
8 The meaning of the handle is dependent on the context in which it is
9 used.
10
11 [source,c]
12 ----
13 struct lustre_handle {
14         __u64 cookie;
15 };
16 ----
17 ****