On Wed, Jan 22, 2025, at 15:08, Naresh Kamboju wrote:
fs/ext4/readpage.c: In function 'ext4_mpage_readpages': fs/ext4/readpage.c:413:1: warning: the frame size of 1132 bytes is larger than 1024 bytes [-Wframe-larger-than=] 413 | } | ^ 2025/01/22 08:45:53 socat-internal[1491] W waitpid(-1, {}, WNOHANG): no child has exited fs/mpage.c: In function 'do_mpage_readpage': fs/mpage.c:336:1: warning: the frame size of 1092 bytes is larger than 1024 bytes [-Wframe-larger-than=] 336 | } | ^ fs/mpage.c: In function '__mpage_writepage': fs/mpage.c:672:1: warning: the frame size of 1156 bytes is larger than 1024 bytes [-Wframe-larger-than=] 672 | }
I don't see anything touching these recently, probably not a new regression but still a bit scary.
drivers/usb/core/port.c: In function 'usb_port_shutdown': drivers/usb/core/port.c:299:26: error: 'struct usb_device' has no member named 'port_is_suspended' 299 | if (udev && !udev->port_is_suspended) { | ^~
Caused by the backport of 59bfeaf5454b ("USB: core: Disable LPM only for non-suspended ports"), should be fixed by backporting 130eac417085 ("xhci: use pm_ptr() instead of #ifdef for CONFIG_PM conditionals") as well. That one was originally a fix for a different bug, but the new 59bfeaf5454b commit builds on that.
Arnd