MINOR: stick-table: split stktable_store() between key and requeue
__staktable_store() performs two distinct things, one is to insert a key
and the other one is to requeue the task's expiration date. Since the
latter might be done without a lock, let's first split the function in
two halves. For now this has no impact.
diff --git a/src/stick_table.c b/src/stick_table.c
index b114466..facd5fa 100644
--- a/src/stick_table.c
+++ b/src/stick_table.c
@@ -510,13 +510,20 @@
ts->exp.key = ts->expire;
eb32_insert(&t->exps, &ts->exp);
}
- if (t->expire) {
- t->exp_task->expire = t->exp_next = tick_first(ts->expire, t->exp_next);
- task_queue(t->exp_task);
- }
return ebmb_entry(eb, struct stksess, key); // most commonly this is <ts>
}
+/* requeues the table's expiration task to take the recently added <ts> into
+ * account. This is performed atomically and doesn't require any lock.
+ */
+static void stktable_requeue_exp(struct stktable *t, const struct stksess *ts)
+{
+ if (!t->expire)
+ return;
+ t->exp_task->expire = t->exp_next = tick_first(ts->expire, t->exp_next);
+ task_queue(t->exp_task);
+}
+
/* Returns a valid or initialized stksess for the specified stktable_key in the
* specified table, or NULL if the key was NULL, or if no entry was found nor
* could be created. The entry's expiration is updated. This function locks the
@@ -560,6 +567,7 @@
ts = ts2;
}
+ stktable_requeue_exp(table, ts);
HA_ATOMIC_INC(&ts->ref_cnt);
HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &table->lock);
@@ -597,6 +605,7 @@
/* now we're write-locked */
__stktable_store(table, ts);
+ stktable_requeue_exp(table, ts);
HA_RWLOCK_WRUNLOCK(STK_TABLE_LOCK, &table->lock);
return ts;
}