mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-25 15:51:24 +02:00
BUILD: pools: fix build error on DEBUG_POOL_TRACING
When squashing commit add43fa43 ("DEBUG: pools: add new build option DEBUG_POOL_TRACING") I managed to break the build and to fail to detect it even after the rebase and a full rebuild :-(
This commit is contained in:
parent
410942b92a
commit
f70fdde591
@ -284,7 +284,7 @@ void *pool_alloc_nocache(struct pool_head *pool)
|
|||||||
|
|
||||||
/* keep track of where the element was allocated from */
|
/* keep track of where the element was allocated from */
|
||||||
POOL_DEBUG_SET_MARK(pool, ptr);
|
POOL_DEBUG_SET_MARK(pool, ptr);
|
||||||
POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
|
POOL_DEBUG_TRACE_CALLER(pool, (struct pool_cache_item *)ptr, NULL);
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -470,9 +470,9 @@ void pool_refill_local_from_shared(struct pool_head *pool, struct pool_cache_hea
|
|||||||
down = ret->down;
|
down = ret->down;
|
||||||
/* keep track of where the element was allocated from */
|
/* keep track of where the element was allocated from */
|
||||||
POOL_DEBUG_SET_MARK(pool, ret);
|
POOL_DEBUG_SET_MARK(pool, ret);
|
||||||
POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
|
|
||||||
|
|
||||||
item = (struct pool_cache_item *)ret;
|
item = (struct pool_cache_item *)ret;
|
||||||
|
POOL_DEBUG_TRACE_CALLER(pool, item, NULL);
|
||||||
LIST_INSERT(&pch->list, &item->by_pool);
|
LIST_INSERT(&pch->list, &item->by_pool);
|
||||||
LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
|
LIST_INSERT(&th_ctx->pool_lru_head, &item->by_lru);
|
||||||
count++;
|
count++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user