From b5184d6e75b884f98c8aea37d1604f0a244b31cc Mon Sep 17 00:00:00 2001 From: Max Rijevski Date: Thu, 7 Apr 2016 13:11:20 -0700 Subject: performance/io-threads: Reduce the number of timing calls in iot_worker Summary: - Reduce the amount of unnecessary timing calls in iot_worker servicing. - The current logic is unnecessarily accurate and hurts performance for many small FOPS. Change-Id: I6db4f1ad9a48d9d474bb251a2204969061021954 BUG: 1522950 Signed-off-by: Shreyas Siravara Reviewed-on: http://review.gluster.org/16081 Smoke: Gluster Build System NetBSD-regression: NetBSD Build System CentOS-regression: Gluster Build System Reviewed-by: Kevin Vigor --- libglusterfs/src/compat.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libglusterfs/src') diff --git a/libglusterfs/src/compat.h b/libglusterfs/src/compat.h index 0cf19b099f8..af192f3c73f 100644 --- a/libglusterfs/src/compat.h +++ b/libglusterfs/src/compat.h @@ -490,6 +490,10 @@ int gf_mkostemp (char *tmpl, int suffixlen, int flags); #define ST_CTIM_NSEC_SET(stbuf, val) do { } while (0); #endif +#ifdef GF_BSD_HOST_OS +#define CLOCK_REALTIME_COARSE CLOCK_REALTIME +#endif + #ifndef IPV6_DEFAULT #ifndef IXDR_GET_LONG -- cgit