From: Chengming Zhou <chengming.zhou@linux.dev>
To: Vlastimil Babka <vbabka@suse.cz>,
Christoph Lameter <cl@linux.com>,
Pekka Enberg <penberg@kernel.org>,
David Rientjes <rientjes@google.com>,
Joonsoo Kim <iamjoonsoo.kim@lge.com>,
Andrew Morton <akpm@linux-foundation.org>,
Roman Gushchin <roman.gushchin@linux.dev>,
Hyeonggon Yoo <42.hyeyoo@gmail.com>,
Feng Tang <feng.tang@intel.com>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
zhouchengming@bytedance.com
Subject: Re: [PATCH v2 1/3] slab: make check_object() more consistent
Date: Fri, 7 Jun 2024 15:26:46 +0800 [thread overview]
Message-ID: <96f13b3c-ec74-4f87-be37-fbf796fe51eb@linux.dev> (raw)
In-Reply-To: <ef24c2be-d6bb-49ec-a72f-7228f284e524@suse.cz>
On 2024/6/6 16:28, Vlastimil Babka wrote:
> On 6/5/24 9:13 AM, Chengming Zhou wrote:
>> Now check_object() calls check_bytes_and_report() multiple times to
>> check every section of the object it cares about, like left and right
>> redzones, object poison, paddings poison and freepointer. It will
>> abort the checking process and return 0 once it finds an error.
>>
[...]
>> - /* Check free pointer validity */
>> - if (!check_valid_pointer(s, slab, get_freepointer(s, p))) {
>> + /*
>> + * Cannot check freepointer while object is allocated if
>> + * object and freepointer overlap.
>> + */
>> + if (!freeptr_outside_object(s) && val == SLUB_RED_ACTIVE &&
>
> Seems this condition should have been logically flipped?
Ah, right, will fix.
>
>> + !check_valid_pointer(s, slab, get_freepointer(s, p))) {
>> object_err(s, slab, p, "Freepointer corrupt");
>> /*
>> * No choice but to zap it and thus lose the remainder
>> @@ -1370,9 +1368,14 @@ static int check_object(struct kmem_cache *s, struct slab *slab,
>> * another error because the object count is now wrong.
>> */
>> set_freepointer(s, p, NULL);
>> - return 0;
>
> Should set ret = 0 here?
Yes.
>
>> }
>> - return 1;
>> +
>> + if (!ret && !slab_add_kunit_errors()) {
>
> Also 5/6 of slub_kunit tests now fail as we increased the number of recorded
My bad, I didn't test with slub_kunit, will test later.
> errors vs expected. Either the slab_add_kunit_errors() test above should
> have a variant (parameter?) so it will only detect we are in slab-kunit test
> (to suppress the printing and taint) but doesn't increase slab_errors (we
I think this way is simpler for me, only suppress the printing but doesn't
increase slab_errors, will take this way and test again.
Thanks!
> increased them for the individual issues already), or simply raise the
> expectations of the tests so it matches the new implementation.
>
next prev parent reply other threads:[~2024-06-07 7:27 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 7:13 [PATCH v2 0/3] slab: fix and cleanup of slub_debug Chengming Zhou
2024-06-05 7:13 ` [PATCH v2 1/3] slab: make check_object() more consistent Chengming Zhou
2024-06-06 8:28 ` Vlastimil Babka
2024-06-07 7:26 ` Chengming Zhou [this message]
2024-06-05 7:13 ` [PATCH v2 2/3] slab: don't put freepointer outside of object if only orig_size Chengming Zhou
2024-06-06 8:35 ` Vlastimil Babka
2024-06-05 7:13 ` [PATCH v2 3/3] slab: delete useless RED_INACTIVE and RED_ACTIVE Chengming Zhou
2024-06-06 8:35 ` Vlastimil Babka
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=96f13b3c-ec74-4f87-be37-fbf796fe51eb@linux.dev \
--to=chengming.zhou@linux.dev \
--cc=42.hyeyoo@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux.com \
--cc=feng.tang@intel.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=roman.gushchin@linux.dev \
--cc=vbabka@suse.cz \
--cc=zhouchengming@bytedance.com \
/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