Skip to content

Commit

Permalink
drm/i915: Trim set_timer_ms() intervals
Browse files Browse the repository at this point in the history
Use the plain msec_to_jiffies() rather than the _timeout variant so we
round down and do not add an extra jiffy to our interval. For example,
with timeslicing we do not want to err on the longer side as any
fairness depends on catching hogging contexts on the GPU. Bring on
CFS.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200604135938.3975-1-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson committed Jun 4, 2020
1 parent 57a78ca commit f4bb45f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 18 deletions.
29 changes: 12 additions & 17 deletions drivers/gpu/drm/i915/gt/selftest_lrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1140,9 +1140,17 @@ static struct i915_request *nop_request(struct intel_engine_cs *engine)
return rq;
}

static long timeslice_threshold(const struct intel_engine_cs *engine)
static long slice_timeout(struct intel_engine_cs *engine)
{
return 2 * msecs_to_jiffies_timeout(timeslice(engine)) + 1;
long timeout;

/* Enough time for a timeslice to kick in, and kick out */
timeout = 2 * msecs_to_jiffies_timeout(timeslice(engine));

/* Enough time for the nop request to complete */
timeout += HZ / 5;

return timeout + 1;
}

static int live_timeslice_queue(void *arg)
Expand Down Expand Up @@ -1260,7 +1268,7 @@ static int live_timeslice_queue(void *arg)
}

/* Timeslice every jiffy, so within 2 we should signal */
if (i915_request_wait(rq, 0, timeslice_threshold(engine)) < 0) {
if (i915_request_wait(rq, 0, slice_timeout(engine)) < 0) {
struct drm_printer p =
drm_info_printer(gt->i915->drm.dev);

Expand Down Expand Up @@ -1379,7 +1387,7 @@ static int live_timeslice_nopreempt(void *arg)
* allow the maximum priority barrier through. Wait long
* enough to see if it is timesliced in by mistake.
*/
if (i915_request_wait(rq, 0, timeslice_threshold(engine)) >= 0) {
if (i915_request_wait(rq, 0, slice_timeout(engine)) >= 0) {
pr_err("%s: I915_PRIORITY_BARRIER request completed, bypassing no-preempt request\n",
engine->name);
err = -EINVAL;
Expand Down Expand Up @@ -3890,19 +3898,6 @@ static int live_virtual_mask(void *arg)
return 0;
}

static long slice_timeout(struct intel_engine_cs *engine)
{
long timeout;

/* Enough time for a timeslice to kick in, and kick out */
timeout = 2 * msecs_to_jiffies_timeout(timeslice(engine));

/* Enough time for the nop request to complete */
timeout += HZ / 5;

return timeout;
}

static int slicein_virtual_engine(struct intel_gt *gt,
struct intel_engine_cs **siblings,
unsigned int nsibling)
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void set_timer_ms(struct timer_list *t, unsigned long timeout)
return;
}

timeout = msecs_to_jiffies_timeout(timeout);
timeout = msecs_to_jiffies(timeout);

/*
* Paranoia to make sure the compiler computes the timeout before
Expand Down

0 comments on commit f4bb45f

Please sign in to comment.