Li Qiang 8495f9ad26 9pfs: convert 'len/copied_len' field in V9fsXattr to the type of uint64_t
The 'len' in V9fsXattr comes from the 'size' argument in setxattr()
function in guest. The setxattr() function's declaration is this:

int setxattr(const char *path, const char *name,
             const void *value, size_t size, int flags);

and 'size' is treated as u64 in linux kernel client code:

int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
                          u64 attr_size, int flags)

So the 'len' should have an type of 'uint64_t'.
The 'copied_len' in V9fsXattr is used to account for copied bytes, it
should also have an type of 'uint64_t'.

Suggested-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Li Qiang <liqiang6-s@360.cn>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Greg Kurz <groug@kaod.org>
2016-11-01 12:03:01 +01:00
..
2016-10-28 15:51:27 +01:00
2016-10-31 12:35:39 +00:00
2016-10-31 12:35:39 +00:00
2016-10-31 12:35:39 +00:00
2016-10-28 15:51:27 +01:00
2016-10-31 15:29:12 +00:00
2016-10-28 17:54:21 -07:00
2016-10-31 11:58:30 +00:00
2016-10-31 15:29:12 +00:00
2016-10-31 10:10:16 +00:00
2016-10-28 18:17:24 +03:00
2016-10-31 12:35:39 +00:00
2016-10-28 17:54:49 -07:00