Browse Source

Delete killed clients after a minute in case we have missed dangling references

master
ckolivas 10 years ago
parent
commit
aa23506ac2
  1. 14
      src/stratifier.c

14
src/stratifier.c

@ -264,6 +264,7 @@ struct stratum_instance {
time_t last_txns; /* Last time this worker requested txn hashes */ time_t last_txns; /* Last time this worker requested txn hashes */
time_t disconnected_time; /* Time this instance disconnected */ time_t disconnected_time; /* Time this instance disconnected */
time_t died_time;
int64_t suggest_diff; /* Stratum client suggested diff */ int64_t suggest_diff; /* Stratum client suggested diff */
double best_diff; /* Best share found by this instance */ double best_diff; /* Best share found by this instance */
@ -915,6 +916,7 @@ static void update_base(ckpool_t *ckp, int prio)
static void __add_dead(sdata_t *sdata, stratum_instance_t *client) static void __add_dead(sdata_t *sdata, stratum_instance_t *client)
{ {
client->died_time = time(NULL);
DL_APPEND(sdata->dead_instances, client); DL_APPEND(sdata->dead_instances, client);
sdata->stats.dead++; sdata->stats.dead++;
sdata->dead_generated++; sdata->dead_generated++;
@ -1432,13 +1434,15 @@ static void drop_client(sdata_t *sdata, int64_t id)
/* Cull old unused clients lazily when there are no more reference /* Cull old unused clients lazily when there are no more reference
* counts for them. */ * counts for them. */
DL_FOREACH_SAFE(sdata->dead_instances, client, tmp) { DL_FOREACH_SAFE(sdata->dead_instances, client, tmp) {
if (!client->ref) { if (now_t - client->died_time < 60)
continue;
if (unlikely(client->ref))
continue;
killed++; killed++;
__del_dead(sdata, client); __del_dead(sdata, client);
dealloc(client->workername); free(client->workername);
dealloc(client->useragent); free(client->useragent);
dealloc(client); free(client);
}
} }
ck_wunlock(&sdata->instance_lock); ck_wunlock(&sdata->instance_lock);

Loading…
Cancel
Save