Whamcloud - gitweb
LUDOC-296 protocol: Reorganize the document ot be top-down
[doc/protocol.git] / ost_lvb.txt
1 OST Lock Value Block
2 ^^^^^^^^^^^^^^^^^^^^
3 [[struct-ost-lvb]]
4
5 The 'ost_lvb' structure is a "lock value block", and encompasses
6 attribute data for resources on the OST. It is an optional part of an
7 LDLM_ENQUEUE reply RPC .
8
9 ----
10 struct ost_lvb {
11         __u64   lvb_size;
12         __s64   lvb_mtime;
13         __s64   lvb_atime;
14         __s64   lvb_ctime;
15         __u64   lvb_blocks;
16         __u32   lvb_mtime_ns;
17         __u32   lvb_atime_ns;
18         __u32   lvb_ctime_ns;
19         __u32   lvb_padding;
20 };
21 ----