summaryrefslogtreecommitdiffstats
path: root/xlators/performance/quick-read/src/quick-read.c
diff options
context:
space:
mode:
authorVijay Bellur <vijay@gluster.com>2012-03-10 17:22:55 +0530
committerVijay Bellur <vijay@gluster.com>2012-03-11 23:52:11 -0700
commit152a0194e736e073d96fedd980b976cc1f1d4df8 (patch)
tree6e6a631ec2dc9aef56b6b37964170def71f4d938 /xlators/performance/quick-read/src/quick-read.c
parent7157a2cf42c4cf7c2ec2805e0732b49ebabd975e (diff)
Print non-zero timestamps in statedumpv3.3.0qa27
Change-Id: I686842bc0934128b825828066f613c2a6280ceb9 BUG: 801689 Reviewed-on: http://review.gluster.com/2912 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Amar Tumballi <amarts@redhat.com> Reviewed-by: Vijay Bellur <vijay@gluster.com>
Diffstat (limited to 'xlators/performance/quick-read/src/quick-read.c')
-rw-r--r--xlators/performance/quick-read/src/quick-read.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/xlators/performance/quick-read/src/quick-read.c b/xlators/performance/quick-read/src/quick-read.c
index a64e63de4ba..1d682b62dce 100644
--- a/xlators/performance/quick-read/src/quick-read.c
+++ b/xlators/performance/quick-read/src/quick-read.c
@@ -3164,12 +3164,14 @@ qr_inodectx_dump (xlator_t *this, inode_t *inode)
gf_proc_dump_write ("entire-file-cached", "%s", qr_inode->xattr ? "yes" : "no");
- tm = localtime (&qr_inode->tv.tv_sec);
- strftime (buf, 256, "%Y-%m-%d %H:%M:%S", tm);
- snprintf (buf + strlen (buf), 256 - strlen (buf),
- ".%"GF_PRI_SUSECONDS, qr_inode->tv.tv_usec);
+ if (qr_inode->tv.tv_sec) {
+ tm = localtime (&qr_inode->tv.tv_sec);
+ strftime (buf, 256, "%Y-%m-%d %H:%M:%S", tm);
+ snprintf (buf + strlen (buf), 256 - strlen (buf),
+ ".%"GF_PRI_SUSECONDS, qr_inode->tv.tv_usec);
- gf_proc_dump_write ("last-cache-validation-time", "%s", buf);
+ gf_proc_dump_write ("last-cache-validation-time", "%s", buf);
+ }
ret = 0;
out: