commit | 69869e63545068761e1ebefbc80ec39399ce1104 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Mar 21 09:15:13 2023 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Tue Mar 21 09:15:13 2023 +0100 |
tree | ee08dcdb16ef14543156ee25aed2d3d3078bc6d4 | |
parent | 7a8ca0a0633e120c5b82de81f03c31cc39a17cb1 [diff] |
MINOR: dynbuf: set POOL_F_NO_FAIL on buffer allocation b_alloc() is used to allocate a buffer. We can provoke fault injection based on forced memory allocation failures using -dMfail on the command line, but we know that the buffer_wait list is a bit weak and doesn't always recover well. As such, submitting buffer allocation to such a treatment seriously limits the usefulness of -dMfail which cannot really be used for other purposes. Let's just disable it for buffers for now.