From: Hyeonggon Yoo <42.hyeyoo@gmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: vbabka@suse.cz, iamjoonsoo.kim@lge.com, rientjes@google.com,
penberg@kernel.org, cl@linux.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, Marco Elver <elver@google.com>
Subject: Re: [PATCH v3] mm, slub: change run-time assertion in kmalloc_index() to compile-time
Date: Thu, 13 May 2021 12:12:20 +0900 [thread overview]
Message-ID: <20210513031220.GA133011@hyeyoo> (raw)
In-Reply-To: <20210512195227.245000695c9014242e9a00e5@linux-foundation.org>
On Wed, May 12, 2021 at 07:52:27PM -0700, Andrew Morton wrote:
> This explodes in mysterious ways. The patch as I have it is appended,
> for reference.
>
> gcc-10.3.0 allmodconfig.
>
> This patch suppresses the error:
>
> --- a/mm/kfence/kfence_test.c~a
> +++ a/mm/kfence/kfence_test.c
> @@ -318,13 +318,13 @@ static void test_out_of_bounds_read(stru
>
> /* Test both sides. */
>
> - buf = test_alloc(test, size, GFP_KERNEL, ALLOCATE_LEFT);
> + buf = test_alloc(test, 32, GFP_KERNEL, ALLOCATE_LEFT);
> expect.addr = buf - 1;
> READ_ONCE(*expect.addr);
> KUNIT_EXPECT_TRUE(test, report_matches(&expect));
> test_free(buf);
>
> - buf = test_alloc(test, size, GFP_KERNEL, ALLOCATE_RIGHT);
> + buf = test_alloc(test, 32, GFP_KERNEL, ALLOCATE_RIGHT);
> expect.addr = buf + size;
> READ_ONCE(*expect.addr);
> KUNIT_EXPECT_TRUE(test, report_matches(&expect));
> @@ -519,11 +519,11 @@ static void test_free_bulk(struct kunit
> const size_t size = setup_test_cache(test, 8 + prandom_u32_max(300), 0,
> (iter & 1) ? ctor_set_x : NULL);
> void *objects[] = {
> - test_alloc(test, size, GFP_KERNEL, ALLOCATE_RIGHT),
> - test_alloc(test, size, GFP_KERNEL, ALLOCATE_NONE),
> - test_alloc(test, size, GFP_KERNEL, ALLOCATE_LEFT),
> - test_alloc(test, size, GFP_KERNEL, ALLOCATE_NONE),
> - test_alloc(test, size, GFP_KERNEL, ALLOCATE_NONE),
> + test_alloc(test, 32, GFP_KERNEL, ALLOCATE_RIGHT),
> + test_alloc(test, 32, GFP_KERNEL, ALLOCATE_NONE),
> + test_alloc(test, 32, GFP_KERNEL, ALLOCATE_LEFT),
> + test_alloc(test, 32, GFP_KERNEL, ALLOCATE_NONE),
> + test_alloc(test, 32, GFP_KERNEL, ALLOCATE_NONE),
> };
>
> kmem_cache_free_bulk(test_cache, ARRAY_SIZE(objects), objects);
>
>
> Is gcc-10.3.0 simply confused? test_out_of_bounds_read() is clearly
> calling kmalloc_index(32) which is OK.
>
> Anyway, I'll drop this patch for now so I can compile a kernel!
>
The error messages isn't so clear to me.
but one problem I can see is in kfence_test.c, there are many places that
are using size which is not constant.
in kmalloc if size is not constant, it calls dummy function __kmalloc
which does not make use of size.
next prev parent reply other threads:[~2021-05-13 3:12 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-11 17:34 Hyeonggon Yoo
2021-05-11 17:38 ` Hyeonggon Yoo
2021-05-11 18:08 ` Vlastimil Babka
2021-05-13 2:52 ` Andrew Morton
2021-05-13 3:12 ` Hyeonggon Yoo [this message]
2021-05-13 3:40 ` Andrew Morton
2021-05-13 6:28 ` Hyeonggon Yoo
2021-05-13 8:46 ` Marco Elver
2021-05-13 8:51 ` Vlastimil Babka
2021-05-13 10:31 ` Marco Elver
2021-05-13 11:37 ` Vlastimil Babka
2021-05-13 12:08 ` Hyeonggon Yoo
2021-05-13 12:10 ` Hyeonggon Yoo
2021-05-13 12:03 ` Hyeonggon Yoo
2021-05-13 12:29 ` Marco Elver
2021-05-13 12:38 ` Hyeonggon Yoo
2021-05-13 13:08 ` Hyeonggon Yoo
2021-05-13 12:44 ` [PATCH] kfence: test: fix for "mm, slub: change run-time assertion in kmalloc_index() to compile-time" Marco Elver
2021-05-15 21:09 ` [PATCH v3] mm, slub: change run-time assertion in kmalloc_index() to compile-time Hyeonggon Yoo
2021-05-15 21:24 ` Vlastimil Babka
2021-05-15 21:56 ` Hyeonggon Yoo
2021-05-16 6:34 ` Nathan Chancellor
2021-05-18 0:38 ` Hyeonggon Yoo
2021-05-18 0:43 ` Nathan Chancellor
2021-05-18 1:53 ` Hyeonggon Yoo
2021-05-18 9:28 ` Vlastimil Babka
2021-05-18 11:18 ` Hyeonggon Yoo
2021-05-18 11:34 ` Vlastimil Babka
2021-05-19 5:45 ` Hyeonggon Yoo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210513031220.GA133011@hyeyoo \
--to=42.hyeyoo@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux.com \
--cc=elver@google.com \
--cc=iamjoonsoo.kim@lge.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=penberg@kernel.org \
--cc=rientjes@google.com \
--cc=vbabka@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox