1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Merge branch 'master' of github.com:ckolivas/cgminer

This commit is contained in:
ckolivas 2012-12-24 10:34:06 +11:00
commit 9fd60bb53a

View File

@ -2998,14 +2998,14 @@ static struct work *make_clone(struct work *work)
static void stage_work(struct work *work);
/* Called with stgd_lock held */
static bool __clone_available(void)
static bool clone_available(void)
{
struct work *work, *tmp;
bool cloned = false;
mutex_lock(stgd_lock);
if (!staged_rollable)
goto out;
goto out_unlock;
HASH_ITER(hh, staged_work, work, tmp) {
if (can_roll(work) && should_roll(work)) {
@ -3021,7 +3021,9 @@ static bool __clone_available(void)
}
}
out:
out_unlock:
mutex_unlock(stgd_lock);
return cloned;
}
@ -6863,7 +6865,7 @@ retry:
continue;
}
if (__clone_available()) {
if (clone_available()) {
applog(LOG_DEBUG, "Cloned getwork work");
free_work(work);
continue;