Two systems with 4K monitors connected via display port are incorrectly detecting the monitors as non-dri capable on both 410.78 and 415.18. They were correctly detected on 396.54

I am attaching two nvidia bug report logs, one for 410.78, and one for 415.18.

I also have a third system running the same level of X server and kernel with an HD display connected via HDMI that is working correctly with 410.73. 410.73 also had the same problem on the other two systems.

X segfaults on the two problem systems.

410.78-nvidia-bug-report.log.gz (1020 KB)
415.18-nvidia-bug-report.log.gz (1000 KB)

First of all, this has nothing to do with your display/monitor, ‘screen’ means just the useable surface of your desktop.
The problem is that the Xserver is incorrectly trying to enable AIGLX using mesa which obviously doesn’t work since you’re using the nvidia driver.
I don’t know if this is connected to the issue but on system boot, the nvidia drivers get loaded, then unloaded and loaded again, maybe due to the in the logs mentioned nvidia-docker, don’t know, looks bogus, might be a timing issue which is surfacing with the newer drivers.
Two things to try to work around the issue:

  1. backup and remove xorg.conf
  2. if that doesn’t work, put back xorg.conf and add
Section "ServerFlags"
   Option "AIGLX" "off"
EndSection

Thanks for the reply. Your suggestions didn’t solve the problem, so I did a bit of digging on the system that is working. It turns out that I was overwriting libglvnd on that system. As a result the ABI level didn’t match libglx.so, and so the library wasn’t loaded. As a quick, and klugey, test, I moved /usr/lib64/modules/extentions/libglx.so so that it wasn’t found at load time. The systems came up after that. However, if you look at the attached Xorg log from 396.54, you’ll see that it loads libglx.so, and that recognizes that it wants the nvidia version, and does not load glx twice.

Xorg.log.396.54.txt (36.4 KB)

The driver layout canged with v410, the nvidia glx module is now a sub-module getting loaded by the DDX in order to make server-side glxvnd work in Xserver 1.20.

[url]https://devtalk.nvidia.com/default/topic/1044851/linux/fyi-nvidia-410-78-driver-fails-with-segmentation-fault-on-fedora-fc29-workstation-with-nvs-510-card/post/5301228/#5301228[/url]

Thank you !
Removing /usr/lib64/xorg/modules/extensions/libglx.so before already made it to run all drivers.
That explains the segfault from xinit as well.