]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline
authorArnd Bergmann <arnd@arndb.de>
Fri, 18 Oct 2024 15:14:42 +0000 (15:14 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Apr 2025 08:45:37 +0000 (10:45 +0200)
commitfa43166f2e8bac4616db14a4ef6e07eaea227ba0
tree540c04d7f87dacfc8bd6d06699b3b7df8f277a3c
parent5029c8f2d7eaa3e2e601fd4f8c476ade627d16dd
media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline

commit 8b55f8818900c99dd4f55a59a103f5b29e41eb2c upstream.

With KASAN enabled, clang fails to optimize the inline version of
vdec_vp9_slice_map_counts_eob_coef() properly, leading to kilobytes
of temporary values spilled to the stack:

drivers/media/platform/mediatek/vcodec/decoder/vdec/vdec_vp9_req_lat_if.c:1526:12: error: stack frame size (2160) exceeds limit (2048) in 'vdec_vp9_slice_update_prob' [-Werror,-Wframe-larger-than]

This seems to affect all versions of clang including the latest (clang-20),
but the degree of stack overhead is different per release.

Marking the function as noinline_for_stack is harmless here and avoids
the problem completely.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Sebastian Fricke <sebastian.fricke@collabora.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/platform/mediatek/vcodec/decoder/vdec/vdec_vp9_req_lat_if.c