From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CAF6158041 for ; Tue, 5 Mar 2024 09:18:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5053CE2A3F; Tue, 5 Mar 2024 09:18:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B31BE2A3F for ; Tue, 5 Mar 2024 09:18:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D05434302D for ; Tue, 5 Mar 2024 09:18:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03FCE14FB for ; Tue, 5 Mar 2024 09:18:49 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1709630239.aba0738aea3c2d57bcc563953498568584a3fb66.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/mutter/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/mutter/files/mutter-45.2-fullscreen-leak.patch X-VCS-Directories: x11-wm/mutter/files/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: aba0738aea3c2d57bcc563953498568584a3fb66 X-VCS-Branch: master Date: Tue, 5 Mar 2024 09:18:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a43db82c-b570-4183-b2f4-be7cb3281ee3 X-Archives-Hash: 84106c6f18ff37989538ec5091e5bbe1 commit: aba0738aea3c2d57bcc563953498568584a3fb66 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Mar 4 18:29:31 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Tue Mar 5 09:17:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aba0738a x11-wm/mutter: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/35622 Signed-off-by: Petr Vaněk gentoo.org> .../mutter/files/mutter-45.2-fullscreen-leak.patch | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/x11-wm/mutter/files/mutter-45.2-fullscreen-leak.patch b/x11-wm/mutter/files/mutter-45.2-fullscreen-leak.patch deleted file mode 100644 index adbd309c1b7c..000000000000 --- a/x11-wm/mutter/files/mutter-45.2-fullscreen-leak.patch +++ /dev/null @@ -1,37 +0,0 @@ -From bedf8df88f41c34c9824dccba507c8e333dd9ba6 Mon Sep 17 00:00:00 2001 -From: Robert Balas -Date: Mon, 4 Dec 2023 00:27:49 +0100 -Subject: [PATCH] clutter: Fix memory leak when running in fullscreen - -`clutter_stage_do_paint_view()` only gets called when leaving fullscreen -and by that time enough calls to -`clutter_actor_get_transformed_paint_volume()` can make the underlying -GArray grow to a large size. - -To fix this, we call call the cleanup function in -`clutter_stage_finish_layout()` to make it happen every frame. - -Co-authored-by: Sebastian Keller - -Closes: https://gitlab.gnome.org/GNOME/mutter/-/issues/3191 -Part-of: ---- - clutter/clutter/clutter-stage.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/clutter/clutter/clutter-stage.c b/clutter/clutter/clutter-stage.c -index 55bb81c2b46..deb383fe216 100644 ---- a/clutter/clutter/clutter-stage.c -+++ b/clutter/clutter/clutter-stage.c -@@ -970,6 +970,8 @@ clutter_stage_finish_layout (ClutterStage *stage) - } - - g_warn_if_fail (!priv->actor_needs_immediate_relayout); -+ -+ _clutter_stage_paint_volume_stack_free_all (stage); - } - - void --- -GitLab -