mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-23 13:04:29 +00:00
Rollback breakage to 81567e515707891837f52bc3aac7d5916dfff5a2
This commit is contained in:
parent
a5d35e822a
commit
a8863995de
37
cgminer.c
37
cgminer.c
@ -2618,23 +2618,11 @@ static struct pool *select_balanced(struct pool *cp)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool pool_unusable(struct pool *pool)
|
|
||||||
{
|
|
||||||
if (pool->idle)
|
|
||||||
return true;
|
|
||||||
if (pool->enabled != POOL_ENABLED)
|
|
||||||
return true;
|
|
||||||
if (pool->has_stratum && !pool->stratum_active)
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Select any active pool in a rotating fashion when loadbalance is chosen */
|
/* Select any active pool in a rotating fashion when loadbalance is chosen */
|
||||||
static inline struct pool *select_pool(bool lagging)
|
static inline struct pool *select_pool(bool lagging)
|
||||||
{
|
{
|
||||||
static int rotating_pool = 0;
|
static int rotating_pool = 0;
|
||||||
struct pool *pool, *cp;
|
struct pool *pool, *cp;
|
||||||
int tested;
|
|
||||||
|
|
||||||
cp = current_pool();
|
cp = current_pool();
|
||||||
|
|
||||||
@ -2646,19 +2634,14 @@ static inline struct pool *select_pool(bool lagging)
|
|||||||
else
|
else
|
||||||
pool = NULL;
|
pool = NULL;
|
||||||
|
|
||||||
/* Try to find the first pool in the rotation that is usable */
|
while (!pool) {
|
||||||
tested = 0;
|
|
||||||
while (!pool && tested++ < total_pools) {
|
|
||||||
if (++rotating_pool >= total_pools)
|
if (++rotating_pool >= total_pools)
|
||||||
rotating_pool = 0;
|
rotating_pool = 0;
|
||||||
pool = pools[rotating_pool];
|
pool = pools[rotating_pool];
|
||||||
if (!pool_unusable(pool))
|
if ((!pool->idle && pool->enabled == POOL_ENABLED) || pool == cp)
|
||||||
break;
|
break;
|
||||||
pool = NULL;
|
pool = NULL;
|
||||||
}
|
}
|
||||||
/* If still nothing is usable, use the current pool */
|
|
||||||
if (!pool)
|
|
||||||
pool = cp;
|
|
||||||
|
|
||||||
return pool;
|
return pool;
|
||||||
}
|
}
|
||||||
@ -3403,10 +3386,10 @@ void switch_pools(struct pool *selected)
|
|||||||
case POOL_LOADBALANCE:
|
case POOL_LOADBALANCE:
|
||||||
for (i = 0; i < total_pools; i++) {
|
for (i = 0; i < total_pools; i++) {
|
||||||
pool = priority_pool(i);
|
pool = priority_pool(i);
|
||||||
if (pool_unusable(pool) && pool != selected)
|
if (!pool->idle && pool->enabled == POOL_ENABLED) {
|
||||||
continue;
|
pool_no = pool->pool_no;
|
||||||
pool_no = pool->pool_no;
|
break;
|
||||||
break;
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
/* Both of these simply increment and cycle */
|
/* Both of these simply increment and cycle */
|
||||||
@ -3423,10 +3406,10 @@ void switch_pools(struct pool *selected)
|
|||||||
if (next_pool >= total_pools)
|
if (next_pool >= total_pools)
|
||||||
next_pool = 0;
|
next_pool = 0;
|
||||||
pool = pools[next_pool];
|
pool = pools[next_pool];
|
||||||
if (pool_unusable(pool) && pool != selected)
|
if (!pool->idle && pool->enabled == POOL_ENABLED) {
|
||||||
continue;
|
pool_no = next_pool;
|
||||||
pool_no = next_pool;
|
break;
|
||||||
break;
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user