summaryrefslogtreecommitdiffstats
path: root/drivers/pps
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2019-07-12 10:59:24 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2019-07-27 21:08:31 +1000
commit72c8117adfced37df101c8c0b3f363e0906f83f0 (patch)
tree15f94dbcdd961ed6ebd83dbec7d0a6ce99efb906 /drivers/pps
parent2a03e3a50a61494fd26d82eabd43a26be0f736cc (diff)
downloadlinux-72c8117adfced37df101c8c0b3f363e0906f83f0.tar.bz2
crypto: ccp - Reduce maximum stack usage
Each of the operations in ccp_run_cmd() needs several hundred bytes of kernel stack. Depending on the inlining, these may need separate stack slots that add up to more than the warning limit, as shown in this clang based build: drivers/crypto/ccp/ccp-ops.c:871:12: error: stack frame size of 1164 bytes in function 'ccp_run_aes_cmd' [-Werror,-Wframe-larger-than=] static int ccp_run_aes_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) The problem may also happen when there is no warning, e.g. in the ccp_run_cmd()->ccp_run_aes_cmd()->ccp_run_aes_gcm_cmd() call chain with over 2000 bytes. Mark each individual function as 'noinline_for_stack' to prevent this from happening, and move the calls to the two special cases for aes into the top-level function. This will keep the actual combined stack usage to the mimimum: 828 bytes for ccp_run_aes_gcm_cmd() and at most 524 bytes for each of the other cases. Fixes: 63b945091a07 ("crypto: ccp - CCP device driver and interface support") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/pps')
0 files changed, 0 insertions, 0 deletions