commit | 4da51bd19091df2ad29917f7f4bc567c51cf0d89 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Dec 08 17:45:08 2022 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Dec 08 17:45:08 2022 +0100 |
tree | d34fdb6a798642ba9e9d9c2abf936178fbee1644 | |
parent | a95636682db151c67cb674eb23ca627a000354de [diff] |
CLEANUP: pools: get rid of CONFIG_HAP_POOLS This one was set in defaults.h only when neither DEBUG_NO_POOLS nor DEBUG_UAF were set. This was not the most convenient location to look for it, and it was only used in pool.c to decide on the initial value of POOL_DBG_NO_CACHE. Let's just use DEBUG_NO_POOLS || DEBUG_UAF directly on this flag and get rid of the intermediary condition. This also has the benefit of removing a double inversion, which is always nice for understanding.