Commit 07212db106a1cc654affe3b95bf8acff7b8ed752

Con Kolivas 2012-05-31T08:34:06

Restarting cgminer from within after ADL has been corrupted only leads to a crash. Display a warning only and disable fanspeed monitoring.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/adl.c b/adl.c
index 837f24c..6ed6a18 100644
--- a/adl.c
+++ b/adl.c
@@ -692,11 +692,7 @@ int gpu_fanpercent(int gpu)
 	unlock_adl();
 	if (unlikely(ga->has_fanspeed && ret == -1)) {
 		applog(LOG_WARNING, "GPU %d stopped reporting fanspeed due to driver corruption", gpu);
-		if (opt_restart) {
-			applog(LOG_WARNING, "Restart enabled, will restart cgminer");
-			applog(LOG_WARNING, "You can disable this with the --no-restart option");
-			app_restart();
-		}
+		applog(LOG_WARNING, "You will need to start cgminer from scratch to correct this");
 		applog(LOG_WARNING, "Disabling fanspeed monitoring on this device");
 		ga->has_fanspeed = false;
 	}