From: Andrew Morton <akpm@linux-foundation.org>
To: Matthew Wilcox <willy@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
linux-mm@kvack.org, mm-commits@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL] MM updates for 6.13-rc1
Date: Thu, 21 Nov 2024 21:42:29 -0800 [thread overview]
Message-ID: <20241121214229.8fe091954f9bf0d26f54ed88@linux-foundation.org> (raw)
In-Reply-To: <ZzwVo0ZbuG37pHdR@casper.infradead.org>
On Tue, 19 Nov 2024 04:35:47 +0000 Matthew Wilcox <willy@infradead.org> wrote:
> On Mon, Nov 18, 2024 at 07:30:01PM -0800, Andrew Morton wrote:
> > Matthew Wilcox (Oracle) (13):
> > ksm: use a folio in try_to_merge_one_page()
> > ksm: convert cmp_and_merge_page() to use a folio
>
> Unfortunately you left the crap patch in from Gaosheng. Linus, can you
> apply this fixup?
>
> >From 3d7e7319bbb3ced1dfb9c82bb7e8c7386380799b Mon Sep 17 00:00:00 2001
> From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
> Date: Mon, 18 Nov 2024 23:32:25 -0500
> Subject: [PATCH] mm: Revert IS_ERR_OR_NULL check
>
> &foo->bar is address arithmetic, not a dereference of foo.
> Huawei engineers seem particularly prone to not knowing this.
It isn't only Huawai people. David acked Gaosheng's patch and it snuck
past me (again). People keep on getting tricked by this idiom and I
think we'd be better off with some nicely named wrapper to help
readers understand what's going on.
> --- a/mm/ksm.c
> +++ b/mm/ksm.c
> @@ -2261,8 +2261,7 @@ static void cmp_and_merge_page(struct page *page, struct ksm_rmap_item *rmap_ite
>
> /* Start by searching for the folio in the stable tree */
> kfolio = stable_tree_search(page);
> - if (!IS_ERR_OR_NULL(kfolio) && &kfolio->page == page &&
> - rmap_item->head == stable_node) {
> + if (&kfolio->page == page && rmap_item->head == stable_node) {
> folio_put(kfolio);
> return;
> }
Linus has already asked us to avoid this "funky sh*t":
https://lkml.kernel.org/r/CAHk-=wicaWSn3JLwpexH=gu1HoHWpecyWoLYBwD3qPd0-t9aJA@mail.gmail.com
next prev parent reply other threads:[~2024-11-22 5:42 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-19 3:30 Andrew Morton
2024-11-19 4:35 ` Matthew Wilcox
2024-11-22 5:42 ` Andrew Morton [this message]
2024-11-22 11:23 ` David Hildenbrand
2024-11-23 20:30 ` John Hubbard
2024-11-23 20:57 ` Linus Torvalds
2024-11-23 22:01 ` Matthew Wilcox
2024-11-23 18:49 ` pr-tracker-bot
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=20241121214229.8fe091954f9bf0d26f54ed88@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mm-commits@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=willy@infradead.org \
/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
all inboxes | Powered by JetHome®