From: Dmitry Osipenko <dmitry.osipenko@collabora.com>
To: fnkl.kernel@gmail.com, David Airlie <airlied@redhat.com>,
Gerd Hoffmann <kraxel@redhat.com>,
Gurchetan Singh <gurchetansingh@chromium.org>,
Chia-I Wu <olvaffe@gmail.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
Simona Vetter <simona@ffwll.ch>, Sergio Lopez <slp@redhat.com>,
Rob Clark <robdclark@gmail.com>
Cc: dri-devel@lists.freedesktop.org, virtualization@lists.linux.dev,
linux-kernel@vger.kernel.org, asahi@lists.linux.dev
Subject: Re: [PATCH RESEND] drm/virtio: Align host mapping request to maximum platform page size
Date: Sat, 25 Jan 2025 01:51:36 +0300 [thread overview]
Message-ID: <a55eecdc-76cc-432e-a4b3-90e8753088ac@collabora.com> (raw)
In-Reply-To: <20250124-virtgpu-mixed-page-size-v1-1-480403790bac@gmail.com>
On 1/25/25 01:01, Sasha Finkelstein via B4 Relay wrote:
> From: Sasha Finkelstein <fnkl.kernel@gmail.com>
>
> This allows running different page sizes between host and guest on
> platforms that support mixed page sizes.
>
> Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com>
> ---
> drivers/gpu/drm/virtio/virtgpu_vram.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/virtio/virtgpu_vram.c b/drivers/gpu/drm/virtio/virtgpu_vram.c
> index 25df81c027837c248a746e41856b5aa7e216b8d5..8a0577c2170ec9c12cad12be57f9a41c14f04660 100644
> --- a/drivers/gpu/drm/virtio/virtgpu_vram.c
> +++ b/drivers/gpu/drm/virtio/virtgpu_vram.c
> @@ -138,6 +138,12 @@ bool virtio_gpu_is_vram(struct virtio_gpu_object *bo)
> return bo->base.base.funcs == &virtio_gpu_vram_funcs;
> }
>
> +#if defined(__powerpc64__) || defined(__aarch64__) || defined(__mips__) || defined(__loongarch__)
> +#define MAX_PAGE_SIZE 65536
#define MAX_PAGE_SIZE SZ_64K
for improved readability
> +#else
> +#define MAX_PAGE_SIZE PAGE_SIZE
> +#endif
> +
> static int virtio_gpu_vram_map(struct virtio_gpu_object *bo)
> {
> int ret;
> @@ -150,8 +156,8 @@ static int virtio_gpu_vram_map(struct virtio_gpu_object *bo)
> return -EINVAL;
>
> spin_lock(&vgdev->host_visible_lock);
> - ret = drm_mm_insert_node(&vgdev->host_visible_mm, &vram->vram_node,
> - bo->base.base.size);
> + ret = drm_mm_insert_node_generic(&vgdev->host_visible_mm, &vram->vram_node,
> + bo->base.base.size, MAX_PAGE_SIZE, 0, 0);
This change only reserves extra space in the memory allocator, but
doesn't change actual size of allocated BO. Instead, you likely need to
replace all ALIGN(size, PAGE_SIZE) occurrences in the driver code with
ALIGN(args->size, MAX_PAGE_SIZE)
> spin_unlock(&vgdev->host_visible_lock);
>
> if (ret)
Note, previously a new virtio-gpu parameter was proposed to expose
host's page size to guest [1], if you haven't seen it.
[1] https://lore.kernel.org/dri-devel/20240723114914.53677-1-slp@redhat.com/
Aligning GEM's size to 64K indeed could be a good enough immediate
solution. Don't see any obvious problems with that, other than the
potential size overhead for a small BOs.
We have been running into cases where a DXVK game allocates enormous
amounts of small BOs to the point that amount reaches max number of
mappings on QEMU with amdgpu native context. On the other hand, it
showed that adding internal sub-allocator to RADV might be a worthwhile
effort. We won't change alignment on x86 with this patch and on non-x86
likely the increased size won't be noticeable, hence the proposed change
might be acceptable.
Curious what Rob Clark thinks about it. Rob, WDYT?
--
Best regards,
Dmitry
next prev parent reply other threads:[~2025-01-24 22:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-24 22:01 [PATCH RESEND] drm/virtio: Align host mapping request to maximum platform page size Sasha Finkelstein via B4 Relay
2025-01-24 22:51 ` Dmitry Osipenko [this message]
2025-01-24 22:58 ` Sasha Finkelstein
2025-01-24 23:34 ` Dmitry Osipenko
2025-02-12 21:07 ` Rob Clark
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=a55eecdc-76cc-432e-a4b3-90e8753088ac@collabora.com \
--to=dmitry.osipenko@collabora.com \
--cc=airlied@redhat.com \
--cc=asahi@lists.linux.dev \
--cc=dri-devel@lists.freedesktop.org \
--cc=fnkl.kernel@gmail.com \
--cc=gurchetansingh@chromium.org \
--cc=kraxel@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=olvaffe@gmail.com \
--cc=robdclark@gmail.com \
--cc=simona@ffwll.ch \
--cc=slp@redhat.com \
--cc=tzimmermann@suse.de \
--cc=virtualization@lists.linux.dev \
/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