Rollback breakage to 81567e515707891837f52bc3aac7d5916dfff5a2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
diff --git a/cgminer.c b/cgminer.c
index cb7a6a3..abc7755 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -2618,23 +2618,11 @@ static struct pool *select_balanced(struct pool *cp)
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 */
static inline struct pool *select_pool(bool lagging)
{
static int rotating_pool = 0;
struct pool *pool, *cp;
- int tested;
cp = current_pool();
@@ -2646,19 +2634,14 @@ static inline struct pool *select_pool(bool lagging)
else
pool = NULL;
- /* Try to find the first pool in the rotation that is usable */
- tested = 0;
- while (!pool && tested++ < total_pools) {
+ while (!pool) {
if (++rotating_pool >= total_pools)
rotating_pool = 0;
pool = pools[rotating_pool];
- if (!pool_unusable(pool))
+ if ((!pool->idle && pool->enabled == POOL_ENABLED) || pool == cp)
break;
pool = NULL;
}
- /* If still nothing is usable, use the current pool */
- if (!pool)
- pool = cp;
return pool;
}
@@ -3403,10 +3386,10 @@ void switch_pools(struct pool *selected)
case POOL_LOADBALANCE:
for (i = 0; i < total_pools; i++) {
pool = priority_pool(i);
- if (pool_unusable(pool) && pool != selected)
- continue;
- pool_no = pool->pool_no;
- break;
+ if (!pool->idle && pool->enabled == POOL_ENABLED) {
+ pool_no = pool->pool_no;
+ break;
+ }
}
break;
/* Both of these simply increment and cycle */
@@ -3423,10 +3406,10 @@ void switch_pools(struct pool *selected)
if (next_pool >= total_pools)
next_pool = 0;
pool = pools[next_pool];
- if (pool_unusable(pool) && pool != selected)
- continue;
- pool_no = next_pool;
- break;
+ if (!pool->idle && pool->enabled == POOL_ENABLED) {
+ pool_no = next_pool;
+ break;
+ }
}
break;
default: