From: David Hildenbrand <david@redhat.com>
To: Huang Ying <ying.huang@intel.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>
Cc: x86@kernel.org, Andrew Morton <akpm@linux-foundation.org>,
Oscar Salvador <osalvador@suse.de>,
linux-coco@lists.linux.dev, linux-mm@kvack.org,
linux-kernel@vger.kernel.org,
Dan Williams <dan.j.williams@intel.com>,
Kai Huang <kai.huang@intel.com>, "H. Peter Anvin" <hpa@zytor.com>,
Andy Lutomirski <luto@kernel.org>
Subject: Re: [PATCH] tdx, memory hotplug: Check whole hot-adding memory range for TDX
Date: Mon, 30 Sep 2024 10:58:09 +0200 [thread overview]
Message-ID: <cf4a3ae4-deae-4224-88e3-308a55492085@redhat.com> (raw)
In-Reply-To: <20240930055112.344206-1-ying.huang@intel.com>
On 30.09.24 07:51, Huang Ying wrote:
> On systems with TDX (Trust Domain eXtensions) enabled, memory ranges
> hot-added must be checked for compatibility by TDX. This is currently
> implemented through memory hotplug notifiers for each memory_block.
> If a memory range which isn't TDX compatible is hot-added, for
> example, some CXL memory, the command line as follows,
>
> $ echo 1 > /sys/devices/system/node/nodeX/memoryY/online
>
> will report something like,
>
> bash: echo: write error: Operation not permitted
>
> If pr_debug() is enabled, the error message like below will be shown
> in the kernel log,
>
> online_pages [mem 0xXXXXXXXXXX-0xXXXXXXXXXX] failed
>
> Both are too general to root cause the problem. This will confuse
> users. One solution is to print some error messages in the TDX memory
> hotplug notifier. However, memory hotplug notifiers are called for
> each memory block, so this may lead to a large volume of messages in
> the kernel log if a large number of memory blocks are onlined with a
> script or automatically. For example, the typical size of memory
> block is 128MB on x86_64, when online 64GB CXL memory, 512 messages
> will be logged.
ratelimiting would likely help here a lot, but I agree that it is
suboptimal.
>
> Therefore, in this patch, the whole hot-adding memory range is checked
> for TDX compatibility through a newly added architecture specific
> function (arch_check_hotplug_memory_range()). If rejected, the memory
> hot-adding will be aborted with a proper kernel log message. Which
> looks like something as below,
>
> virt/tdx: Reject hot-adding memory range: 0xXXXXXXXX-0xXXXXXXXX for TDX compatibility.
> > The target use case is to support CXL memory on TDX enabled systems.
> If the CXL memory isn't compatible with TDX, the whole CXL memory
> range hot-adding will be rejected. While the CXL memory can still be
> used via devdax interface.
I'm curious, why can that memory be used through devdax but not through
the buddy? I'm probably missing something important :)
>
> This also makes the original TDX memory hotplug notifier useless, so
> delete it.
The online-notifier would even be too late when used with the
memmap-on-memory feature I assume, as we might be touching that memory
even before being able to call memory online notifiers.
One way to handle that would be to switch to the MEM_PREPARE_ONLINE
notifier, but it's still called per-memory block.
Nothing jumped at me, so
Acked-by: David Hildenbrand <david@redhat.com>
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2024-09-30 8:58 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-30 5:51 [PATCH] tdx, memory hotplug: Check whole hot-adding memory range for TDX Huang Ying
2024-09-30 8:58 ` David Hildenbrand [this message]
2024-09-30 23:51 ` Huang, Ying
2024-10-01 7:54 ` David Hildenbrand
2024-10-03 20:39 ` Yang Shi
2024-10-03 23:32 ` Dan Williams
2024-10-04 1:10 ` Yang Shi
2024-10-04 3:15 ` Dan Williams
2024-10-04 10:21 ` David Hildenbrand
2024-10-04 15:54 ` Yang Shi
2024-10-04 15:46 ` Yang Shi
2024-10-10 17:52 ` James Morse
2024-10-10 18:28 ` Dan Williams
2024-10-10 19:46 ` Yang Shi
2024-10-01 6:45 ` Dan Williams
2024-10-01 7:56 ` David Hildenbrand
2024-10-01 8:08 ` Dan Williams
2024-10-04 10:16 ` David Hildenbrand
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=cf4a3ae4-deae-4224-88e3-308a55492085@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=dan.j.williams@intel.com \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=kai.huang@intel.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-coco@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=luto@kernel.org \
--cc=mingo@redhat.com \
--cc=osalvador@suse.de \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=ying.huang@intel.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;
as well as URLs for NNTP newsgroup(s).