]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: Fixup 64bit divides in timelines selftest
authorChris Wilson <chris@chris-wilson.co.uk>
Sat, 13 May 2017 09:41:54 +0000 (10:41 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Mon, 15 May 2017 13:40:44 +0000 (14:40 +0100)
Some 64b divides snuck in when doing the prng timing compensation.

Fixes: 4797948071f6 ("drm/i915: Squash repeated awaits on the same fence")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170513094154.3581-1-chris@chris-wilson.co.uk
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
drivers/gpu/drm/i915/selftests/i915_gem_timeline.c

index 6df00cc02c1274802f52b2db3de64f9283ce7791..7a44dab631b8ece99c8b7d4d50b19dfbdb982bff 100644 (file)
@@ -126,7 +126,6 @@ static unsigned int random_engine(struct rnd_state *rnd)
 
 static int bench_sync(void *arg)
 {
-#define M (1 << 20)
        struct rnd_state prng;
        struct intel_timeline *tl;
        unsigned long end_time, count;
@@ -158,7 +157,7 @@ static int bench_sync(void *arg)
        kt = ktime_sub(ktime_get(), kt);
        pr_debug("%s: %lu random evaluations, %lluns/prng\n",
                 __func__, count, (long long)div64_ul(ktime_to_ns(kt), count));
-       prng32_1M = ktime_to_ns(kt) * M / count;
+       prng32_1M = div64_ul(ktime_to_ns(kt) << 20, count);
 
        /* Benchmark (only) setting random context ids */
        prandom_seed_state(&prng, i915_selftest.random_seed);
@@ -172,7 +171,7 @@ static int bench_sync(void *arg)
                count++;
        } while (!time_after(jiffies, end_time));
        kt = ktime_sub(ktime_get(), kt);
-       kt = ktime_sub_ns(kt, count * prng32_1M * 2 / M);
+       kt = ktime_sub_ns(kt, (count * prng32_1M * 2) >> 20);
        pr_info("%s: %lu random insertions, %lluns/insert\n",
                __func__, count, (long long)div64_ul(ktime_to_ns(kt), count));
 
@@ -190,7 +189,7 @@ static int bench_sync(void *arg)
                }
        }
        kt = ktime_sub(ktime_get(), kt);
-       kt = ktime_sub_ns(kt, count * prng32_1M * 2 / M);
+       kt = ktime_sub_ns(kt, (count * prng32_1M * 2) >> 20);
        pr_info("%s: %lu random lookups, %lluns/lookup\n",
                __func__, count, (long long)div64_ul(ktime_to_ns(kt), count));
 
@@ -248,7 +247,7 @@ static int bench_sync(void *arg)
                count++;
        } while (!time_after(jiffies, end_time));
        kt = ktime_sub(ktime_get(), kt);
-       kt = ktime_sub_ns(kt, count * prng32_1M * 2 / M);
+       kt = ktime_sub_ns(kt, (count * prng32_1M * 2) >> 20);
        pr_info("%s: %lu repeated insert/lookups, %lluns/op\n",
                __func__, count, (long long)div64_ul(ktime_to_ns(kt), count));
        mock_timeline_destroy(tl);
@@ -287,7 +286,6 @@ static int bench_sync(void *arg)
        }
 
        return 0;
-#undef M
 }
 
 int i915_gem_timeline_mock_selftests(void)