From: Brendan Higgins Date: Wed, 29 Sep 2021 21:27:12 +0000 (-0700) Subject: thunderbolt: build kunit tests without structleak plugin X-Git-Tag: accepted/tizen/unified/20230118.172025~6197^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33d4951e021bb67ebd6bdb01f3d437c0f45b3c0c;p=platform%2Fkernel%2Flinux-rpi.git thunderbolt: build kunit tests without structleak plugin The structleak plugin causes the stack frame size to grow immensely when used with KUnit: drivers/thunderbolt/test.c:1529:1: error: the frame size of 1176 bytes is larger than 1024 bytes [-Werror=frame-larger-than=] Turn it off in this file. Linus already split up tests in this file, so this change *should* be redundant now. Signed-off-by: Brendan Higgins Suggested-by: Arnd Bergmann Acked-by: Mika Westerberg Reviewed-by: Kees Cook Signed-off-by: Shuah Khan --- diff --git a/drivers/thunderbolt/Makefile b/drivers/thunderbolt/Makefile index da19d79..78fd365 100644 --- a/drivers/thunderbolt/Makefile +++ b/drivers/thunderbolt/Makefile @@ -7,6 +7,7 @@ thunderbolt-objs += usb4_port.o nvm.o retimer.o quirks.o thunderbolt-${CONFIG_ACPI} += acpi.o thunderbolt-$(CONFIG_DEBUG_FS) += debugfs.o thunderbolt-${CONFIG_USB4_KUNIT_TEST} += test.o +CFLAGS_test.o += $(DISABLE_STRUCTLEAK_PLUGIN) thunderbolt_dma_test-${CONFIG_USB4_DMA_TEST} += dma_test.o obj-$(CONFIG_USB4_DMA_TEST) += thunderbolt_dma_test.o