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

Break out of select pool from a common point for appropriate debug messages and to avoid further tests.

This commit is contained in:
Con Kolivas 2013-09-16 12:26:01 +10:00
parent 566a80f05b
commit 972d04d2a8

View File

@ -2872,12 +2872,15 @@ static inline struct pool *select_pool(bool lagging)
cp = current_pool();
if (pool_strategy == POOL_BALANCE)
return select_balanced(cp);
if (pool_strategy == POOL_BALANCE) {
pool = select_balanced(cp);
goto out;
}
if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only))
if (pool_strategy != POOL_LOADBALANCE && (!lagging || opt_fail_only)) {
pool = cp;
else
goto out;
} else
pool = NULL;
/* Try to find the first pool in the rotation that is usable */
@ -2916,7 +2919,7 @@ static inline struct pool *select_pool(bool lagging)
/* If still nothing is usable, use the current pool */
if (!pool)
pool = cp;
out:
applog(LOG_DEBUG, "Selecting pool %d for work", pool->pool_no);
return pool;
}