summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/glusterfs/timespec.h
diff options
context:
space:
mode:
authorKotresh HR <khiremat@redhat.com>2019-08-20 15:49:40 +0530
committerRinku Kothiya <rkothiya@redhat.com>2019-08-28 05:49:36 +0000
commitb85d550a552d485f4a7f1eedbc00bdf1f67d6263 (patch)
tree12a0b29cd8cb70404277f2d7e2ad88bc7b89a077 /libglusterfs/src/glusterfs/timespec.h
parent6ec6db07da2761a35e003ff485f66bae2037c442 (diff)
ctime: Fix incorrect realtime passed to frame->root->ctime
On systems that don't support "timespec_get"(e.g., centos6), it was using "clock_gettime" with "CLOCK_MONOTONIC" to get unix epoch time which is incorrect. This patch introduces "timespec_now_realtime" which uses "clock_gettime" with "CLOCK_REALTIME" which fixes the issue. Backport of: > Patch: https://review.gluster.org/23274/ > Change-Id: I57be35ce442d7e05319e82112b687eb4f28d7612 > Signed-off-by: Kotresh HR <khiremat@redhat.com> > BUG: 1743652 (cherry picked from commit d14d0749340d9cb1ef6fc4b35f2fb3015ed0339d) Change-Id: I57be35ce442d7e05319e82112b687eb4f28d7612 Signed-off-by: Kotresh HR <khiremat@redhat.com> fixes: bz#1746145
Diffstat (limited to 'libglusterfs/src/glusterfs/timespec.h')
-rw-r--r--libglusterfs/src/glusterfs/timespec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs/timespec.h b/libglusterfs/src/glusterfs/timespec.h
index 871871d538c..bb9ab446a5f 100644
--- a/libglusterfs/src/glusterfs/timespec.h
+++ b/libglusterfs/src/glusterfs/timespec.h
@@ -21,6 +21,8 @@
void
timespec_now(struct timespec *ts);
void
+timespec_now_realtime(struct timespec *ts);
+void
timespec_adjust_delta(struct timespec *ts, struct timespec delta);
void
timespec_sub(const struct timespec *begin, const struct timespec *end,