Re: iSCSI disconnects dilema

2007-01-14 Thread Danny Braniss
... So you had a scenario where a program was doing I/O right up to system (initiator) shutdown, and some of those I/O's got lost in the process? I guess I don't understand why the OS didn't flush all outstanding I/O buffers after terminating the program and before finishing the shutdown.

6.2-PRERELEASE kernel panic

2007-01-14 Thread Pietro Cerutti
Hello, just some information for the brave to work on: cat info.0 Dump header from device /dev/ad0s1b 2 Architecture: i386 3 Architecture Version: 2 4 Dump Length: 2138505216B (2039 MB) 5 Blocksize: 512 6 Dumptime: Sun Jan 14 12:59:53 2007 7 Hostname: gahrtop.localhost 8

Re: ufs_rename: fvp == tvp (can't happen), but it did

2007-01-14 Thread Attila Nagy
On 2007.01.12. 20:06, Pawel Jakub Dawidek wrote: Silent data corruptions happens, look for example at the problem with 4T volume under FreeBSD thread on [EMAIL PROTECTED] I'd suggest configuring geli with data authentication on top of the FC array. geli will detect silent data corruptions.

Re: ufs_rename: fvp == tvp (can't happen), but it did

2007-01-14 Thread Pawel Jakub Dawidek
On Sun, Jan 14, 2007 at 07:18:04PM +0100, Attila Nagy wrote: On 2007.01.12. 20:06, Pawel Jakub Dawidek wrote: Silent data corruptions happens, look for example at the problem with 4T volume under FreeBSD thread on [EMAIL PROTECTED] I'd suggest configuring geli with data authentication on top

Re: iSCSI disconnects dilema

2007-01-14 Thread Scott Long
Wilko Bulte wrote: On Fri, Jan 12, 2007 at 09:31:04PM +0200, Danny Braniss wrote.. --s/l3CgOIzMHHjg/5 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jan 09, 2007 at 09:06:46AM +0200, Danny Braniss wrote: Hi,

Re: iSCSI disconnects dilema

2007-01-14 Thread Scott Long
Danny Braniss wrote: I forget, does iSCSI have a concept of a flush_cache command, or the equivalent of what parallel SCSI does with ordered tags? not realy - or I can't find it. iSCSI is mainly and envelope for scsi commands, so whatever the CAM does, it will pass it on. There are some

semaphore.h does'nt include fcntl.h ?

2007-01-14 Thread girish r
Hello folks, I am trying to use sem_open(3) but gcc complains that O_CREAT and O_EXCL is undeclared. According to the man page only semaphore.h needs to be included. But including fcntl.h solves the problem. sem_t *lock = sem_open(example_lock, O_CREAT | O_EXCL, 0600, 1); Another thing, a

Re: How to clear strage route in routing table?

2007-01-14 Thread Patrick Dung
Thanks Nikos for reply I have figure out how to remove that route It was consider 192.168.3.0 as host instead of net [EMAIL PROTECTED] ~]# route add 192.168.3.0 255.255.255.0 192.168.3.1 add net 192.168.3.0: gateway 255.255.255.0 [EMAIL PROTECTED] ~]# route delete -net 192.168.3.0 route: writing

Re: semaphore.h does'nt include fcntl.h ?

2007-01-14 Thread Dan Nelson
In the last episode (Jan 14), girish r said: I am trying to use sem_open(3) but gcc complains that O_CREAT and O_EXCL is undeclared. According to the man page only semaphore.h needs to be included. But including fcntl.h solves the problem. Looks like a semaphore.h needs to define O_CREAT and

Re: Updated Driver for 3945ABG Intel 3945ABG Wireless LAN controller

2007-01-14 Thread Sam Fourman Jr.
Hello everyone, I have a Lenovo N 100 0768 DKU notebook with a 3945 wireless card installed I just installed the FreeBSD 6.2 Realese on it, What instructions do I have to follow to compile and install the Driver so I may test it for everyone? Thank you for any help at all Sam Fourman Jr, On

Re: semaphore.h does'nt include fcntl.h ?

2007-01-14 Thread Kip Macy
Do you have SysV IPC support in your kernel? -Kip On Sun, 14 Jan 2007, girish r wrote: Hello folks, I am trying to use sem_open(3) but gcc complains that O_CREAT and O_EXCL is undeclared. According to the man page only semaphore.h needs to be included. But