Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xorg-x11-server for openSUSE:Factory
checked in at 2024-01-07 21:39:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
and /work/SRC/openSUSE:Factory/.xorg-x11-server.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xorg-x11-server"
Sun Jan 7 21:39:07 2024 rev:422 rq:1137260 version:21.1.9
Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes
2023-12-14 22:02:32.422768468 +0100
+++
/work/SRC/openSUSE:Factory/.xorg-x11-server.new.28375/xorg-x11-server.changes
2024-01-07 21:39:12.109617278 +0100
@@ -1,0 +2,10 @@
+Sat Jan 6 15:12:29 UTC 2024 - Stefan Dirsch <[email protected]>
+
+- n_xserver-optimus-autoconfig-hack.patch
+ u_randr-Do-not-crash-if-slave-screen-does-not-have-pro.patch
+ u_xfree86-activate-GPU-screens-on-autobind.patch
+ * check dixPrivateKeyRegistered(rrPrivKey) before calling
+ rrGetScrPriv() to avoid xserver crash when Xinerama is enabled
+ (boo#1218240)
+
+ -------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.Wqw84m/_old 2024-01-07 21:39:13.377663403 +0100
+++ /var/tmp/diff_new_pack.Wqw84m/_new 2024-01-07 21:39:13.377663403 +0100
@@ -1,7 +1,7 @@
#
# spec file for package xorg-x11-server
#
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
++++++ n_xserver-optimus-autoconfig-hack.patch ++++++
--- /var/tmp/diff_new_pack.Wqw84m/_old 2024-01-07 21:39:13.497667769 +0100
+++ /var/tmp/diff_new_pack.Wqw84m/_new 2024-01-07 21:39:13.501667914 +0100
@@ -62,7 +62,7 @@
#include "picturestr.h"
#include "randrstr.h"
#include "glxvndabi.h"
-@@ -294,6 +295,231 @@ AddVTAtoms(CallbackListPtr *pcbl, void *
+@@ -294,6 +295,237 @@ AddVTAtoms(CallbackListPtr *pcbl, void *
"Failed to register VT properties\n");
}
@@ -92,6 +92,9 @@
+ } *outputConfigs;
+ int outputConfigsCount = 0, outputConfigsUsed = 0;
+
++ if (!dixPrivateKeyRegistered(rrPrivKey))
++ return;
++
+ pMasterScrPriv = rrGetScrPriv(pMasterScreen);
+ if (!pMasterScrPriv)
+ return;
@@ -253,6 +256,9 @@
+ rrScrPrivPtr master_rp;
+ rrScrPrivPtr slave_rp;
+
++ if (!dixPrivateKeyRegistered(rrPrivKey))
++ return;
++
+ master_rp = rrGetScrPriv(master);
+ slave_rp = rrGetScrPriv(slave);
+
++++++ u_randr-Do-not-crash-if-slave-screen-does-not-have-pro.patch ++++++
--- /var/tmp/diff_new_pack.Wqw84m/_old 2024-01-07 21:39:13.557669951 +0100
+++ /var/tmp/diff_new_pack.Wqw84m/_new 2024-01-07 21:39:13.565670243 +0100
@@ -25,9 +25,13 @@
===================================================================
--- xorg-server-21.1.0.orig/randr/randr.c
+++ xorg-server-21.1.0/randr/randr.c
-@@ -651,7 +651,9 @@ RRTellChanged(ScreenPtr pScreen)
+@@ -650,8 +650,13 @@ RRTellChanged(ScreenPtr pScreen)
+ pScrPriv->crtcs[i]->changed = FALSE;
xorg_list_for_each_entry(iter, &primary->secondary_list,
secondary_head) {
++ if (!dixPrivateKeyRegistered(rrPrivKey)) {
++ break;
++ }
pSecondaryScrPriv = rrGetScrPriv(iter);
- pSecondaryScrPriv->provider->changed = FALSE;
+ if (pSecondaryScrPriv->provider) {
++++++ u_xfree86-activate-GPU-screens-on-autobind.patch ++++++
--- /var/tmp/diff_new_pack.Wqw84m/_old 2024-01-07 21:39:13.593671261 +0100
+++ /var/tmp/diff_new_pack.Wqw84m/_new 2024-01-07 21:39:13.597671407 +0100
@@ -59,7 +59,7 @@
}
static void
-@@ -258,6 +263,186 @@ AddVTAtoms(CallbackListPtr *pcbl, void *data, void
*screen)
+@@ -258,6 +263,189 @@ AddVTAtoms(CallbackListPtr *pcbl, void *data, void
*screen)
"Failed to register VT properties\n");
}
@@ -90,6 +90,9 @@
+ } *outputConfigs;
+ int outputConfigsCount = 0, outputConfigsUsed = 0;
+
++ if (!dixPrivateKeyRegistered(rrPrivKey))
++ return;
++
+ pMasterScrPriv = rrGetScrPriv(pMasterScreen);
+ if (!pMasterScrPriv)
+ return;