From: Mathieu Desnoyers Date: Fri, 6 Sep 2019 01:01:47 +0000 (-0400) Subject: Fix: gcc-9.1 stack frame size warning X-Git-Tag: v2.10.11~1 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=ee51d6fe83fdd5e72190e2d9d1422b5bee2c3d1f;hp=ee51d6fe83fdd5e72190e2d9d1422b5bee2c3d1f;p=lttng-modules.git Fix: gcc-9.1 stack frame size warning gcc-9.1.0 warns about lttng_session_ioctl taking a too large frame size. lttng-modules/lttng-abi.c:622:1: warning: the frame size of 2240 bytes is larger than 2048 bytes [-Wframe-larger-than=] Combine the variables used in the various case of the switch so they are not duplicated on the stack by the compiler. Signed-off-by: Mathieu Desnoyers ---