Commit a011fe5182312b2e705a70ae0991be024e16a645

Con Kolivas 2013-07-03T22:40:47

Check for a timeout in avalon_scanhash and post to the write sem if we receive one.

diff --git a/driver-avalon.c b/driver-avalon.c
index 57af367..d6aaa4d 100644
--- a/driver-avalon.c
+++ b/driver-avalon.c
@@ -1200,6 +1200,7 @@ static int64_t avalon_scanhash(struct thr_info *thr)
 	struct timeval now, then, tdiff;
 	int64_t hash_count, us_timeout;
 	struct timespec abstime;
+	int ret;
 
 	/* Half nonce range */
 	us_timeout = 0x80000000ll / info->asic_count / info->frequency;
@@ -1213,9 +1214,14 @@ static int64_t avalon_scanhash(struct thr_info *thr)
 	/* Wait until avalon_send_tasks signals us that it has completed
 	 * sending its work or a full nonce range timeout has occurred */
 	mutex_lock(&info->qlock);
-	pthread_cond_timedwait(&info->qcond, &info->qlock, &abstime);
+	ret = pthread_cond_timedwait(&info->qcond, &info->qlock, &abstime);
 	mutex_unlock(&info->qlock);
 
+	/* If we timed out, avalon_send_tasks may be stuck waiting on the
+	 * write_sem, so force it to check for avalon_buffer_full itself. */
+	if (ret)
+		cgsem_post(&info->write_sem);
+
 	mutex_lock(&info->lock);
 	hash_count = 0xffffffffull * (uint64_t)info->nonces;
 	avalon->results += info->nonces + info->idle;