This is a note to let you know that I've just added the patch titled
drm/vmwgfx: Disable coherent dumb buffers without 3d to the 6.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: drm-vmwgfx-disable-coherent-dumb-buffers-without-3d.patch and it can be found in the queue-6.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <sta...@vger.kernel.org> know about it. >From e9fd436bb8fb9b9d31fdf07bbcdba6d30290c5e4 Mon Sep 17 00:00:00 2001 From: Zack Rusin <zack.ru...@broadcom.com> Date: Fri, 16 Aug 2024 14:32:07 -0400 Subject: drm/vmwgfx: Disable coherent dumb buffers without 3d From: Zack Rusin <zack.ru...@broadcom.com> commit e9fd436bb8fb9b9d31fdf07bbcdba6d30290c5e4 upstream. Coherent surfaces make only sense if the host renders to them using accelerated apis. Without 3d the entire content of dumb buffers stays in the guest making all of the extra work they're doing to synchronize between guest and host useless. Configurations without 3d also tend to run with very low graphics memory limits. The pinned console fb, mob cursors and graphical login manager tend to run out of 16MB graphics memory that those guests use. Fix it by making sure the coherent dumb buffers are only used on configs with 3d enabled. Signed-off-by: Zack Rusin <zack.ru...@broadcom.com> Fixes: d6667f0ddf46 ("drm/vmwgfx: Fix handling of dumb buffers") Reported-by: Christian Heusel <christ...@heusel.eu> Closes: https://lore.kernel.org/all/0d0330f3-2ac0-4cd5-8075-7f1cbaf72...@heusel.eu Cc: Broadcom internal kernel review list <bcm-kernel-feedback-l...@broadcom.com> Cc: dri-devel@lists.freedesktop.org Cc: <sta...@vger.kernel.org> # v6.9+ Link: https://patchwork.freedesktop.org/patch/msgid/20240816183332.31961-4-zack.ru...@broadcom.com Reviewed-by: Martin Krastev <martin.kras...@broadcom.com> Reviewed-by: Maaz Mombasawala <maaz.mombasaw...@broadcom.com> Tested-by: Benjamin Coddington <bcodd...@redhat.com> Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org> --- drivers/gpu/drm/vmwgfx/vmwgfx_surface.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c @@ -2283,9 +2283,11 @@ int vmw_dumb_create(struct drm_file *fil /* * Without mob support we're just going to use raw memory buffer * because we wouldn't be able to support full surface coherency - * without mobs + * without mobs. There also no reason to support surface coherency + * without 3d (i.e. gpu usage on the host) because then all the + * contents is going to be rendered guest side. */ - if (!dev_priv->has_mob) { + if (!dev_priv->has_mob || !vmw_supports_3d(dev_priv)) { int cpp = DIV_ROUND_UP(args->bpp, 8); switch (cpp) { Patches currently in stable-queue which might be from zack.ru...@broadcom.com are queue-6.10/drm-vmwgfx-prevent-unmapping-active-read-buffers.patch queue-6.10/drm-vmwgfx-disable-coherent-dumb-buffers-without-3d.patch queue-6.10/drm-vmwgfx-fix-prime-with-external-buffers.patch