Commit 1bb3f6a2 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: fix minor thinko causing bo moves to not be async on kepler

Reported-by: default avatarMaarten Lankhorst <maarten.lankhorst@canonical.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent bf03d1b2
...@@ -968,7 +968,7 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr, ...@@ -968,7 +968,7 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
bool no_wait_gpu, struct ttm_mem_reg *new_mem) bool no_wait_gpu, struct ttm_mem_reg *new_mem)
{ {
struct nouveau_drm *drm = nouveau_bdev(bo->bdev); struct nouveau_drm *drm = nouveau_bdev(bo->bdev);
struct nouveau_channel *chan = chan = drm->channel; struct nouveau_channel *chan = chan = drm->ttm.chan;
struct nouveau_bo *nvbo = nouveau_bo(bo); struct nouveau_bo *nvbo = nouveau_bo(bo);
struct ttm_mem_reg *old_mem = &bo->mem; struct ttm_mem_reg *old_mem = &bo->mem;
int ret; int ret;
...@@ -1052,6 +1052,7 @@ nouveau_bo_move_init(struct nouveau_drm *drm) ...@@ -1052,6 +1052,7 @@ nouveau_bo_move_init(struct nouveau_drm *drm)
} }
drm->ttm.move = mthd->exec; drm->ttm.move = mthd->exec;
drm->ttm.chan = chan;
name = mthd->name; name = mthd->name;
break; break;
} }
......
...@@ -96,6 +96,7 @@ struct nouveau_drm { ...@@ -96,6 +96,7 @@ struct nouveau_drm {
int (*move)(struct nouveau_channel *, int (*move)(struct nouveau_channel *,
struct ttm_buffer_object *, struct ttm_buffer_object *,
struct ttm_mem_reg *, struct ttm_mem_reg *); struct ttm_mem_reg *, struct ttm_mem_reg *);
struct nouveau_channel *chan;
int mtrr; int mtrr;
} ttm; } ttm;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment