Re: Can vm_mmap()/vm_map_remove() be called with giant held? (linuxolator dvb patches)

2011-01-30 Thread Kostik Belousov
On Sun, Jan 30, 2011 at 12:54:48AM +0100, Juergen Lock wrote: On Sat, Jan 29, 2011 at 10:51:05PM +0200, Kostik Belousov wrote: On Sat, Jan 29, 2011 at 09:10:00PM +0100, Juergen Lock wrote: Hi! I was kinda hoping to be able to post a correct patch in public but getting an answer to

Re: NVIDIA (port) driver fails to create /dev/nvidactl; 8.2Prerelease

2011-01-30 Thread Michael Remski
Duane: As a datapoint, I installed the ports/x11/nvidia-driver on a system running 8.2 Pre Release from a /usr/src that picked up things from yesterday. FreeBSD payne.remski.net 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #3: Sat Jan 29 05:26:40 EST 2011

Re: KERN - mfi driver for Dell raid h200 on r210 servers

2011-01-30 Thread Damien Fleuriot
On 29 January 2011 23:24, Bjoern A. Zeeb bzeeb-li...@lists.zabbadoz.net wrote: On Sat, 29 Jan 2011, Damien Fleuriot wrote: Hello lists, I'm trying to get FreeBSD 8.0 or 8.1 to run on a Dell poweredge r210 server. It ships with a SATA/SAS h200 RAID controller. Sadly, the MFI driver

Re: KERN - mfi driver for Dell raid h200 on r210 servers

2011-01-30 Thread Ollivier Robert
I've backported the mps driver to 8.2 (I used cp -r :)) and I have generated an img suited to the dedibox (that's what you are targeting, right? :)) I tried to test it in vmware but I have a password issue right now. It is also a ZFSv28 image. Le 30 janv. 2011 à 01:56, Damien Fleuriot

Re: KERN - mfi driver for Dell raid h200 on r210 servers

2011-01-30 Thread Damien Fleuriot
Indeed that is, the bsd install is aimed at a r210 EG server :) Is there any place one can get your image ? --- Fleuriot Damien On 30 Jan 2011, at 13:10, Ollivier Robert robe...@keltia.net wrote: I've backported the mps driver to 8.2 (I used cp -r :)) and I have generated an img suited to

Re: KERN - mfi driver for Dell raid h200 on r210 servers

2011-01-30 Thread Bjoern A. Zeeb
On Sun, 30 Jan 2011, Damien Fleuriot wrote: Ok I've loaded the newly patched mfi.ko and booted a MFS image. Here's the relevant snip from dmesg.run : at mfi0: Dell PERC H200 Integrated port 0xfc00-0xfcff mem 0xdf2b-0xdf2b,0xdf2c-0xdf2f irq 16 at device 0.0 on pci1 mfi0: Megaraid

Re: Can vm_mmap()/vm_map_remove() be called with giant held? (linuxolator dvb patches)

2011-01-30 Thread Juergen Lock
On Sun, Jan 30, 2011 at 12:33:20PM +0200, Kostik Belousov wrote: On Sun, Jan 30, 2011 at 12:54:48AM +0100, Juergen Lock wrote: On Sat, Jan 29, 2011 at 10:51:05PM +0200, Kostik Belousov wrote: On Sat, Jan 29, 2011 at 09:10:00PM +0100, Juergen Lock wrote: Hi! I was kinda hoping

Re: NVIDIA (port) driver fails to create /dev/nvidactl; 8.2Prerelease

2011-01-30 Thread Duane H. Hesser
On Sun, 30 Jan 2011 05:07:09 -0500 (EST) Michael Remski mrem...@comcast.net wrote: Duane: As a datapoint, I installed the ports/x11/nvidia-driver on a system running 8.2 Pre Release from a /usr/src that picked up things from yesterday. FreeBSD payne.remski.net 8.2-PRERELEASE FreeBSD

empty function macros

2011-01-30 Thread Alexander Best
hi there, i noticed freebsd has a few of the following macros: #define FUNC(sb) when you do something like if (cond) FUNC(i) the compiler complains about an if statement with an empty body. any sensible way of dealing with this issue? i saw some reiserfs code which does the following to

Re: NVIDIA (port) driver fails to create /dev/nvidactl; 8.2Prerelease

2011-01-30 Thread Doug Barton
On 01/29/2011 18:00, Duane H. Hesser wrote: I realize that questions such as 'have you kldloaded... are asked in a helpful spirit, and I don't expect you to be unduly impressed by my resume, but perhaps you will understand if I find such questions mildly insulting... No, I don't understand

Re: empty function macros

2011-01-30 Thread Gary Jennejohn
On Sun, 30 Jan 2011 17:29:41 + Alexander Best arun...@freebsd.org wrote: hi there, i noticed freebsd has a few of the following macros: #define FUNC(sb) when you do something like if (cond) FUNC(i) the compiler complains about an if statement with an empty body. any

Re: empty function macros

2011-01-30 Thread Alexander Best
On Sun Jan 30 11, Gary Jennejohn wrote: On Sun, 30 Jan 2011 17:29:41 + Alexander Best arun...@freebsd.org wrote: hi there, i noticed freebsd has a few of the following macros: #define FUNC(sb) when you do something like if (cond) FUNC(i) the compiler