BUG/MINOR: peers: Missing TX cache entries reset.
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 12 Nov 2020 20:01:54 +0000 (21:01 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Fri, 13 Nov 2020 15:33:29 +0000 (16:33 +0100)
The TX part of a cache for a dictionary is made of an reserved array of ebtree nodes
which are pointers to dictionary entries. So when we flush the TX part of such a
cache, we must not only remove these nodes to dictionary entries from their ebtree.
We must also reset their values. Furthermore, the LRU key and the last lookup
result must also be reset.

(cherry picked from commit ea875e62e6b2f69c50533c5cd52eb5284c69723f)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>

src/peers.c

index 53c3c73..646fe46 100644 (file)
@@ -2948,8 +2948,12 @@ static inline void flush_dcache(struct peer *peer)
        int i;
        struct dcache *dc = peer->dcache;
 
-       for (i = 0; i < dc->max_entries; i++)
+       for (i = 0; i < dc->max_entries; i++) {
                ebpt_delete(&dc->tx->entries[i]);
+               dc->tx->entries[i].key = NULL;
+       }
+       dc->tx->prev_lookup = NULL;
+       dc->tx->lru_key = 0;
 
        memset(dc->rx, 0, dc->max_entries * sizeof *dc->rx);
 }