]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
dm mirror: remove VLA usage
authorKees Cook <keescook@chromium.org>
Wed, 11 Apr 2018 04:43:15 +0000 (21:43 -0700)
committerMike Snitzer <snitzer@redhat.com>
Fri, 4 May 2018 14:35:20 +0000 (10:35 -0400)
commit65972a6fa914b16cc15ffcffcb8bea8c64e78f49
treed38714eaabf08f361c6a96467f31f6e94353a07c
parent3d97c829edd43262e7e9d720fa82c2241ba685a3
dm mirror: remove VLA usage

On the quest to remove all VLAs from the kernel[1], this avoids VLAs
in dm-raid1.c by just using the maximum size for the stack arrays.
The nr_mirrors value was already capped at 9, so this makes it a trivial
adjustment to the array sizes.

[1] https://lkml.org/lkml/2018/3/7/621

Signed-off-by: Kees Cook <keescook@chromium.org>
Acked-by: Heinz Mauelshagen <heinzm@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
drivers/md/dm-raid1.c