-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mainline: stack frame size exceeds limit on allmodconfig #482
Closed
Comments
The same error is occurring again today. |
musamaanjum
added a commit
to musamaanjum/kernelci-pipeline
that referenced
this issue
Nov 5, 2024
CONFIG_FRAME_WARN is set to 1024 by default for arm. The allowed value for this is 0 to 8192. Let's increase it to 2048 to avoid getting the warning when stack size is more than default 1024. As all warnings are being treated as errors, our allmodconfig build fails on arm. Close: kernelci/kernelci-project#482 Signed-off-by: Muhammad Usama Anjum <[email protected]>
github-merge-queue bot
pushed a commit
to kernelci/kernelci-pipeline
that referenced
this issue
Nov 6, 2024
CONFIG_FRAME_WARN is set to 1024 by default for arm. The allowed value for this is 0 to 8192. Let's increase it to 2048 to avoid getting the warning when stack size is more than default 1024. As all warnings are being treated as errors, our allmodconfig build fails on arm. Close: kernelci/kernelci-project#482 Signed-off-by: Muhammad Usama Anjum <[email protected]>
github-project-automation
bot
moved this from In Progress
to Done
in KernelCI results data evaluation
Nov 6, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The allmodconfig has been enabled recently and we have found a failed build with clang-17: https://staging.kernelci.org:9000/viewer?search=parent%3D67236768025e418acd1174cc
The logs show that build failed because of stack frame size exceeds limit 2 times.
I've looked at allmodconfig file for this and found out that:
The stack frame size is quite a common warning. But as error on warning flag may be set, this warning is being treated as error. CONFIG_FRAME_WARN can be set [0 8192]. The current value is set to 1024 and errors are getting generated at 1080 and 1056. We can report this upstream and/or increase the FRAME_WARN in configurations.
cc: @crazoes @nuclearcat
The text was updated successfully, but these errors were encountered: