All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf
@ 2022-08-19 20:09 ` Karol Herbst
  0 siblings, 0 replies; 37+ messages in thread
From: Karol Herbst @ 2022-08-19 20:09 UTC (permalink / raw)
  To: linux-kernel
  Cc: Ben Skeggs, Lyude Paul, dri-devel, nouveau, Karol Herbst, stable

It is a bit unlcear to us why that's helping, but it does and unbreaks
suspend/resume on a lot of GPUs without any known drawbacks.

Cc: stable@vger.kernel.org # v5.15+
Closes: https://gitlab.freedesktop.org/drm/nouveau/-/issues/156
Signed-off-by: Karol Herbst <kherbst@redhat.com>
---
 drivers/gpu/drm/nouveau/nouveau_bo.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c
index 35bb0bb3fe61..126b3c6e12f9 100644
--- a/drivers/gpu/drm/nouveau/nouveau_bo.c
+++ b/drivers/gpu/drm/nouveau/nouveau_bo.c
@@ -822,6 +822,15 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict,
 		if (ret == 0) {
 			ret = nouveau_fence_new(chan, false, &fence);
 			if (ret == 0) {
+				/* TODO: figure out a better solution here
+				 *
+				 * wait on the fence here explicitly as going through
+				 * ttm_bo_move_accel_cleanup somehow doesn't seem to do it.
+				 *
+				 * Without this the operation can timeout and we'll fallback to a
+				 * software copy, which might take several minutes to finish.
+				 */
+				nouveau_fence_wait(fence, false, false);
 				ret = ttm_bo_move_accel_cleanup(bo,
 								&fence->base,
 								evict, false,
-- 
2.37.1


^ permalink raw reply related	[flat|nested] 37+ messages in thread

end of thread, other threads:[~2023-02-01 19:24 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-19 20:09 [PATCH] nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf Karol Herbst
2022-08-19 20:09 ` Karol Herbst
2022-08-19 20:09 ` [Nouveau] " Karol Herbst
2022-08-22 21:15 ` Lyude Paul
2022-08-22 21:15   ` Lyude Paul
2022-08-22 21:15   ` [Nouveau] " Lyude Paul
2022-09-20 10:42 ` Salvatore Bonaccorso
2022-09-20 10:42   ` Salvatore Bonaccorso
2022-09-20 10:42   ` [Nouveau] " Salvatore Bonaccorso
2022-09-20 11:36   ` Karol Herbst
2022-09-20 11:36     ` Karol Herbst
2022-09-20 11:36     ` [Nouveau] " Karol Herbst
2022-09-20 11:59     ` Salvatore Bonaccorso
2022-09-20 11:59       ` Salvatore Bonaccorso
2022-09-20 11:59       ` [Nouveau] " Salvatore Bonaccorso
2022-09-30 21:09       ` Computer Enthusiastic
2022-09-30 21:09         ` Computer Enthusiastic
2022-09-30 21:09         ` Computer Enthusiastic
2022-11-01  6:44 ` [Nouveau] " Computer Enthusiastic
2022-11-01 10:46   ` Karol Herbst
2022-12-23  9:43     ` Computer Enthusiastic
2023-01-28 14:49       ` Computer Enthusiastic
2023-01-28 14:49         ` Computer Enthusiastic
2023-01-28 17:51         ` Greg KH
2023-01-28 17:51           ` Greg KH
2023-01-28 19:49           ` Salvatore Bonaccorso
2023-01-28 19:49             ` Salvatore Bonaccorso
2023-01-29 21:36             ` Computer Enthusiastic
2023-01-29 21:36               ` Computer Enthusiastic
2023-01-30 10:05               ` Greg KH
2023-01-30 10:05                 ` Greg KH
2023-01-30 22:27                 ` Lyude Paul
2023-01-30 22:27                   ` Lyude Paul
2023-02-01 19:24                   ` Computer Enthusiastic
2023-02-01 19:24                     ` Computer Enthusiastic
2022-11-19  5:20 ` Computer Enthusiastic
2022-11-19  5:20   ` Computer Enthusiastic

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.