return ACT_RET_CONT;
if (px == strm_fe(s))
- HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_lookups, 1);
+ _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_lookups, 1);
else
- HA_ATOMIC_ADD(&px->be_counters.p.http.cache_lookups, 1);
+ _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_lookups, 1);
shctx_lock(shctx_ptr(cache));
res = entry_exist(cache, s->txn->cache_hash);
appctx->ctx.cache.sent = 0;
if (px == strm_fe(s))
- HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_hits, 1);
+ _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_hits, 1);
else
- HA_ATOMIC_ADD(&px->be_counters.p.http.cache_hits, 1);
+ _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_hits, 1);
return ACT_RET_CONT;
} else {
shctx_lock(shctx_ptr(cache));