uml: fix build error due to frame size > 1024
authorChristian Lamparter <chunkeey@gmail.com>
Sun, 21 May 2023 16:30:14 +0000 (18:30 +0200)
committerDaniel Golle <daniel@makrotopia.org>
Wed, 24 May 2023 18:25:39 +0000 (19:25 +0100)
commite22fba1694376fd1396fe7a7aaedb1273c66f094
tree9298d6d9bc9e55b53d40c5d8f4b7d9de201a12c3
parent6b9f405324d1767aceb4993933336da12a55bf32
uml: fix build error due to frame size > 1024

the UML build fails during the kernel build:
| arch/um/drivers/net_kern.c: In function 'compute_hash':
| arch/um/drivers/net_kern.c:322:1: error: the frame size of 1072 bytes is larger than 1024 bytes [-Werror=frame-larger-than=]
|  322 | }
|      | ^
|cc1: all warnings being treated as errors

The compute_hash() function is added by our patch:
102-pseudo-random-mac.patch

Instead of allocating a 1024 byte buffer on the stack for the SHA1
digest input, let's allocate the data on the heap. We should be
able to do that since crypto_alloc_ahash and ahash_request_alloc
also need to allocate structures on the heap.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
(cherry picked from commit aed2569d3780cab1a1a2d75c9f9e3fe413a9844d)
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
target/linux/uml/patches-5.15/102-pseudo-random-mac.patch