Re: [libvirt PATCH v2 1/7] meson: Allow larger stack frames when instrumenting

2021-05-06 Thread Pavel Hrdina
On Thu, May 06, 2021 at 05:08:32PM +0200, Tim Wiederhake wrote: > When enabling sanitizers, gcc adds some instrumentation to the code > that may enlarge stack frames. Some function's stack frames are already > close to the limit of 4096 and are enlarged past that threshold, > e.g. virLXCProcessStar

[libvirt PATCH v2 1/7] meson: Allow larger stack frames when instrumenting

2021-05-06 Thread Tim Wiederhake
When enabling sanitizers, gcc adds some instrumentation to the code that may enlarge stack frames. Some function's stack frames are already close to the limit of 4096 and are enlarged past that threshold, e.g. virLXCProcessStart which reaches a frame size of 4624 bytes. Signed-off-by: Tim Wiederha