diff options
| author | Raghavendra G <raghavendra@gluster.com> | 2010-04-06 02:16:01 +0000 | 
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2010-04-08 03:08:39 -0700 | 
| commit | ab9fc36210071f95d5cb723e0fb9b738d31c8651 (patch) | |
| tree | 72edb5c0b433b85c3e99f8a2c533b136f3ad30ca | |
| parent | 9daf76661fcaee2e607b371c91cb7600f51bf678 (diff) | |
core/protocol.h: add nanosecond resolution handling while converting to/from gf_stat_t and stat.
Signed-off-by: Raghavendra G <raghavendra@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 801 (Direct io-mode support and related changes in caching translators.)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=801
| -rw-r--r-- | libglusterfs/src/protocol.h | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/libglusterfs/src/protocol.h b/libglusterfs/src/protocol.h index c3e84866fa9..3efe5356744 100644 --- a/libglusterfs/src/protocol.h +++ b/libglusterfs/src/protocol.h @@ -75,9 +75,11 @@ gf_stat_to_stat (struct gf_stat *gf_stat, struct stat *stat)  	stat->st_blksize      = ntoh32 (gf_stat->blksize);  	stat->st_blocks       = ntoh64 (gf_stat->blocks);  	stat->st_atime        = ntoh32 (gf_stat->atime); +        ST_ATIM_NSEC_SET(stat, gf_stat->atime_nsec);  	stat->st_mtime        = ntoh32 (gf_stat->mtime); +        ST_MTIM_NSEC_SET(stat, gf_stat->mtime_nsec);  	stat->st_ctime        = ntoh32 (gf_stat->ctime); -	/* TODO: handle nsec */ +        ST_CTIM_NSEC_SET(stat, gf_stat->ctime_nsec);  } @@ -95,9 +97,11 @@ gf_stat_from_stat (struct gf_stat *gf_stat, struct stat *stat)  	gf_stat->blksize     = hton32 (stat->st_blksize);  	gf_stat->blocks      = hton64 (stat->st_blocks);  	gf_stat->atime       = hton32 (stat->st_atime); +        gf_stat->atime_nsec  = hton32 (ST_ATIM_NSEC(stat));  	gf_stat->mtime       = hton32 (stat->st_mtime); +        gf_stat->mtime_nsec  = hton32 (ST_MTIM_NSEC(stat));  	gf_stat->ctime       = hton32 (stat->st_ctime); -	/* TODO: handle nsec */ +        gf_stat->ctime_nsec  = hton32 (ST_CTIM_NSEC(stat));  }  | 
