Discussion:
When starting Evolution /usr/lib/gdm3/gdm-x-session[2309]: (II) modeset information is printed to syslog
Chris
2018-09-01 15:24:25 UTC
Permalink
This started the same day I did the upgrade from 16.04LTS to 18.04LTS.
Package/system information below:

lsb_release -crid
Distributor ID: Ubuntu
Description: Ubuntu 18.04.1 LTS
Release: 18.04
Codename: bionic

apt-cache policy gdm3
gdm3:
Installed: 3.28.2-0ubuntu1.4
Candidate: 3.28.2-0ubuntu1.4

apt-cache policy evolution
evolution:
Installed: 3.28.1-2
Candidate: 3.28.1-2

apt-cache policy xserver-xorg
xserver-xorg:
Installed: 1:7.7+19ubuntu7.1
Candidate: 1:7.7+19ubuntu7.1

When starting Evolution this is output to syslog and periodically after it's running:

https://pastebin.com/zndBukUG

I've filed a bug report on Ubuntu Launchpad:

https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1788739

Should I also submit a bug report at freedesktop.org for this or is
this possibly some kind of a configuration issue that I can check?

Chris
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
10:12:57 up 23:30, 1 user, load average: 0.57, 0.44, 0.29
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-33-generic
Adam Jackson
2018-09-05 19:16:02 UTC
Permalink
Post by Chris
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for the list
of available video modes. It's doing so with XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug events to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, but maybe the client shouldn't be ten
years behind the times in its API usage.

In other words, I think this is a gnome bug.

- ajax
_______________________________________________
***@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: https://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_
Chris
2018-09-05 20:28:44 UTC
Permalink
Post by Adam Jackson
Post by Chris
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for the list
of available video modes. It's doing so with XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug events to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, but maybe the client shouldn't be ten
years behind the times in its API usage.
In other words, I think this is a gnome bug.
- ajax
Thanks Adam, I have filed a bug report here -
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1788739
and here
https://bugs.freedesktop.org/show_bug.cgi?id=107841

Since the output refers to /usr/lib/gdm3/gdm-x-session I'm going to
file a bug report on Gnome Bugzilla under gdm and see how that goes.

Chris
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
15:16:34 up 5 days, 4:34, 2 users, load average: 0.71, 1.05, 1.08
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-33-generic
Michel Dänzer
2018-09-06 10:21:21 UTC
Permalink
Post by Adam Jackson
Post by Chris
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for the list
of available video modes. It's doing so with XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug events to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the default log
verbosity.
--
Earthling Michel Dänzer | http://www.amd.com
Libre software enthusiast | Mesa and X developer
_______________________________________________
***@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: https://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(use
Chris
2018-09-06 11:53:05 UTC
Permalink
Post by Michel Dänzer
Post by Adam Jackson
Post by Chris
When starting Evolution this is output to syslog and periodically
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for the list
of available video modes. It's doing so with
XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every
available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug events to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the default log
verbosity.
AFAICT my rsyslog.conf it's the default. I don't know if uncommenting
these lines would help or not:

### Debugging ###
# $DebugFile /var/log/rsyslog-debug
# $DebugLevel 2

# syslog.* /var/log/syslog.debug;RSYSLOG_DebugFormat
# $DebugFile /var/log/syslog.debug
# $DebugLevel 2
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
06:49:25 up 5 days, 20:07, 1 user, load average: 0.69, 0.53, 0.49
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-33-generic
Michel Dänzer
2018-09-06 14:00:28 UTC
Permalink
Post by Chris
Post by Michel Dänzer
Post by Adam Jackson
Post by Chris
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for the list
of available video modes. It's doing so with
XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every
available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug events to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the default log
verbosity.
AFAICT my rsyslog.conf it's the default. I don't know if uncommenting
### Debugging ###
# $DebugFile /var/log/rsyslog-debug
# $DebugLevel 2
# syslog.* /var/log/syslog.debug;RSYSLOG_DebugFormat
# $DebugFile /var/log/syslog.debug
# $DebugLevel 2
Yeah, sorry, different meaning of "should" — the code definitely always
has printed these by default, it just arguably shouldn't.

Anyway, Adam is right that the client shouldn't use this functionality
in the first place.
--
Earthling Michel DÀnzer | http://www.amd.com
Libre software enthusiast | Mesa and X developer
Chris
2018-09-06 15:10:07 UTC
Permalink
Post by Michel Dänzer
Post by Chris
Post by Michel Dänzer
Post by Adam Jackson
Post by Chris
When starting Evolution this is output to syslog and
periodically
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for
the
list
of available video modes. It's doing so with
XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it should be
using XRRGetScreenResourcesCurrent() and relying on hotplug
events
to
trigger re-polling. Now, maybe the X server shouldn't print the modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the default log
verbosity.
AFAICT my rsyslog.conf it's the default. I don't know if
uncommenting
### Debugging ###
# $DebugFile /var/log/rsyslog-debug
# $DebugLevel 2
# syslog.* /var/log/syslog.debug;RSYSLOG_DebugFormat
# $DebugFile /var/log/syslog.debug
# $DebugLevel 2
Yeah, sorry, different meaning of "should" — the code definitely always
has printed these by default, it just arguably shouldn't.
Anyway, Adam is right that the client shouldn't use this
functionality
in the first place.
Besides the bug report submitted at Ubuntu Launchpad that I mentioned
in my original post I've also submitted them as noted below.

https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1788739

https://bugs.freedesktop.org/show_bug.cgi?id=107841

https://gitlab.gnome.org/GNOME/gdm/issues/418

The reasoning for this is I'm just not exactly who's purview this would
come under.

Chris
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
10:06:17 up 5 days, 23:24, 2 users, load average: 0.95, 1.04, 0.99
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-33-generic
Chris Pollock
2018-09-25 00:46:32 UTC
Permalink
Post by Chris
Post by Michel Dänzer
Post by Chris
Post by Michel Dänzer
Post by Adam Jackson
Post by Chris
When starting Evolution this is output to syslog and
periodically
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for
the
list
of available video modes. It's doing so with
XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it
should
be
using XRRGetScreenResourcesCurrent() and relying on hotplug
events
to
trigger re-polling. Now, maybe the X server shouldn't print
the
modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the default log
verbosity.
AFAICT my rsyslog.conf it's the default. I don't know if
uncommenting
### Debugging ###
# $DebugFile /var/log/rsyslog-debug
# $DebugLevel 2
# syslog.* /var/log/syslog.debug;RSYSLOG_DebugFormat
# $DebugFile /var/log/syslog.debug
# $DebugLevel 2
Yeah, sorry, different meaning of "should" — the code definitely always
has printed these by default, it just arguably shouldn't.
Anyway, Adam is right that the client shouldn't use this
functionality
in the first place.
Besides the bug report submitted at Ubuntu Launchpad that I mentioned
in my original post I've also submitted them as noted below.
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1788739
https://bugs.freedesktop.org/show_bug.cgi?id=107841
https://gitlab.gnome.org/GNOME/gdm/issues/418
The reasoning for this is I'm just not exactly who's purview this would
come under.
I thought I'd add that this also happens when starting and stopping XFE

xfe:
Installed: 1.42-1
Candidate: 1.42-1
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
19:44:42 up 13:06, 1 user, load average: 0.58, 0.49, 0.54
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-34-generic
Chris Pollock
2018-11-26 22:27:09 UTC
Permalink
Post by Chris Pollock
Post by Chris
Post by Michel Dänzer
Post by Chris
Post by Michel Dänzer
Post by Adam Jackson
Post by Chris
When starting Evolution this is output to syslog and periodically
https://pastebin.com/zndBukUG
Evolution, or something it provokes, is asking the server for
the
list
of available video modes. It's doing so with
XRRGetScreenResources(),
apparently, which prompts the X server to go re-check every available
output to see if anything has changed. This is silly, it
should
be
using XRRGetScreenResourcesCurrent() and relying on hotplug
events
to
trigger re-polling. Now, maybe the X server shouldn't print
the
modes
in the log when that happens, [...]
FWIW, it probably shouldn't indeed, at least not at the
default
log
verbosity.
AFAICT my rsyslog.conf it's the default. I don't know if
uncommenting
### Debugging ###
# $DebugFile /var/log/rsyslog-debug
# $DebugLevel 2
# syslog.* /var/log/syslog.debug;RSYSLOG_DebugFormat
# $DebugFile /var/log/syslog.debug
# $DebugLevel 2
Yeah, sorry, different meaning of "should" — the code definitely always
has printed these by default, it just arguably shouldn't.
Anyway, Adam is right that the client shouldn't use this
functionality
in the first place.
Besides the bug report submitted at Ubuntu Launchpad that I
mentioned
in my original post I've also submitted them as noted below.
https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1788739
https://bugs.freedesktop.org/show_bug.cgi?id=107841
https://gitlab.gnome.org/GNOME/gdm/issues/418
The reasoning for this is I'm just not exactly who's purview this would
come under.
I thought I'd add that this also happens when starting and stopping XFE
Installed: 1.42-1
Candidate: 1.42-1
Thought I'd post an update to this since I've tried several different
things to try and stop the output to syslog. Firstly I recognize that
this is on information (II) however I don't believe it should be
written to my syslog ever time I open or close certain applications.
Per suggestions on the Ubuntu-Users list I first installed a new VGA
cable, no change. Since my Dell Optiplex 780 has a DisplayPort output
connector and my ACER monitor has a DVI input port. I bought and
installed a DisplayPort->DVI cable. Here is the
~/.local/share/xorg/Xorg.1.log as written after I installed the cable
and booted the system last Friday and output to it through today
https://pastebin.com/FjfYcUS1
I don't know if there's any information there that would give a clue as
to what's the cause or not. I believe the major issue in
troubleshooting this is that it will not happen each time I start or
stop Evo, XFE, Firefox or others that seems to cause it.
--
Chris
KeyID 0xE372A7DA98E6705C
31.11972; -97.90167 (Elev. 1092 ft)
15:27:03 up 3 days, 52 min, 1 user, load average: 0.99, 0.58, 0.65
Description: Ubuntu 18.04.1 LTS, kernel 4.15.0-39-generic
Loading...