Searched hist:"946 ad1b8b18dd91804e2dbfd9a9cefb6a8196bc0" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/fs/smb/client/ |
H A D | connect.c | diff 946ad1b8b18dd91804e2dbfd9a9cefb6a8196bc0 Thu Aug 17 10:34:11 CDT 2023 Paulo Alcantara <pc@manguebit.com> smb: client: reduce stack usage in cifs_demultiplex_thread()
Clang warns about exceeded stack frame size
fs/smb/client/connect.c:1109:1: warning: stack frame size (1048) exceeds limit (1024) in 'cifs_demultiplex_thread' [-Wframe-larger-than]
It turns out that clean_demultiplex_info() got inlined into cifs_demultiplex_thread(), so mark it as noinline_for_stack to save some stack space.
Signed-off-by: Paulo Alcantara (SUSE) <pc@manguebit.com> Signed-off-by: Steve French <stfrench@microsoft.com>
|