Commit c0775734fd16ab18c34bd938e0b404640e50d459

Con Kolivas 2012-01-01T08:47:07

Again do not attempt to restart a hung device with the every minute attempted restart.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/main.c b/main.c
index 30da2b8..747d79f 100644
--- a/main.c
+++ b/main.c
@@ -5329,6 +5329,11 @@ static void *watchdog_thread(void *userdata)
 			} else if (now.tv_sec - thr->sick.tv_sec > 60 && gpus[i].status == LIFE_SICK) {
 				/* Attempt to restart a GPU once every minute */
 				gettimeofday(&thr->sick, NULL);
+#ifdef HAVE_ADL
+				if (adl_active && gpus[gpu].has_adl && gpu_activity(gpu) > 50) {
+					/* Again do not attempt to restart a device that may have hard hung */
+				} else
+#endif
 				if (opt_restart)
 					reinit_device(thr->cgpu);
 			}