crypto: wp512 - disable kmsan checks in wp512_process_buffer()
authorArnd Bergmann <arnd@arndb.de>
Thu, 15 Dec 2022 16:29:38 +0000 (17:29 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 30 Dec 2022 14:56:27 +0000 (22:56 +0800)
commit8031d1f678c2b06733c8f9028b413194b47c33ab
tree159e3e68cf65b6bb3bbd1b9c634e8fe40423be31
parentaa9695157f65c55e5c85a1c194859d3c03e68018
crypto: wp512 - disable kmsan checks in wp512_process_buffer()

The memory sanitizer causes excessive register spills in this function:

crypto/wp512.c:782:13: error: stack frame size (2104) exceeds limit (2048) in 'wp512_process_buffer' [-Werror,-Wframe-larger-than]

Assume that this one is safe, and mark it as needing no checks to
get the stack usage back down to the normal level.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/wp512.c