]> git.baikalelectronics.ru Git - kernel.git/commit
rxrpc: Reuse SKCIPHER_REQUEST_ON_STACK buffer
authorKees Cook <keescook@chromium.org>
Fri, 3 Aug 2018 09:15:25 +0000 (10:15 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Aug 2018 16:48:12 +0000 (09:48 -0700)
commit6093fa79b0e69c219d4e13fc2732917d9e7c7cbb
treed6853305a88d1c9159a44eb44db11fed1e076eff
parent17b61885f3617f5b07933559d074c5e363a8a1a1
rxrpc: Reuse SKCIPHER_REQUEST_ON_STACK buffer

The use of SKCIPHER_REQUEST_ON_STACK() will trigger FRAME_WARN warnings
(when less than 2048) once the VLA is no longer hidden from the check:

net/rxrpc/rxkad.c:398:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=]
net/rxrpc/rxkad.c:242:1: warning: the frame size of 1152 bytes is larger than 1024 bytes [-Wframe-larger-than=]

This passes the initial SKCIPHER_REQUEST_ON_STACK allocation to the leaf
functions for reuse. Two requests allocated on the stack is not needed
when only one is used at a time.

Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/rxrpc/rxkad.c