From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
Andrew Cooper <andrew.cooper3@citrix.com>
Subject: Re: [PATCH v2 2/5] x86/HVM: allocate emulation cache entries dynamically
Date: Wed, 22 Jan 2025 13:00:14 +0100 [thread overview]
Message-ID: <Z5Ddzh-Ygy5cGuPj@macbook.local> (raw)
In-Reply-To: <93967ab8-a472-475a-bdd6-41dfc3afa895@suse.com>
On Tue, Oct 01, 2024 at 10:49:10AM +0200, Jan Beulich wrote:
> Both caches may need higher capacity, and the upper bound will need to
> be determined dynamically based on CPUID policy (for AMX'es TILELOAD /
> TILESTORE at least).
>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Just a couple of comments below.
> ---
> This is a patch taken from the AMX series, but wasn't part of the v3
> submission. All I did is strip out the actual AMX bits (from
> hvmemul_cache_init()), plus of course change the description. As a
> result some local variables there may look unnecessary, but this way
> it's going to be less churn when the AMX bits are added. The next patch
> pretty strongly depends on the changed approach (contextually, not so
> much functionally), and I'd really like to avoid rebasing that one ahead
> of this one, and then this one on top of that.
Oh, I was just going to ask about the weirdness of nents compared to
what was previously.
>
> TBD: For AMX hvmemul_cache_init() will become CPUID policy dependent. We
> could of course take the opportunity and also reduce overhead when
> AVX-512 (and maybe even AVX) is unavailable (in the future: to the
> guest).
> ---
> v2: Split off cache bounds check fix.
>
> --- a/xen/arch/x86/hvm/emulate.c
> +++ b/xen/arch/x86/hvm/emulate.c
> @@ -26,6 +26,18 @@
> #include <asm/iocap.h>
> #include <asm/vm_event.h>
>
> +/*
> + * We may read or write up to m512 or up to a tile row as a number of
> + * device-model transactions.
> + */
> +struct hvm_mmio_cache {
> + unsigned long gla;
> + unsigned int size;
> + unsigned int space:31;
Having size and space is kind of confusing, would you mind adding a
comment that size is the runtime consumed buffer space, while space is
the total allocated buffer size (and hence not supposed to change
during usage)?
> + unsigned int dir:1;
> + uint8_t buffer[] __aligned(sizeof(long));
> +};
> +
> struct hvmemul_cache
> {
> /* The cache is disabled as long as num_ents > max_ents. */
> @@ -935,7 +947,7 @@ static int hvmemul_phys_mmio_access(
> }
>
> /* Accesses must not overflow the cache's buffer. */
> - if ( offset + size > sizeof(cache->buffer) )
> + if ( offset + size > cache->space )
> {
> ASSERT_UNREACHABLE();
> return X86EMUL_UNHANDLEABLE;
> @@ -1011,7 +1023,7 @@ static struct hvm_mmio_cache *hvmemul_fi
>
> for ( i = 0; i < hvio->mmio_cache_count; i ++ )
> {
> - cache = &hvio->mmio_cache[i];
> + cache = hvio->mmio_cache[i];
>
> if ( gla == cache->gla &&
> dir == cache->dir )
> @@ -1027,10 +1039,11 @@ static struct hvm_mmio_cache *hvmemul_fi
>
> ++hvio->mmio_cache_count;
>
> - cache = &hvio->mmio_cache[i];
> - memset(cache, 0, sizeof (*cache));
> + cache = hvio->mmio_cache[i];
> + memset(cache->buffer, 0, cache->space);
>
> cache->gla = gla;
> + cache->size = 0;
> cache->dir = dir;
>
> return cache;
> @@ -2978,16 +2991,21 @@ void hvm_dump_emulation_state(const char
> int hvmemul_cache_init(struct vcpu *v)
> {
> /*
> - * No insn can access more than 16 independent linear addresses (AVX512F
> - * scatters/gathers being the worst). Each such linear range can span a
> - * page boundary, i.e. may require two page walks. Account for each insn
> - * byte individually, for simplicity.
> + * AVX512F scatter/gather insns can access up to 16 independent linear
> + * addresses, up to 8 bytes size. Each such linear range can span a page
> + * boundary, i.e. may require two page walks.
> + */
> + unsigned int nents = 16 * 2 * (CONFIG_PAGING_LEVELS + 1);
> + unsigned int i, max_bytes = 64;
> + struct hvmemul_cache *cache;
> +
> + /*
> + * Account for each insn byte individually, both for simplicity and to
> + * leave some slack space.
> */
> - const unsigned int nents = (CONFIG_PAGING_LEVELS + 1) *
> - (MAX_INST_LEN + 16 * 2);
> - struct hvmemul_cache *cache = xmalloc_flex_struct(struct hvmemul_cache,
> - ents, nents);
> + nents += MAX_INST_LEN * (CONFIG_PAGING_LEVELS + 1);
>
> + cache = xvmalloc_flex_struct(struct hvmemul_cache, ents, nents);
Change here seems completely unrelated, but I guess this is what you
refer to in the post-commit remark. IOW: the split of the nents
variable setup, plus the change of xmalloc_flex_struct() ->
xvmalloc_flex_struct() don't seem to be related to the change at
hand.
> if ( !cache )
> return -ENOMEM;
>
> @@ -2997,6 +3015,15 @@ int hvmemul_cache_init(struct vcpu *v)
>
> v->arch.hvm.hvm_io.cache = cache;
>
> + for ( i = 0; i < ARRAY_SIZE(v->arch.hvm.hvm_io.mmio_cache); ++i )
> + {
> + v->arch.hvm.hvm_io.mmio_cache[i] =
> + xmalloc_flex_struct(struct hvm_mmio_cache, buffer, max_bytes);
TBH I would be tempted to just use xvmalloc here also, even if the
structure is never going to be > PAGE_SIZE, it's more consistent IMO.
Thanks, Roger.
next prev parent reply other threads:[~2025-01-22 12:00 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-01 8:47 [PATCH v2 0/5] x86/HVM: emulation (MMIO) improvements Jan Beulich
2024-10-01 8:48 ` [PATCH v2 1/5] x86/HVM: correct MMIO emulation cache bounds check Jan Beulich
2025-01-22 10:44 ` Roger Pau Monné
2024-10-01 8:49 ` [PATCH v2 2/5] x86/HVM: allocate emulation cache entries dynamically Jan Beulich
2025-01-22 12:00 ` Roger Pau Monné [this message]
2025-01-22 13:39 ` Jan Beulich
2025-01-22 17:47 ` Roger Pau Monné
2024-10-01 8:49 ` [PATCH v2 3/5] x86/HVM: correct read/write split at page boundaries Jan Beulich
2025-01-22 17:45 ` Roger Pau Monné
2025-01-23 9:49 ` Jan Beulich
2025-01-23 12:23 ` Roger Pau Monné
2024-10-01 8:50 ` [PATCH v2 4/5] x86/HVM: slightly improve CMPXCHG16B emulation Jan Beulich
2024-10-01 8:50 ` [PATCH v2 5/5] x86/HVM: drop redundant access splitting Jan Beulich
2025-01-23 9:01 ` Roger Pau Monné
2025-01-23 9:20 ` Jan Beulich
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=Z5Ddzh-Ygy5cGuPj@macbook.local \
--to=roger.pau@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.