From: Andrew Morton <akpm@linux-foundation.org>
To: Yun Zhou <yun.zhou@windriver.com>
Cc: <cem@kernel.org>, <djwong@kernel.org>, <hch@lst.de>,
<willy@infradead.org>, <hwenwur@gmail.com>,
<linux-xfs@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
linux-mm@kvack.org
Subject: Re: [PATCH v2 1/2] mm: introduce memalloc_flags_move() for transferring allocation scopes
Date: Sun, 19 Jul 2026 13:57:28 -0700 [thread overview]
Message-ID: <20260719135728.cb036d8c922c5cea1e263ca1@linux-foundation.org> (raw)
In-Reply-To: <20260719095732.1813590-2-yun.zhou@windriver.com>
On Sun, 19 Jul 2026 17:57:31 +0800 Yun Zhou <yun.zhou@windriver.com> wrote:
> Add memalloc_flags_move() to transfer a saved memalloc scope from one
> tracking variable to another. The source is zeroed so that a
> subsequent memalloc_flags_restore() on it becomes a no-op, effectively
> transferring ownership of the scope to the destination.
>
> This is needed when a subsystem hands off an allocation context from
> one structure to another (e.g. during transaction rolling in
> filesystems), and needs to ensure the scope remains active without an
> extra save/restore cycle.
>
> ...
>
Thanks. fyi, Sashiko might have found a pre-existing xfs issue:
https://sashiko.dev/#/patchset/20260719095732.1813590-1-yun.zhou@windriver.com
> include/linux/sched/mm.h | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
This file isn't mentioned in MAINTAINERS. Could someone please propose
a patch?
From the MM side, probably just place it in every record which mentions
include/linux/mm.h - close enough.
> --- a/include/linux/sched/mm.h
> +++ b/include/linux/sched/mm.h
> @@ -342,6 +342,23 @@ static inline void memalloc_flags_restore(unsigned flags)
> current->flags &= ~flags;
> }
>
> +/**
> + * memalloc_flags_move - transfer a memalloc scope from one tracking
> + * variable to another.
> + * @old_flags: pointer to the source flags (will be zeroed)
> + *
> + * Returns the flags value to store in the destination. The source is
> + * set to zero so that a subsequent memalloc_flags_restore() on it is
> + * a no-op.
> + */
> +static inline unsigned int memalloc_flags_move(unsigned int *old_flags)
> +{
> + unsigned int ret = *old_flags;
> +
> + *old_flags = 0;
> + return ret;
> +}
> +
I've added linux-mm to cc here. Please include it in any future
versions of this patchset.
next prev parent reply other threads:[~2026-07-19 20:57 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-19 9:57 [PATCH v2 0/2] xfs: restore nofs context unconditionally in xfs_trans_roll Yun Zhou
2026-07-19 9:57 ` [PATCH v2 1/2] mm: introduce memalloc_flags_move() for transferring allocation scopes Yun Zhou
2026-07-19 20:57 ` Andrew Morton [this message]
2026-07-20 4:43 ` Zhou, Yun
2026-07-19 9:57 ` [PATCH v2 2/2] xfs: restore nofs context unconditionally in xfs_trans_roll Yun Zhou
2026-07-20 8:39 ` Christoph Hellwig
2026-07-24 4:08 ` Zhou, Yun
2026-07-24 5:27 ` Christoph Hellwig
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=20260719135728.cb036d8c922c5cea1e263ca1@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=cem@kernel.org \
--cc=djwong@kernel.org \
--cc=hch@lst.de \
--cc=hwenwur@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-xfs@vger.kernel.org \
--cc=willy@infradead.org \
--cc=yun.zhou@windriver.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
all inboxes | Powered by JetHome®