strange pthread keys behavior

2007-01-07 Thread Daniel Molina Wegener
Hello, I'm coding with pthreads, but the behavior of pthread_key_delete is strange. When I use pthread_key_delete, and I do not wait for the automatic deallocation of thread specific data, I receive a strange warning: Thread 8053800 has exited with leftover thread-specific data after \ 4 dest

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

2007-01-07 Thread Attila Nagy
On 2007.01.07. 1:11, [EMAIL PROTECTED] wrote: It sounds as if the caller of ufs_rename() is confused. You could try setting a breakpoint on the printf(), or change it to a panic() to get a dump, and try to figure out who the caller is and what is going on. Yes this would be very good, especia

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

2007-01-07 Thread Benjamin Close
--- For those wishing to help debug the driver and get it working, I've posted a new version http://www.clearchain.com/~benjsc/download/20070107-wpi-freebsd.tar.gz To help debug: kldload wpi_ucode kldload if_wpi wlandebug -i wpi0 0xff (I've included a copy of the -cu

VMWARE-Player

2007-01-07 Thread Christoph P. Kukulies
Hi, does FreeBSD provide the ability to run VMWARE-Player for Linux and run VMs in it? -- Chris Christoph P. U. Kukulies kuku_at_kukulies.org ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsu

Re: VMWARE-Player

2007-01-07 Thread Bill Moran
"Christoph P. Kukulies" <[EMAIL PROTECTED]> wrote: > > Hi, > > does FreeBSD provide the ability to run VMWARE-Player for Linux and > run VMs in it? No. To the best of my knowledge it's not possible to run any VMWare product under FreeBSD. Qemu will run VMWare virtual machines under some conditi

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

2007-01-07 Thread Max Laier
xe > --- trap 0, rip = 0, rsp = 0xa0698d40, rbp = 0 --- This one looks like the same issue as if_iwi.c, 1.43: http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/iwi/if_iwi.c#rev1.43 i.e. just drop the driver lock when calling back into the (net80211) stack. There is some d

Re: strange pthread keys behavior

2007-01-07 Thread Daniel Eischen
On Sun, 7 Jan 2007, Daniel Molina Wegener wrote: Hello, I'm coding with pthreads, but the behavior of pthread_key_delete is strange. When I use pthread_key_delete, and I do not wait for the automatic deallocation of thread specific data, I receive a strange warning: Thread 8053800 has exited

Call for FreeBSD Status Reports

2007-01-07 Thread Max Laier
Hi, and a good 2007 to everyone! It's time to reminisce about last year, in particular about the last three month aka. forth quarter. This is the call for Status Reports covering this timeframe! Submission due has just been moved to January 14th. Submissions must be in the report xml format

Re: VMWARE-Player

2007-01-07 Thread Freddie Cash
On Sun, January 7, 2007 7:46 am, Bill Moran wrote: > "Christoph P. Kukulies" <[EMAIL PROTECTED]> wrote: >> does FreeBSD provide the ability to run VMWARE-Player for Linux and >> run VMs in it? > > No. To the best of my knowledge it's not possible to run any VMWare > product under FreeBSD. VMWare

Re: strange pthread keys behavior

2007-01-07 Thread Daniel Molina Wegener
On Sunday 07 January 2007 12:44, Daniel Eischen wrote: > [SNIP] > > > > ¿Is this a mistake in the code or a standard warning in > > FreeBSD pthreads? > > Yes, it looks like a buggy program... > > > The code bellow can be compiled with and do not use the > > pthread_key_delete routine: > > See t

kqueue NOTE_RENAME

2007-01-07 Thread Ivan Voras
I trying to use kqueue to monitor what happens to a directory tree, and one of the issues is how to handle NOTE_RENAME. In particular, while I can connect the event with the old filename (by storing (fd,filename) pairs), I don't know how to get the new name. Any ideas? signature.asc Description:

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

2007-01-07 Thread Joel Dahl
Mån 2007-01-08 klockan 00:05 +1030 skrev Benjamin Close: > Hi Folks, > I did the port as my searching led me to believe that progress on a > driver had stagnated. > Port 1: was done by Damien himself > (http://lists.freebsd.org/pipermail/freebsd-mobile/2006-July/008768.html) > Port 2: was an

LDAP integration

2007-01-07 Thread Vulpes Velox
I was just wondering. How many people here have given lots of though about integrating FreeBSD configuration with LDAP. I've just begun looking at it a lot more and was curious as to what other people think in this area. ___ freebsd-hackers@freebsd.org

dump reads more than restore writes?

2007-01-07 Thread David Gilbert
I've got a command line like the following: dump -0af - /dev/ad1s1g | restore -rf - ... and I'm watching gstat. ad1s1g is not mounted. The disk on which the restore is running is also quiet (nobody using the disk). And gstat says that ad1 is consistently reading 31 to 37 megabytes per second a

Re: dump reads more than restore writes?

2007-01-07 Thread Dan Nelson
In the last episode (Jan 07), David Gilbert said: > I've got a command line like the following: > > dump -0af - /dev/ad1s1g | restore -rf - > > ... and I'm watching gstat. ad1s1g is not mounted. The disk on which > the restore is running is also quiet (nobody using the disk). > > And gstat say

Re: dump reads more than restore writes?

2007-01-07 Thread perryh
> Is dump reading substantially more than restore is writing? Quite possibly, esp. if the source disk is nowhere near full and/or most of the files being handled are small. dump reads every inode on the disk, including those which are unallocated, and probably reads entire data blocks -- or even

Re: dump reads more than restore writes?

2007-01-07 Thread David Gilbert
> "Dan" == Dan Nelson <[EMAIL PROTECTED]> writes: Dan> If you have a lot of small files, dump may be rereading directory Dan> information. Dump has a cache option that can help, but make Dan> sure you also dump a snapshot (i.e. always use -L when using -C). Several people have suggested this

LDAP integration

2007-01-07 Thread Z.C.B.
I was just wondering. How many people here have given lots of though about integrating FreeBSD configuration with LDAP. I've just begun looking at it a lot more and was curious as to what other people think in this area. signature.asc Description: PGP signature

Re: LDAP integration

2007-01-07 Thread Doug Barton
Vulpes Velox wrote: > I was just wondering. How many people here have given lots of though > about integrating FreeBSD configuration with LDAP. I've just begun > looking at it a lot more and was curious as to what other people > think in this area. It would be more useful to have this discussion i