comparison rvinterf/etmsync/localstruct.h @ 282:517e8a428fde

fc-fsio: xlstat operation implemented
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 25 Feb 2014 07:42:21 +0000
parents
children
comparison
equal deleted inserted replaced
281:082d12a1651e 282:517e8a428fde
1 /*
2 * The struct defined below captures the results of a stat (actually xlstat)
3 * operation on the target; it is a host (aka local) struct, with host byte
4 * ordering, alignment and data types.
5 */
6
7 struct stat_info {
8 u8 type;
9 u8 flags;
10 int inode;
11 u32 size; // size of data space occupied by object
12 u32 space; // size of physical data space occupied by object
13 u32 location;
14 u8 block;
15 u16 sequence;
16 u16 updates;
17 };