mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-01 09:54:53 +08:00
2326f3cdba
The structleak plugin causes the stack frame size to grow immensely when used with KUnit: ../drivers/iio/test/iio-test-format.c: In function ‘iio_test_iio_format_value_fixedpoint’: ../drivers/iio/test/iio-test-format.c:98:1: warning: the frame size of 2336 bytes is larger than 2048 bytes [-Wframe-larger-than=] Turn it off in this file. Signed-off-by: Brendan Higgins <brendanhiggins@google.com> Suggested-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Kees Cook <keescook@chromium.org> Acked-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
9 lines
223 B
Makefile
9 lines
223 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the industrial I/O unit tests.
|
|
#
|
|
|
|
# Keep in alphabetical order
|
|
obj-$(CONFIG_IIO_TEST_FORMAT) += iio-test-format.o
|
|
CFLAGS_iio-test-format.o += $(DISABLE_STRUCTLEAK_PLUGIN)
|