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 2022-05-12 22:57:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11-server (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11-server.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11-server"

Thu May 12 22:57:46 2022 rev:407 rq:976070 version:21.1.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11-server/xorg-x11-server.changes  
2022-04-06 21:51:14.199741592 +0200
+++ 
/work/SRC/openSUSE:Factory/.xorg-x11-server.new.1538/xorg-x11-server.changes    
    2022-05-12 22:58:01.416608559 +0200
@@ -1,0 +2,5 @@
+Tue May 10 13:04:38 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- add n_raise_default_clients.patch 
+
+-------------------------------------------------------------------

New:
----
  n_raise_default_clients.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11-server.spec ++++++
--- /var/tmp/diff_new_pack.NP3jq6/_old  2022-05-12 22:58:02.548610078 +0200
+++ /var/tmp/diff_new_pack.NP3jq6/_new  2022-05-12 22:58:02.552610084 +0200
@@ -199,6 +199,7 @@
 Patch2:         N_zap_warning_xserver.diff
 Patch3:         N_driver-autoconfig.diff
 Patch4:         N_fix_fglrx_screendepth_issue.patch
+Patch5:         n_raise_default_clients.patch
 Patch6:         N_fix-dpi-values.diff
 Patch7:         N_Install-Avoid-failure-on-wrapper-installation.patch
 Patch8:         u_xorg-wrapper-Drop-supplemental-group-IDs.patch
@@ -363,6 +364,7 @@
 %patch2 -p1
 %patch3 -p0
 %patch4 -p0
+%patch5 -p1
 %patch6 -p0
 %patch7 -p1
 %patch8 -p1

++++++ n_raise_default_clients.patch ++++++
Author: Dirk Mueller <dmuel...@suse.de>
Subject: Raise default client limit to 512
Patch-Mainline: Never

After a while of starting too many browser tabs, I ran into
xorg: Maximum number of clients reached

which also prevented me from starting a terminal window to debug
the issue.. so raise the default a bit. Based on 

https://plug-discuss.phxlinux.narkive.com/BWkQ7Xez/xorg-maximum-number-of-clients-reached
it appears other distros are also doing that.

--- xorg-server-21.1.3.orig/include/misc.h
+++ xorg-server-21.1.3/include/misc.h
@@ -88,7 +88,7 @@ OF THIS SOFTWARE.
 #define MAXGPUSCREENS  16
 #endif
 #define MAXCLIENTS     2048
-#define LIMITCLIENTS   256     /* Must be a power of 2 and <= MAXCLIENTS */
+#define LIMITCLIENTS   512     /* Must be a power of 2 and <= MAXCLIENTS */
 #define MAXEXTENSIONS   128
 #define MAXFORMATS     8
 #ifndef MAXDEVICES
--- xorg-server-21.1.3.orig/man/Xserver.man
+++ xorg-server-21.1.3/man/Xserver.man
@@ -317,9 +317,9 @@ A value of zero makes the stack size as
 of \-1 leaves the stack space limit unchanged.
 .TP 8
 .B \-maxclients
-.BR 64 | 128 | 256 | 512
+.BR 64 | 128 | 256 | 512 | 1024 | 2048
 Set the maximum number of clients allowed to connect to the X server.
-Acceptable values are 64, 128, 256 or 512.
+Acceptable values are 64, 128, 256, 512, 1024 or 2048.
 .TP 8
 .B \-render
 .BR default | mono | gray | color

Reply via email to