Browse Source

work queue: verbose log as to why staged work is being discarded.

djm34
Noel Maersk 11 years ago
parent
commit
78014ab0d5
  1. 7
      sgminer.c

7
sgminer.c

@ -6483,6 +6483,7 @@ struct work *get_work(struct thr_info *thr, const int thr_id) @@ -6483,6 +6483,7 @@ struct work *get_work(struct thr_info *thr, const int thr_id)
while (!work) {
work = hash_pop(true);
if (stale_work(work, false)) {
applog(LOG_DEBUG, "Work is stale, discarding");
discard_work(work);
work = NULL;
wake_gws();
@ -8516,8 +8517,12 @@ begin_bench: @@ -8516,8 +8517,12 @@ begin_bench:
* used to keep last_getwork incrementing and to see
* if pools are still alive. */
work = hash_pop(false);
if (work)
if (work) {
applog(LOG_DEBUG,
"Staged work: total (%d) > max (%d), discarding",
ts, max_staged);
discard_work(work);
}
continue;
}

Loading…
Cancel
Save