Browse Source

Add mandatory and block fields to the work struct. Flag any shares that are detected as blocks as mandatory to submit, along with longpoll work from a previously rejecting pool.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
dbe9056df4
  1. 31
      cgminer.c
  2. 2
      miner.h

31
cgminer.c

@ -1625,7 +1625,6 @@ static bool submit_upstream_work(const struct work *work, CURL *curl)
bool rolltime; bool rolltime;
uint32_t *hash32; uint32_t *hash32;
char hashshow[64+1] = ""; char hashshow[64+1] = "";
bool isblock;
#ifdef __BIG_ENDIAN__ #ifdef __BIG_ENDIAN__
int swapcounter = 0; int swapcounter = 0;
@ -1666,17 +1665,9 @@ static bool submit_upstream_work(const struct work *work, CURL *curl)
res = json_object_get(val, "result"); res = json_object_get(val, "result");
if (!QUIET) { if (!QUIET) {
#ifndef MIPSEB
// This one segfaults on my router for some reason
isblock = regeneratehash(work);
if (unlikely(isblock)) {
pool->solved++;
found_blocks++;
}
hash32 = (uint32_t *)(work->hash); hash32 = (uint32_t *)(work->hash);
sprintf(hashshow, "%08lx.%08lx%s", (unsigned long)(hash32[6]), (unsigned long)(hash32[5]), sprintf(hashshow, "%08lx.%08lx%s", (unsigned long)(hash32[6]), (unsigned long)(hash32[5]),
isblock ? " BLOCK!" : ""); work->block? " BLOCK!" : "");
#endif
} }
/* Theoretically threads could race when modifying accepted and /* Theoretically threads could race when modifying accepted and
@ -1829,6 +1820,7 @@ static void get_benchmark_work(struct work *work)
size_t min_size = (work_size < bench_size ? work_size : bench_size); size_t min_size = (work_size < bench_size ? work_size : bench_size);
memset(work, 0, sizeof(work)); memset(work, 0, sizeof(work));
memcpy(work, &bench_block, min_size); memcpy(work, &bench_block, min_size);
work->mandatory = true;
} }
static bool get_upstream_work(struct work *work, CURL *curl) static bool get_upstream_work(struct work *work, CURL *curl)
@ -2164,7 +2156,7 @@ static bool stale_work(struct work *work, bool share)
struct timeval now; struct timeval now;
struct pool *pool; struct pool *pool;
if (opt_benchmark) if (work->mandatory)
return false; return false;
gettimeofday(&now, NULL); gettimeofday(&now, NULL);
@ -2184,6 +2176,16 @@ static bool stale_work(struct work *work, bool share)
return false; return false;
} }
static void check_solve(struct work *work)
{
work->block = regeneratehash(work);
if (unlikely(work->block)) {
work->pool->solved++;
found_blocks++;
work->mandatory = true;
applog(LOG_NOTICE, "Found block for pool %d!", work->pool);
}
}
static void *submit_work_thread(void *userdata) static void *submit_work_thread(void *userdata)
{ {
@ -2197,6 +2199,8 @@ static void *submit_work_thread(void *userdata)
applog(LOG_DEBUG, "Creating extra submit work thread"); applog(LOG_DEBUG, "Creating extra submit work thread");
check_solve(work);
if (stale_work(work, true)) { if (stale_work(work, true)) {
if (opt_submit_stale) if (opt_submit_stale)
applog(LOG_NOTICE, "Stale share detected, submitting as user requested"); applog(LOG_NOTICE, "Stale share detected, submitting as user requested");
@ -2479,7 +2483,7 @@ static void test_work_current(struct work *work)
{ {
char *hexstr; char *hexstr;
if (opt_benchmark) if (work->mandatory)
return; return;
hexstr = bin2hex(work->data, 18); hexstr = bin2hex(work->data, 18);
@ -4009,6 +4013,9 @@ static void convert_to_work(json_t *val, bool rolltime, struct pool *pool)
work->rolltime = rolltime; work->rolltime = rolltime;
work->longpoll = true; work->longpoll = true;
if (pool->enabled == POOL_REJECTING)
work->mandatory = true;
/* We'll be checking this work item twice, but we already know it's /* We'll be checking this work item twice, but we already know it's
* from a new block so explicitly force the new block detection now * from a new block so explicitly force the new block detection now
* rather than waiting for it to hit the stage thread. This also * rather than waiting for it to hit the stage thread. This also

2
miner.h

@ -735,6 +735,8 @@ struct work {
bool rolltime; bool rolltime;
bool longpoll; bool longpoll;
bool stale; bool stale;
bool mandatory;
bool block;
unsigned int work_block; unsigned int work_block;
int id; int id;

Loading…
Cancel
Save