]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mm/damon/tests/vaddr-kunit.h: reduce stack consumption
authorAndrew Morton <akpm@linux-foundation.org>
Tue, 10 Dec 2024 02:20:01 +0000 (18:20 -0800)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 14 Jan 2025 06:40:50 +0000 (22:40 -0800)
After "mm: move per-vma lock into vm_area_struct" we're hitting

mm/damon/tests/vaddr-kunit.h: In function 'damon_test_three_regions_in_vmas':
mm/damon/tests/vaddr-kunit.h:92:1: error: the frame size of 3280 bytes is larger than 2048 bytes [-Werror=frame-larger-than=]

Fix by moving all those vmas off the stack.

[akpm@linux-foundation.org: fix build]
Closes: https://lkml.kernel.org/r/20241209170829.11311e70@canb.auug.org.au
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Reviewed-by: SeongJae Park <sj@kernel.org>
Cc: Suren Baghdasaryan <surenb@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/damon/tests/vaddr-kunit.h

index b9fe3bc8472ba10eb77f01508bac93ea9194df4c..7cd944266a928dbe07d97f1148dce5c3b572ad8c 100644 (file)
@@ -68,7 +68,7 @@ static void damon_test_three_regions_in_vmas(struct kunit *test)
        static struct mm_struct mm;
        struct damon_addr_range regions[3] = {0};
        /* 10-20-25, 200-210-220, 300-305, 307-330 */
-       struct vm_area_struct vmas[] = {
+       static struct vm_area_struct vmas[] = {
                (struct vm_area_struct) {.vm_start = 10, .vm_end = 20},
                (struct vm_area_struct) {.vm_start = 20, .vm_end = 25},
                (struct vm_area_struct) {.vm_start = 200, .vm_end = 210},