From: "Zhou, Yun" <yun.zhou@windriver.com>
To: Andrew Morton <akpm@linux-foundation.org>
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: Mon, 20 Jul 2026 12:43:00 +0800 [thread overview]
Message-ID: <9cee6d8d-8247-43dd-8974-3104788841ab@windriver.com> (raw)
In-Reply-To: <20260719135728.cb036d8c922c5cea1e263ca1@linux-foundation.org>
On 7/20/26 04:57, Andrew Morton wrote:
> 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
>
Good catch. This is indeed a pre-existing issue, and needs a separate fix.
>> 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.
>
Well, got it.
Thanks,
Yun
prev parent reply other threads:[~2026-07-20 4:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260719095732.1813590-1-yun.zhou@windriver.com>
[not found] ` <20260719095732.1813590-2-yun.zhou@windriver.com>
2026-07-19 20:57 ` [PATCH v2 1/2] mm: introduce memalloc_flags_move() for transferring allocation scopes Andrew Morton
2026-07-20 4:43 ` Zhou, Yun [this message]
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=9cee6d8d-8247-43dd-8974-3104788841ab@windriver.com \
--to=yun.zhou@windriver.com \
--cc=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 \
/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