Re: Interest in nvidia-driver debugging on 5-*

2003-06-13 Thread Daniel Eischen
On 13 Jun 2003, Samy Al Bahra wrote: Hey, I believe the fix is as simple as saving and restoring %gs in the nVidia driver, and/or not letting the nVidia use %gs at all (segment registers generally belong to the OS, in any case, and stealing a CPU register of any kind for exclusive use

Re: Interest in nvidia-driver debugging on 5-*

2003-06-13 Thread Terry Lambert
Samy Al Bahra wrote: I think Terry is jumping to conclusions on what Evan's problem could be. I have this seen this cause application to crash at exit (if using OpenGL) but never a crash in kernel-space from the nVidia drivers. 1) It works with libc_r, but not with libthr and not

Re: Interest in nvidia-driver debugging on 5-*

2003-06-13 Thread Samy Al Bahra
Daniel Eischen Wrote: No, I don't think Terry is jumping to conclusion. Read the archives of this problem. The Nvidia drivers and OpenGL for FreeBSD won't work with -current and any threading library other than libc_r. I didn't deal with any users having kernel crashes from this %gs

Re: Interest in nvidia-driver debugging on 5-*

2003-06-13 Thread Terry Lambert
Samy Al Bahra wrote: Daniel Eischen Wrote: No, I don't think Terry is jumping to conclusion. Read the archives of this problem. The Nvidia drivers and OpenGL for FreeBSD won't work with -current and any threading library other than libc_r. I didn't deal with any users having kernel

Re: Interest in nvidia-driver debugging on 5-*

2003-06-13 Thread Bruno Afonso
hello, Any chance someone can support nforce2's chipset agp? Not all of us own nvidia graphics cards :-( I don't know how hard it is to get this working on freebsd. here's some code:

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Munish Chopra
On 2003-06-12 11:51 +, Evan Dower wrote: I am highly interested in getting nvidia-driver to work well for FBSD, and in particular my own computer. I do not have the expertise to hack on either it or the kernel (yet), but I am eager to provide debugging information. nvidia-driver

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Evan Dower
I was afraid that might be the case :-( From: Munish Chopra [EMAIL PROTECTED] On 2003-06-12 11:51 +, Evan Dower wrote: I am highly interested in getting nvidia-driver to work well for FBSD, and in particular my own computer. I do not have the expertise to hack on either it or the kernel

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Terry Lambert
Evan Dower wrote: I am highly interested in getting nvidia-driver to work well for FBSD, and in particular my own computer. I do not have the expertise to hack on either it or the kernel (yet), but I am eager to provide debugging information. nvidia-driver frequently crashes my machine, so I

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Terry Lambert
Evan Dower wrote: NVIDIA is handling everything to do with the driver. Expect a new release shortly *cough*. I was afraid that might be the case :-( The only thing you care about is entry and exit through driver entry points... and maybe interrupts. It would be easy enough to wrapper all

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Samy Al Bahra
Hey, I believe the fix is as simple as saving and restoring %gs in the nVidia driver, and/or not letting the nVidia use %gs at all (segment registers generally belong to the OS, in any case, and stealing a CPU register of any kind for exclusive use of a driver is a pig trick). Please take a

Re: Interest in nvidia-driver debugging on 5-*

2003-06-12 Thread Jeremy Messenger
On 13 Jun 2003 05:11:34 +, Samy Al Bahra [EMAIL PROTECTED] wrote: Hey, I believe the fix is as simple as saving and restoring %gs in the nVidia driver, and/or not letting the nVidia use %gs at all (segment registers generally belong to the OS, in any case, and stealing a CPU register of any