Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-11 Thread Stephan Althaus

On 11/11/22 11:55, Andreas Wacknitz wrote:

Hi Stephan,

Thanks to your efforts and the provided patch I have been able to create
a fix for own xorg-server version:
https://github.com/OpenIndiana/oi-userland/pull/9858
as our server is still on 1.19.7 while the patch is for a newer 1.21.1
version an adaption was needed.

My desktop is already running on a newer NVIDIA driver with this patched
xorg.

Regards,
Andreas

Am 11.11.22 um 09:38 schrieb Stephan Althaus:

Hello!

After a little bit of looking around, i think it could be relatated to
a bug that occured first with 495.

Solutions are

1) to disable the compositing-Manager withing mate

[org.mate.Marco.general]
compositing-manager=false

or

gsettings set org.mate.Marco.general compositing-manager false

2) a patch for xorg.server. The proposed patch to present_scmd.c could
be modified to match present.c in OI-userland...

--- a/present/present_scmd.c    2022-02-08 09:38:39.322128250 +0100
+++ b/present/present_scmd.c    2022-02-08 09:40:30.205857503 +0100
@@ -167,6 +167,9 @@
 {
 if (!screen_priv->info)
 return NULL;
+
+    if (!screen_priv->info->get_crtc)
+    return NULL;

 return (*screen_priv->info->get_crtc)(window);
 }
@@ -205,6 +208,9 @@

 if (!screen_priv->info)
 return;
+
+    if (!screen_priv->info->flush)
+    return;

 (*screen_priv->info->flush) (window);
 }


i will check 1) when i have the time to reboot,
maybe 2) in the next days..


Stephan
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Hi!

I am glad i was able to help.

This was just a very tiny stone in the OI universe.

Thanks a lot for your immense contributions to OI, Andreas!

Stephan


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-11 Thread Andreas Wacknitz

Hi Stephan,

Thanks to your efforts and the provided patch I have been able to create
a fix for own xorg-server version:
https://github.com/OpenIndiana/oi-userland/pull/9858
as our server is still on 1.19.7 while the patch is for a newer 1.21.1
version an adaption was needed.

My desktop is already running on a newer NVIDIA driver with this patched
xorg.

Regards,
Andreas

Am 11.11.22 um 09:38 schrieb Stephan Althaus:

Hello!

After a little bit of looking around, i think it could be relatated to
a bug that occured first with 495.

Solutions are

1) to disable the compositing-Manager withing mate

[org.mate.Marco.general]
compositing-manager=false

or

gsettings set org.mate.Marco.general compositing-manager false

2) a patch for xorg.server. The proposed patch to present_scmd.c could
be modified to match present.c in OI-userland...

--- a/present/present_scmd.c    2022-02-08 09:38:39.322128250 +0100
+++ b/present/present_scmd.c    2022-02-08 09:40:30.205857503 +0100
@@ -167,6 +167,9 @@
 {
 if (!screen_priv->info)
 return NULL;
+
+    if (!screen_priv->info->get_crtc)
+    return NULL;

 return (*screen_priv->info->get_crtc)(window);
 }
@@ -205,6 +208,9 @@

 if (!screen_priv->info)
 return;
+
+    if (!screen_priv->info->flush)
+    return;

 (*screen_priv->info->flush) (window);
 }


i will check 1) when i have the time to reboot,
maybe 2) in the next days..


Stephan
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-11 Thread Stephan Althaus

On 11/11/22 09:38, Stephan Althaus wrote:

Hello!

After a little bit of looking around, i think it could be relatated to 
a bug that occured first with 495.


Solutions are

1) to disable the compositing-Manager withing mate

[org.mate.Marco.general]
compositing-manager=false

or

gsettings set org.mate.Marco.general compositing-manager false

2) a patch for xorg.server. The proposed patch to present_scmd.c could 
be modified to match present.c in OI-userland...


--- a/present/present_scmd.c    2022-02-08 09:38:39.322128250 +0100
+++ b/present/present_scmd.c    2022-02-08 09:40:30.205857503 +0100
@@ -167,6 +167,9 @@
 {
 if (!screen_priv->info)
 return NULL;
+
+    if (!screen_priv->info->get_crtc)
+    return NULL;

 return (*screen_priv->info->get_crtc)(window);
 }
@@ -205,6 +208,9 @@

 if (!screen_priv->info)
 return;
+
+    if (!screen_priv->info->flush)
+    return;

 (*screen_priv->info->flush) (window);
 }


i will check 1) when i have the time to reboot,
maybe 2) in the next days..


Stephan
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Hello!

I have a running mate session on nvidia 515

I did this:

Disable Composite setting in xorg.conf

Section "Extensions"
    Option "Composite" "Disable"
EndSection

Disable the compositing-Manager withing mate

[org.mate.Marco.general]
compositing-manager=false

gsettings set org.mate.Marco.general compositing-manager false

i started X manually, killed twm an startet mate-session..

On next reboot we will see if it works out-of-the-box with lightdm..


Stephan



___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-11 Thread Stephan Althaus

Hello!

After a little bit of looking around, i think it could be relatated to a 
bug that occured first with 495.


Solutions are

1) to disable the compositing-Manager withing mate

[org.mate.Marco.general]
compositing-manager=false

or

gsettings set org.mate.Marco.general compositing-manager false

2) a patch for xorg.server. The proposed patch to present_scmd.c could 
be modified to match present.c in OI-userland...


--- a/present/present_scmd.c2022-02-08 09:38:39.322128250 +0100
+++ b/present/present_scmd.c2022-02-08 09:40:30.205857503 +0100
@@ -167,6 +167,9 @@
 {
 if (!screen_priv->info)
 return NULL;
+
+if (!screen_priv->info->get_crtc)
+return NULL;
 
 return (*screen_priv->info->get_crtc)(window);

 }
@@ -205,6 +208,9 @@
 
 if (!screen_priv->info)

 return;
+
+if (!screen_priv->info->flush)
+return;
 
 (*screen_priv->info->flush) (window);

 }


i will check 1) when i have the time to reboot,
maybe 2) in the next days..


Stephan
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-10 Thread Andreas Wacknitz

Hi,

Your attachments have been discarded by the mailing list server.


Am 10.11.22 um 21:19 schrieb Stephan Althaus:

On 11/9/22 17:34, Stephan Althaus wrote:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK)
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my
M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module
glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX
module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX
module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the
module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support
PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the
NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X
screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30
18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run

so I'm not sure why they expect such file (module) to
exist. Maybe this
is a bug in their package?  Either they forgot to add the
module into
the package, or they mistakenly require it when they
shouldn't? Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not
"NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version
10.0

and the glxserver is a method within that or something
similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep

-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:

[55]    |    10124656| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:

[55]    |    10128960| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my
understanding from OP).



470 works. From the running machine with 470 i follow the GLX
module from Xorg.0.log like this:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30
18:38:53 UTC 2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-10 Thread Stephan Althaus

On 11/10/22 21:19, Stephan Althaus wrote:

On 11/9/22 17:34, Stephan Althaus wrote:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:
On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) 
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:
On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus 
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my 
M1200M,

but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module 
glxserver_nvidia

[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX 
module has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the 
module is

the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support 
PRIME Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the 
NVIDIA

graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X 
screen

[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 

so I'm not sure why they expect such file (module) to 
exist. Maybe this
is a bug in their package?  Either they forgot to add the 
module into
the package, or they mistakenly require it when they 
shouldn't? Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not 
"NVIDIA"


[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 
10.0


and the glxserver is a method within that or something 
similar..

...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10124656| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22 
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10128960| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22 
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my 
understanding from OP).



470 works. From the running machine with 470 i follow the GLX 
module from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-10 Thread Stephan Althaus

On 11/9/22 17:34, Stephan Althaus wrote:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:
On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) 
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:
On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus 
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my 
M1200M,

but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module 
glxserver_nvidia

[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX 
module has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the 
module is

the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support 
PRIME Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the 
NVIDIA

graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X 
screen

[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 

so I'm not sure why they expect such file (module) to exist. 
Maybe this
is a bug in their package?  Either they forgot to add the 
module into
the package, or they mistakenly require it when they 
shouldn't? Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not 
"NVIDIA"


[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10124656| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22 
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10128960| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22 
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my 
understanding from OP).



470 works. From the running machine with 470 i follow the GLX 
module from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 17:53, Andreas Wacknitz wrote:


Am 09.11.22 um 17:34 schrieb Stephan Althaus:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK)
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my
M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module
glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX
module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX
module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the
module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support
PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the
NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X
screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30
18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 



so I'm not sure why they expect such file (module) to exist.
Maybe this
is a bug in their package?  Either they forgot to add the
module into
the package, or they mistakenly require it when they
shouldn't? Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not
"NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 
10.0


and the glxserver is a method within that or something 
similar..

...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 



-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 



[55]    |    10124656| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 



[55]    |    10128960| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my
understanding from OP).



470 works. From the running machine with 470 i follow the GLX
module from Xorg.0.log like this:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30
18:38:53 UTC 2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 17:53, Andreas Wacknitz wrote:


Am 09.11.22 um 17:34 schrieb Stephan Althaus:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK)
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my
M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module
glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX
module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX
module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the
module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support
PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the
NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X
screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30
18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 



so I'm not sure why they expect such file (module) to exist.
Maybe this
is a bug in their package?  Either they forgot to add the
module into
the package, or they mistakenly require it when they
shouldn't? Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not
"NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 
10.0


and the glxserver is a method within that or something 
similar..

...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 



-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 



[55]    |    10124656| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 



[55]    |    10128960| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my
understanding from OP).



470 works. From the running machine with 470 i follow the GLX
module from Xorg.0.log like this:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30
18:38:53 UTC 2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Andreas Wacknitz


Am 09.11.22 um 17:34 schrieb Stephan Althaus:

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK)
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus
wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my
M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module
glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX
module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX
module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the
module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support
PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the
NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X
screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30
18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run

so I'm not sure why they expect such file (module) to exist.
Maybe this
is a bug in their package?  Either they forgot to add the
module into
the package, or they mistakenly require it when they
shouldn't? Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not
"NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep

-i glx

[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:

[55]    |    10124656| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:

[55]    |    10128960| 35|FUNC |GLOB |0 |12
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my
understanding from OP).



470 works. From the running machine with 470 i follow the GLX
module from Xorg.0.log like this:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30
18:38:53 UTC 2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just curious: Did you trigger a 'bootadm 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 13:40, Udo Grabowski (IMK) wrote:



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:
On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) 
wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my 
M1200M,

but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module 
glxserver_nvidia

[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX 
module has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA 
driver.
[   234.098] (II) NVIDIA: The X server does not support 
PRIME Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the 
NVIDIA

graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module 470.141.03 Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 

so I'm not sure why they expect such file (module) to exist. 
Maybe this
is a bug in their package?  Either they forgot to add the 
module into
the package, or they mistakenly require it when they 
shouldn't? Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not 
"NVIDIA"


[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx

[6] |    14550384| 24|OBJT |GLOB |0    |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10124656| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[60]    |    14546160| 24|OBJT |GLOB |0 |22 
|glxModuleData
[7] |    14546032| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10128960| 35|FUNC |GLOB |0 |12 
|__glXNvHandShake
[61]    |    14550512| 24|OBJT |GLOB |0 |22 
|glxModuleData
[6] |    14550384| 24|OBJT |GLOB |0 |22 
|glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my 
understanding from OP).



470 works. From the running machine with 470 i follow the GLX 
module from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just curious: Did you trigger a 'bootadm 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 13:04, Stephan Althaus wrote:

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my 
M1200M,

but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module 
has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME 
Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03 Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution

https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist. 
Maybe this
is a bug in their package?  Either they forgot to add the 
module into
the package, or they mistakenly require it when they shouldn't? 
Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not 
"NVIDIA"


[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx

[6] |    14550384|  24|OBJT |GLOB 
|0    |22

|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10124656|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[60]    |    14546160|  24|OBJT |GLOB |0 
|22 |glxModuleData
[7] |    14546032|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10128960|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[61]    |    14550512|  24|OBJT |GLOB |0 
|22 |glxModuleData
[6] |    14550384|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my 
understanding from OP).



470 works. From the running machine with 470 i follow the GLX 
module from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 13:02, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my 
M1200M,

but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module 
has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME 
Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03 Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run 

so I'm not sure why they expect such file (module) to exist. 
Maybe this
is a bug in their package?  Either they forgot to add the 
module into
the package, or they mistakenly require it when they shouldn't? 
Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not 
"NVIDIA"


[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 


-i glx

[6] |    14550384|  24|OBJT |GLOB 
|0    |22

|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10124656|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[60]    |    14546160|  24|OBJT |GLOB |0 
|22 |glxModuleData
[7] |    14546032|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1: 

[55]    |    10128960|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[61]    |    14550512|  24|OBJT |GLOB |0 
|22 |glxModuleData
[6] |    14550384|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my 
understanding from OP).



470 works. From the running machine with 470 i follow the GLX 
module from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just curious: Did you 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 12:22, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX 
module; please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module 
has been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME 
Render

Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution

https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist. 
Maybe this
is a bug in their package?  Either they forgot to add the module 
into
the package, or they mistakenly require it when they shouldn't? 
Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx

[6] |    14550384|  24|OBJT |GLOB |0
|22

|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10124656|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[60]    |    14546160|  24|OBJT |GLOB |0 
|22 |glxModuleData
[7] |    14546032|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10128960|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[61]    |    14550512|  24|OBJT |GLOB |0 
|22 |glxModuleData
[6] |    14550384|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my understanding 
from OP).



470 works. From the running machine with 470 i follow the GLX module 
from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 
UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just curious: Did you trigger a 'bootadm update-archive' by 'init 6'
or just 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 12:14, Udo Grabowski (IMK) wrote:



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; 
please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has 
been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution

https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  
Maybe this

is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  
Maybe

you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx

[6] |    14550384|  24|OBJT |GLOB |0    |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10124656|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[60]    |    14546160|  24|OBJT |GLOB |0 
|22 |glxModuleData
[7] |    14546032|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10128960|  35|FUNC |GLOB |0 
|12 |__glXNvHandShake
[61]    |    14550512|  24|OBJT |GLOB |0 
|22 |glxModuleData
[6] |    14550384|  24|OBJT |GLOB |0 
|22 |glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my understanding 
from OP).



470 works. From the running machine with 470 i follow the GLX module 
from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 
UTC 2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.
,,,


Which shows the correct vendor, while the non-working says Xorg.
Just curious: Did you trigger a 'bootadm update-archive' by 'init 6'
or just 'reboot' ?


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 12:08, Stephan Althaus wrote:

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; 
please

check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has 
been

loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 
18:38:53 UTC

2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?
There is no '*glxserver_nvidia*' file in the Solaris driver 
distribution

https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe 
this

is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx

[6] |    14550384|  24|OBJT |GLOB |0    |22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10124656|  35|FUNC |GLOB |0
|12 |__glXNvHandShake
[60]    |    14546160|  24|OBJT |GLOB |0
|22 |glxModuleData
[7] |    14546032|  24|OBJT |GLOB |0
|22 |glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep -i glx

nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]    |    10128960|  35|FUNC |GLOB |0
|12 |__glXNvHandShake
[61]    |    14550512|  24|OBJT |GLOB |0
|22 |glxModuleData
[6] |    14550384|  24|OBJT |GLOB |0
|22 |glxserver_nvidiaModuleData

$

and 470.141.03 seems to work okay (at least this is my understanding 
from OP).



470 works. From the running machine with 470 i follow the GLX module 
from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC 
2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

$ ls -l /usr/lib/xorg/modules/extensions/amd64/libglx.so
lrwxrwxrwx   1 root root  55 Apr  9  2018 
/usr/lib/xorg/modules/extensions/amd64/libglx.so -> 
../../../../../../var/run/opengl/server/amd64/libglx.so


$ ls -l 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 11:32, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:


On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module
"glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is
the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter
problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading
/usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe this
is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...

# nm -D
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
-i glx

[6] |14550384|  24|OBJT |GLOB |0|22
|glxserver_nvidiaModuleData

That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
 -i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]|10124656|  35|FUNC |GLOB |0|12 
|__glXNvHandShake
[60]|14546160|  24|OBJT |GLOB |0|22 
|glxModuleData
[7] |14546032|  24|OBJT |GLOB |0|22 
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
 -i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]|10128960|  35|FUNC |GLOB |0|12 
|__glXNvHandShake
[61]|14550512|  24|OBJT |GLOB |0|22 
|glxModuleData
[6] |14550384|  24|OBJT |GLOB |0|22 
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my understanding from OP).


470 works. From the running machine with 470 i follow the GLX module 
from Xorg.0.log like this:


$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC 
2022

[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

$ ls -l /usr/lib/xorg/modules/extensions/amd64/libglx.so
lrwxrwxrwx   1 root root  55 Apr  9  2018 
/usr/lib/xorg/modules/extensions/amd64/libglx.so -> 
../../../../../../var/run/opengl/server/amd64/libglx.so


$ ls -l /var/run/opengl/server/amd64/libglx.so
lrwxrwxrwx   1 root root 

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Marcel Telka
On Wed, Nov 09, 2022 at 11:22:01AM +0100, Udo Grabowski (IMK) wrote:
> 
> 
> On 09/11/2022 10:21, Stephan Althaus wrote:
> > On 11/9/22 10:15, Marcel Telka wrote:
> > > On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:
> > > > Hello!
> > > > 
> > > > Yesterday i tried to use nvidia driver version 515 with my M1200M,
> > > > but got an error in the Xorg.0.log:
> > > > 
> > > > 
> > > > [   234.097] (II) Loading sub module "glxserver_nvidia"
> > > > [   234.097] (II) LoadModule: "glxserver_nvidia"
> > > > [   234.098] (WW) Warning, couldn't open module glxserver_nvidia
> > > > [   234.098] (II) UnloadModule: "glxserver_nvidia"
> > > > [   234.098] (II) Unloading glxserver_nvidia
> > > > [   234.098] (EE) NVIDIA: Failed to load module
> > > > "glxserver_nvidia" (module
> > > > does not exist, 0)
> > > > [   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
> > > > check in your X
> > > > [   234.098] (EE) NVIDIA(0): log file that the GLX module has been
> > > > loaded in your X
> > > > [   234.098] (EE) NVIDIA(0): server, and that the module is
> > > > the NVIDIA
> > > > GLX module.  If
> > > > [   234.098] (EE) NVIDIA(0): you continue to encounter
> > > > problems, Please
> > > > try
> > > > [   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
> > > > [   234.098] (II) NVIDIA: The X server does not support PRIME Render
> > > > Offload.
> > > > [   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA
> > > > graphics
> > > > device!
> > > > [   234.098] (EE) NVIDIA(0): Failing initialization of X screen
> > > > [   234.098] (II) UnloadModule: "nvidia"
> > > > 
> > > > i do not find glxserver_nvidia in the running version 470:
> > > > 
> > > > $ grep -i glx /var/log/Xorg.0.log
> > > > [    90.930] (II) LoadModule: "glx"
> > > > [    90.932] (II) Loading
> > > > /usr/lib/xorg/modules/extensions/amd64/libglx.so
> > > > [    90.986] (II) Module glx: vendor="NVIDIA Corporation"
> > > > [    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
> > > > 2022
> > > > [    93.742] (II) Initializing extension GLX
> > > > [    93.742] (II) Indirect GLX disabled.
> > > > 
> > > > Does anyone has a hint on how to solve this?
> > > There is no '*glxserver_nvidia*' file in the Solaris driver distribution
> > > https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
> > > so I'm not sure why they expect such file (module) to exist.  Maybe this
> > > is a bug in their package?  Either they forgot to add the module into
> > > the package, or they mistakenly require it when they shouldn't?  Maybe
> > > you could try to contact NVIDIA.
> > > 
> > > 
> > > Regards.
> > > 
> > Hello!
> > 
> > Looking a bit around i think its the GLX module that is not "NVIDIA"
> > 
> > [   234.053] (II) LoadModule: "glx"
> > [   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
> > [   234.071] (II) Module glx: vendor="X.Org Foundation"
> > [   234.071]     compiled for 1.19.7, module version = 1.0.0
> > [   234.071]     ABI class: X.Org Server Extension, version 10.0
> > 
> > and the glxserver is a method within that or something similar..
> > ...
> 
> # nm -D
> NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
> -i glx
> 
> [6] |14550384|  24|OBJT |GLOB |0|22
> |glxserver_nvidiaModuleData
> 
> That entrypoint is not present in , e.g., 295.40 . So probably a
> packaging error by NVIDIA.

I thought initially the same, but:

$ /usr/bin/nm -D 
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
 -i glx
nvidia-470/NVIDIA-Solaris-x86-470.141.03/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]|10124656|  35|FUNC |GLOB |0|12 
|__glXNvHandShake
[60]|14546160|  24|OBJT |GLOB |0|22 
|glxModuleData
[7] |14546032|  24|OBJT |GLOB |0|22 
|glxserver_nvidiaModuleData
$ /usr/bin/nm -D 
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep
 -i glx
nvidia/NVIDIA-Solaris-x86-515.76/NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1:
[55]|10128960|  35|FUNC |GLOB |0|12 
|__glXNvHandShake
[61]|14550512|  24|OBJT |GLOB |0|22 
|glxModuleData
[6] |14550384|  24|OBJT |GLOB |0|22 
|glxserver_nvidiaModuleData
$

and 470.141.03 seems to work okay (at least this is my understanding from OP).


-- 
+---+
| Marcel Telka   e-mail:   mar...@telka.sk  |
|homepage: http://telka.sk/ |
+---+

___
openindiana-discuss mailing list

Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" 
(module

does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is the 
NVIDIA

GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter problems, 
Please

try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA 
graphics

device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe this
is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..
...


# nm -D 
NVDAgraphics/reloc/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1|fgrep 
-i glx


[6] |14550384|  24|OBJT |GLOB |0|22 
   |glxserver_nvidiaModuleData


That entrypoint is not present in , e.g., 295.40 . So probably a
packaging error by NVIDIA.
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Marcel Telka
On Wed, Nov 09, 2022 at 10:36:52AM +0100, Marcel Telka wrote:
> On Wed, Nov 09, 2022 at 10:21:16AM +0100, Stephan Althaus wrote:
> > On 11/9/22 10:15, Marcel Telka wrote:
> > > On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:
> > > > Yesterday i tried to use nvidia driver version 515 with my M1200M,
> > > > but got an error in the Xorg.0.log:
> > > > 
> > > > 
> > > > [   234.097] (II) Loading sub module "glxserver_nvidia"
> > > > [   234.097] (II) LoadModule: "glxserver_nvidia"
> > > > [   234.098] (WW) Warning, couldn't open module glxserver_nvidia
> > > > [   234.098] (II) UnloadModule: "glxserver_nvidia"
> > > > [   234.098] (II) Unloading glxserver_nvidia
> > > > [   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" 
> > > > (module
> > > > does not exist, 0)
> > > > [   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
> > > > check in your X
> > > > [   234.098] (EE) NVIDIA(0): log file that the GLX module has been
> > > > loaded in your X
> > > > [   234.098] (EE) NVIDIA(0): server, and that the module is the 
> > > > NVIDIA
> > > > GLX module.  If
> > > > [   234.098] (EE) NVIDIA(0): you continue to encounter problems, 
> > > > Please
> > > > try
> > > > [   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
> > > > [   234.098] (II) NVIDIA: The X server does not support PRIME Render
> > > > Offload.
> > > > [   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA 
> > > > graphics
> > > > device!
> > > > [   234.098] (EE) NVIDIA(0): Failing initialization of X screen
> > > > [   234.098] (II) UnloadModule: "nvidia"
> > > > 
> > > > i do not find glxserver_nvidia in the running version 470:
> > > > 
> > > > $ grep -i glx /var/log/Xorg.0.log
> > > > [    90.930] (II) LoadModule: "glx"
> > > > [    90.932] (II) Loading 
> > > > /usr/lib/xorg/modules/extensions/amd64/libglx.so
> > > > [    90.986] (II) Module glx: vendor="NVIDIA Corporation"
> > > > [    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
> > > > 2022
> > > > [    93.742] (II) Initializing extension GLX
> > > > [    93.742] (II) Indirect GLX disabled.
> > > > 
> > > > Does anyone has a hint on how to solve this?
> > > There is no '*glxserver_nvidia*' file in the Solaris driver distribution
> > > https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
> > > so I'm not sure why they expect such file (module) to exist.  Maybe this
> > > is a bug in their package?  Either they forgot to add the module into
> > > the package, or they mistakenly require it when they shouldn't?  Maybe
> > > you could try to contact NVIDIA.
> > Looking a bit around i think its the GLX module that is not "NVIDIA"
> > 
> > [   234.053] (II) LoadModule: "glx"
> > [   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
> > [   234.071] (II) Module glx: vendor="X.Org Foundation"
> > [   234.071]     compiled for 1.19.7, module version = 1.0.0
> > [   234.071]     ABI class: X.Org Server Extension, version 10.0
> 
> Is the log with nvidia-470 (470.141.3) or nvidia (515.76)?
> 
> If it is with nvidia-470, and if for nvidia 515.76 the
> /usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so is loaded
> instead, then that would explain why they need glxserver_nvidia.
> 
> > and the glxserver is a method within that or something similar..
> > 
> > How to configure Xorg to use a different path for the GLX module is the next
> > question to solve..
> 
> As a quick test you could try to remove
> /usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so and see what
> happens.  If it solves the problem we could remove it from package.

Ah, Udo is right.  Please ignore what I said above.  Almost all
libglx.so are just symlinks, not real files.

-- 
+---+
| Marcel Telka   e-mail:   mar...@telka.sk  |
|homepage: http://telka.sk/ |
+---+

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Marcel Telka
On Wed, Nov 09, 2022 at 10:21:16AM +0100, Stephan Althaus wrote:
> On 11/9/22 10:15, Marcel Telka wrote:
> > On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:
> > > Yesterday i tried to use nvidia driver version 515 with my M1200M,
> > > but got an error in the Xorg.0.log:
> > > 
> > > 
> > > [   234.097] (II) Loading sub module "glxserver_nvidia"
> > > [   234.097] (II) LoadModule: "glxserver_nvidia"
> > > [   234.098] (WW) Warning, couldn't open module glxserver_nvidia
> > > [   234.098] (II) UnloadModule: "glxserver_nvidia"
> > > [   234.098] (II) Unloading glxserver_nvidia
> > > [   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module
> > > does not exist, 0)
> > > [   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
> > > check in your X
> > > [   234.098] (EE) NVIDIA(0): log file that the GLX module has been
> > > loaded in your X
> > > [   234.098] (EE) NVIDIA(0): server, and that the module is the NVIDIA
> > > GLX module.  If
> > > [   234.098] (EE) NVIDIA(0): you continue to encounter problems, 
> > > Please
> > > try
> > > [   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
> > > [   234.098] (II) NVIDIA: The X server does not support PRIME Render
> > > Offload.
> > > [   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics
> > > device!
> > > [   234.098] (EE) NVIDIA(0): Failing initialization of X screen
> > > [   234.098] (II) UnloadModule: "nvidia"
> > > 
> > > i do not find glxserver_nvidia in the running version 470:
> > > 
> > > $ grep -i glx /var/log/Xorg.0.log
> > > [    90.930] (II) LoadModule: "glx"
> > > [    90.932] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
> > > [    90.986] (II) Module glx: vendor="NVIDIA Corporation"
> > > [    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
> > > 2022
> > > [    93.742] (II) Initializing extension GLX
> > > [    93.742] (II) Indirect GLX disabled.
> > > 
> > > Does anyone has a hint on how to solve this?
> > There is no '*glxserver_nvidia*' file in the Solaris driver distribution
> > https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
> > so I'm not sure why they expect such file (module) to exist.  Maybe this
> > is a bug in their package?  Either they forgot to add the module into
> > the package, or they mistakenly require it when they shouldn't?  Maybe
> > you could try to contact NVIDIA.
> Looking a bit around i think its the GLX module that is not "NVIDIA"
> 
> [   234.053] (II) LoadModule: "glx"
> [   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
> [   234.071] (II) Module glx: vendor="X.Org Foundation"
> [   234.071]     compiled for 1.19.7, module version = 1.0.0
> [   234.071]     ABI class: X.Org Server Extension, version 10.0

Is the log with nvidia-470 (470.141.3) or nvidia (515.76)?

If it is with nvidia-470, and if for nvidia 515.76 the
/usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so is loaded
instead, then that would explain why they need glxserver_nvidia.

> and the glxserver is a method within that or something similar..
> 
> How to configure Xorg to use a different path for the GLX module is the next
> question to solve..

As a quick test you could try to remove
/usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so and see what
happens.  If it solves the problem we could remove it from package.


HTH.

-- 
+---+
| Marcel Telka   e-mail:   mar...@telka.sk  |
|homepage: http://telka.sk/ |
+---+

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Udo Grabowski (IMK)



On 09/11/2022 10:21, Stephan Althaus wrote:

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" 
(module

does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is the 
NVIDIA

GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter problems, 
Please

try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA 
graphics

device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading 
/usr/lib/xorg/modules/extensions/amd64/libglx.so

[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe this
is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..

How to configure Xorg to use a different path for the GLX module is the 
next question to solve..


libglx.so should originate from NVIDIA.This should be the
link hierarchy:
-r-xr-xr-x   1 root bin 520K Sep 22 17:36 
/usr/lib/mesa/modules/extensions/amd64/libglx.so*
lrwxrwxrwx   1 root root  55 Sep 22 16:14 
/usr/lib/xorg/modules/extensions/amd64/libglx.so -> 
../../../../../../var/run/opengl/server/amd64/libglx.so*
lrwxrwxrwx   1 root root  46 Sep 22 16:14 
/usr/lib/xorg/modules/extensions/libglx.so -> 
../../../../../var/run/opengl/server/libglx.so*
lrwxrwxrwx   1 root root  48 Nov  9 10:08 
/var/run/opengl/server/libglx.so -> 
/usr/X11/lib/modules/extensions/NVIDIA/libglx.so*
lrwxrwxrwx   1 root root  48 Nov  9 10:08 
/var/run/opengl/server/amd64/libglx.so -> 
/usr/X11/lib/modules/extensions/NVIDIA/libglx.so*
lrwxrwxrwx   1 root root  11 Sep 22 16:14 
/usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so -> libglx.so.1*
-r-xr-xr-x   1 root bin14.3M Sep 22 17:36 
/usr/X11/lib/modules/extensions/NVIDIA/amd64/libglx.so.1*
lrwxrwxrwx   1 root root  11 Sep 22 16:14 
/usr/X11/lib/modules/extensions/NVIDIA/libglx.so -> libglx.so.1*
-r-xr-xr-x   1 root bin9.23M Sep 22 17:36 
/usr/X11/lib/modules/extensions/NVIDIA/libglx.so.1*


And this service should be online (that builds that hierarchy):
# svcs -a|grep opengl
online 10:08:32 svc:/application/opengl/ogl-select:default

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Stephan Althaus

On 11/9/22 10:15, Marcel Telka wrote:

On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:

Hello!

Yesterday i tried to use nvidia driver version 515 with my M1200M,
but got an error in the Xorg.0.log:


[   234.097] (II) Loading sub module "glxserver_nvidia"
[   234.097] (II) LoadModule: "glxserver_nvidia"
[   234.098] (WW) Warning, couldn't open module glxserver_nvidia
[   234.098] (II) UnloadModule: "glxserver_nvidia"
[   234.098] (II) Unloading glxserver_nvidia
[   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module
does not exist, 0)
[   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
check in your X
[   234.098] (EE) NVIDIA(0): log file that the GLX module has been
loaded in your X
[   234.098] (EE) NVIDIA(0): server, and that the module is the NVIDIA
GLX module.  If
[   234.098] (EE) NVIDIA(0): you continue to encounter problems, Please
try
[   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[   234.098] (II) NVIDIA: The X server does not support PRIME Render
Offload.
[   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics
device!
[   234.098] (EE) NVIDIA(0): Failing initialization of X screen
[   234.098] (II) UnloadModule: "nvidia"

i do not find glxserver_nvidia in the running version 470:

$ grep -i glx /var/log/Xorg.0.log
[    90.930] (II) LoadModule: "glx"
[    90.932] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[    90.986] (II) Module glx: vendor="NVIDIA Corporation"
[    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
2022
[    93.742] (II) Initializing extension GLX
[    93.742] (II) Indirect GLX disabled.

Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe this
is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.


Hello!

Looking a bit around i think its the GLX module that is not "NVIDIA"

[   234.053] (II) LoadModule: "glx"
[   234.055] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   234.071] (II) Module glx: vendor="X.Org Foundation"
[   234.071]     compiled for 1.19.7, module version = 1.0.0
[   234.071]     ABI class: X.Org Server Extension, version 10.0

and the glxserver is a method within that or something similar..

How to configure Xorg to use a different path for the GLX module is the 
next question to solve..


Stephan


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Nvidia 515 problem

2022-11-09 Thread Marcel Telka
On Wed, Nov 09, 2022 at 08:44:58AM +0100, Stephan Althaus wrote:
> Hello!
> 
> Yesterday i tried to use nvidia driver version 515 with my M1200M,
> but got an error in the Xorg.0.log:
> 
> 
> [   234.097] (II) Loading sub module "glxserver_nvidia"
> [   234.097] (II) LoadModule: "glxserver_nvidia"
> [   234.098] (WW) Warning, couldn't open module glxserver_nvidia
> [   234.098] (II) UnloadModule: "glxserver_nvidia"
> [   234.098] (II) Unloading glxserver_nvidia
> [   234.098] (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module
> does not exist, 0)
> [   234.098] (EE) NVIDIA(0): Failed to initialize the GLX module; please
> check in your X
> [   234.098] (EE) NVIDIA(0): log file that the GLX module has been
> loaded in your X
> [   234.098] (EE) NVIDIA(0): server, and that the module is the NVIDIA
> GLX module.  If
> [   234.098] (EE) NVIDIA(0): you continue to encounter problems, Please
> try
> [   234.098] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
> [   234.098] (II) NVIDIA: The X server does not support PRIME Render
> Offload.
> [   234.098] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics
> device!
> [   234.098] (EE) NVIDIA(0): Failing initialization of X screen
> [   234.098] (II) UnloadModule: "nvidia"
> 
> i do not find glxserver_nvidia in the running version 470:
> 
> $ grep -i glx /var/log/Xorg.0.log
> [    90.930] (II) LoadModule: "glx"
> [    90.932] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
> [    90.986] (II) Module glx: vendor="NVIDIA Corporation"
> [    90.986] (II) NVIDIA GLX Module  470.141.03  Thu Jun 30 18:38:53 UTC
> 2022
> [    93.742] (II) Initializing extension GLX
> [    93.742] (II) Indirect GLX disabled.
> 
> Does anyone has a hint on how to solve this?

There is no '*glxserver_nvidia*' file in the Solaris driver distribution
https://us.download.nvidia.com/solaris/515.76/NVIDIA-Solaris-x86-515.76.run
so I'm not sure why they expect such file (module) to exist.  Maybe this
is a bug in their package?  Either they forgot to add the module into
the package, or they mistakenly require it when they shouldn't?  Maybe
you could try to contact NVIDIA.


Regards.

-- 
+---+
| Marcel Telka   e-mail:   mar...@telka.sk  |
|homepage: http://telka.sk/ |
+---+

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss