1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-02 10:04:33 +00:00

Revert "Take into account total_queued as well when deciding whether to queue a fresh request or not."

This reverts commit b20089fdb70a52ec029375beecebfd47efaee218.
This commit is contained in:
Con Kolivas 2012-06-24 21:57:18 +10:00
parent 750474bcfb
commit a05c8e3fd9

View File

@ -3501,9 +3501,8 @@ static bool queue_request(struct thr_info *thr, bool needed)
int rs = requests_staged(), rq = requests_queued();
struct workio_cmd *wc;
if ((rq >= mining_threads || (rq >= opt_queue && rs >= mining_threads)) &&
total_queued >= opt_queue)
return true;
if (rq >= mining_threads || (rq >= opt_queue && rs >= mining_threads))
return true;
/* fill out work request message */
wc = calloc(1, sizeof(*wc));
@ -4336,7 +4335,7 @@ static void *watchdog_thread(void __maybe_unused *userdata)
struct timeval now;
sleep(interval);
if (requests_queued() < opt_queue || total_queued < opt_queue)
if (requests_queued() < opt_queue)
queue_request(NULL, false);
age_work();