| commit | b86302da264f77971112b4be0b16eeb591026cbc | [log] [tgz] |
|---|---|---|
| author | Arnd Bergmann <arnd@arndb.de> | Thu Nov 09 12:35:06 2023 +0100 |
| committer | Arnd Bergmann <arnd@arndb.de> | Fri Nov 10 15:55:46 2023 +0100 |
| tree | 7515d16a85224ad0855c251c3e2b72c1d9e4a43a | |
| parent | f2c322da2c1e69b480bfab2b8f703bb115cc0fa5 [diff] |
bcachefs: ioctl: avoid stack overflow warning An allmodconfig build on arm32 causes a warning in bcachefs for narrowly exceeding the stack size warning limit: fs/bcachefs/chardev.c:655:6: error: stack frame size (1032) exceeds limit (1024) in 'bch2_fs_ioctl' [-Werror,-Wframe-larger-than] 655 | long bch2_fs_ioctl(struct bch_fs *c, unsigned cmd, void __user *arg) The problem here is that the ioctl function is fully inlined Signed-off-by: Arnd Bergmann <arnd@arndb.de>