Browse Source

Don't disable and re-enable devices as they may recover and in the meantime have their status set to OFF.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
5404ebcd88
  1. 4
      device-gpu.c

4
device-gpu.c

@ -648,7 +648,6 @@ retry: @@ -648,7 +648,6 @@ retry:
continue;
if (cgpu->status != LIFE_WELL) {
wlogprint("Must restart device before enabling it");
gpus[selected].deven = DEV_DISABLED;
goto retry;
}
applog(LOG_DEBUG, "Pushing ping to thread %d", thr->id);
@ -985,7 +984,6 @@ select_cgpu: @@ -985,7 +984,6 @@ select_cgpu:
}
gpu = cgpu->device_id;
cgpu->deven = DEV_DISABLED;
for (thr_id = 0; thr_id < mining_threads; ++thr_id) {
thr = &thr_info[thr_id];
@ -1010,8 +1008,6 @@ select_cgpu: @@ -1010,8 +1008,6 @@ select_cgpu:
applog(LOG_WARNING, "Thread %d no longer exists", thr_id);
}
cgpu->deven = DEV_ENABLED;
for (thr_id = 0; thr_id < mining_threads; ++thr_id) {
int virtual_gpu;

Loading…
Cancel
Save