Browse Source

Count longpoll and GBT decodes as queued work since the count otherwise remains static.

Con Kolivas 13 years ago
parent
commit
bc4f6d928a
1 changed files with 7 additions and 0 deletions
  1. 7 0
      cgminer.c

+ 7 - 0
cgminer.c

@@ -5690,6 +5690,8 @@ static void convert_to_work(json_t *val, int rolltime, struct pool *pool, struct
 		free_work(work);
 		free_work(work);
 		return;
 		return;
 	}
 	}
+	total_getworks++;
+	pool->getwork_requested++;
 	work->pool = pool;
 	work->pool = pool;
 	work->rolltime = rolltime;
 	work->rolltime = rolltime;
 	memcpy(&(work->tv_getwork), tv_lp, sizeof(struct timeval));
 	memcpy(&(work->tv_getwork), tv_lp, sizeof(struct timeval));
@@ -5939,6 +5941,10 @@ static bool pool_getswork(struct pool *pool)
 		struct work *work = make_work();
 		struct work *work = make_work();
 		bool rc = work_decode(pool, work, val);
 		bool rc = work_decode(pool, work, val);
 
 
+		if (pool->has_gbt && pool == current_pool()) {
+			total_getworks++;
+			pool->getwork_requested++;
+		}
 		if (rc) {
 		if (rc) {
 			applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
 			applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
 			       pool->pool_no, pool->rpc_url);
 			       pool->pool_no, pool->rpc_url);
@@ -5955,6 +5961,7 @@ static bool pool_getswork(struct pool *pool)
 		       pool->pool_no, pool->rpc_url);
 		       pool->pool_no, pool->rpc_url);
 	}
 	}
 	curl_easy_cleanup(curl);
 	curl_easy_cleanup(curl);
+
 	return ret;
 	return ret;
 }
 }