]> asedeno.scripts.mit.edu Git - linux.git/commit
rt2500usb: don't mark register accesses as inline
authorArnd Bergmann <arnd@arndb.de>
Tue, 14 Feb 2017 21:28:33 +0000 (22:28 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 15 Feb 2017 09:16:00 +0000 (11:16 +0200)
commit7272416609126e8910b7f0d0e3dba008aa87830c
tree17e12a25eb4c4442a95b375ff7c004f3d50aa621
parent91b632803ee4e47c5a5c4dc3d8bf5abf9c16107a
rt2500usb: don't mark register accesses as inline

When CONFIG_KASAN is set, we get a rather large stack here:

drivers/net/wireless/ralink/rt2x00/rt2500usb.c: In function 'rt2500usb_set_device_state':
drivers/net/wireless/ralink/rt2x00/rt2500usb.c:1074:1: error: the frame size of 3032 bytes is larger than 100 bytes [-Werror=frame-larger-than=]

If we don't force those functions to be inline, the compiler can figure this
out better itself and not inline the functions when doing so would be harmful,
reducing the stack size to a merge 256 bytes.

Note that there is another problem that manifests in this driver, as a result
of the typecheck() macro causing even larger stack frames.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ralink/rt2x00/rt2500usb.c