commit | 1f041a89b4f22cf2e701514f4b8f73a8b1e06a3e | [log] [tgz] |
---|---|---|
author | Yan, Zheng <zyan@redhat.com> | Tue Jan 13 15:20:52 2015 +0800 |
committer | Ilya Dryomov <idryomov@gmail.com> | Thu Feb 19 13:31:39 2015 +0300 |
tree | eb4f21b020338f22264a413ef39f47ec9c5ddb01 | |
parent | fcc02d2a03fc629b82d1ca1006fbd06570385264 [diff] |
ceph: fix request time stamp encoding struct timespec uses 'long' to present second and nanosecond. 'long' is 64 bits on 64bits machine. ceph MDS expects time stamp to be encoded as struct ceph_timespec, which uses 'u32' to present second and nanosecond. Signed-off-by: Yan, Zheng <zyan@redhat.com>