diff options
| author | Christian König <[email protected]> | 2021-02-02 11:40:01 +0000 |
|---|---|---|
| committer | Christian König <[email protected]> | 2021-02-05 09:47:11 +0000 |
| commit | f2f12eb9c32bc7a714276d8862efac2e7c41bcbe (patch) | |
| tree | 255ef8e8adf963deb610ee7140fafa94d151fa52 /drivers/gpu/drm/lima/lima_sched.c | |
| parent | drm/qxl: allocate dumb buffers in ram (diff) | |
| download | kernel-f2f12eb9c32bc7a714276d8862efac2e7c41bcbe.tar.gz kernel-f2f12eb9c32bc7a714276d8862efac2e7c41bcbe.zip | |
drm/scheduler: provide scheduler score externally
Allow multiple schedulers to share the load balancing score.
This is useful when one engine has different hw rings.
Signed-off-by: Christian König <[email protected]>
Reviewed-and-Tested-by: Leo Liu <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/lima/lima_sched.c')
| -rw-r--r-- | drivers/gpu/drm/lima/lima_sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/lima/lima_sched.c b/drivers/gpu/drm/lima/lima_sched.c index 20dafa62980f..ecf3267334ff 100644 --- a/drivers/gpu/drm/lima/lima_sched.c +++ b/drivers/gpu/drm/lima/lima_sched.c @@ -509,7 +509,7 @@ int lima_sched_pipe_init(struct lima_sched_pipe *pipe, const char *name) return drm_sched_init(&pipe->base, &lima_sched_ops, 1, lima_job_hang_limit, msecs_to_jiffies(timeout), - name); + NULL, name); } void lima_sched_pipe_fini(struct lima_sched_pipe *pipe) |
