mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
work queue: verbose log as to why staged work is being discarded.
This commit is contained in:
parent
7024d14c88
commit
78014ab0d5
@ -6483,6 +6483,7 @@ struct work *get_work(struct thr_info *thr, const int thr_id)
|
|||||||
while (!work) {
|
while (!work) {
|
||||||
work = hash_pop(true);
|
work = hash_pop(true);
|
||||||
if (stale_work(work, false)) {
|
if (stale_work(work, false)) {
|
||||||
|
applog(LOG_DEBUG, "Work is stale, discarding");
|
||||||
discard_work(work);
|
discard_work(work);
|
||||||
work = NULL;
|
work = NULL;
|
||||||
wake_gws();
|
wake_gws();
|
||||||
@ -8516,8 +8517,12 @@ begin_bench:
|
|||||||
* used to keep last_getwork incrementing and to see
|
* used to keep last_getwork incrementing and to see
|
||||||
* if pools are still alive. */
|
* if pools are still alive. */
|
||||||
work = hash_pop(false);
|
work = hash_pop(false);
|
||||||
if (work)
|
if (work) {
|
||||||
|
applog(LOG_DEBUG,
|
||||||
|
"Staged work: total (%d) > max (%d), discarding",
|
||||||
|
ts, max_staged);
|
||||||
discard_work(work);
|
discard_work(work);
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user