From: Carsten Haitzler (Rasterman) Date: Wed, 27 Aug 2014 09:26:58 +0000 (+0900) Subject: ecore vsync - work around old kernels by blacklisting them X-Git-Tag: upstream/1.11.0+317+g6c7e5b0~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4ed80dc1ec9207c33ab42d52b66704756987e2b;p=platform%2Fupstream%2Fefl.git ecore vsync - work around old kernels by blacklisting them this is a bug workaround apparently old kernels that seems to get vsync and timestamps wrong. 3.14 kernels and up only for now @bug --- diff --git a/src/lib/ecore_x/xlib/ecore_x_vsync.c b/src/lib/ecore_x/xlib/ecore_x_vsync.c index a854af8..eda7fce 100644 --- a/src/lib/ecore_x/xlib/ecore_x_vsync.c +++ b/src/lib/ecore_x/xlib/ecore_x_vsync.c @@ -356,6 +356,27 @@ _drm_init(void) */ return 0; } + // only do this on new kernels = let's say 3.14 and up. 3.16 definitely + // works + { + Eina_Bool ok = EINA_FALSE; + + FILE *fp = fopen("/proc/sys/kernel/osrelease", "r"); + if (fp) + { + if (fgets(buf, sizeof(buf), fp)) + { + int vmaj = 0, vmin = 0; + + if (sscanf(buf, "%i.%i.%*s", &vmaj, &vmin) == 2) + { + if ((vmaj >= 3) && (vmin >= 14)) ok = EINA_TRUE; + } + } + fclose(fp); + } + if (!ok) return 0; + } snprintf(buf, sizeof(buf), "/dev/dri/card1"); if (stat(buf, &st) == 0)