RE: 8.0-RC USB/FS problem

2009-11-24 Thread Guojun Jin
Freshly installed 8.0-RELEASE on two differnt machines, and USB stick work well so far, but the USB hard drive still has crash on this SMP (4-core AMD phenom 9600) during the dump/restore. I will try it on the single CPU machine tomorrow. Re-tested dump/restore with FreeBSD 6.3/6.4 on this SMP

Re: 8.0-RC USB/FS problem

2009-11-24 Thread Hans Petter Selasky
On Tuesday 24 November 2009 09:12:45 Guojun Jin wrote: http:/www.daemonfun.com/archives/pub/USB/crash1-reset.bz2 I'm not able to fetch this file. Could you extract the panic backtrace? --HPS ___ freebsd-stable@freebsd.org mailing list

gjournal + gmirror

2009-11-24 Thread Jordi Espasa Clofent
Hi all, I've configured a new disk with two journaled partitions (/var and /usr). All works fine until this point. Next I add a new disk and I set up a gmirror as I've done always without problems. But when I reboot the system, I always get a nasty 'mountroot' message. I've cheched the

pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mikolaj Golub
Hi, I have problems with compiling our application under 8.0. It fails due to these definitions in pthread.h that look like a typo or incorrectly applied patch: 170 #define pthread_cleanup_push(cleanup_routine, cleanup_arg) \ 171 {

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread pluknet
2009/11/24 Mikolaj Golub to.my.troc...@gmail.com: Hi, I have problems with compiling our application under 8.0. It fails due to these definitions in pthread.h that look like a typo or incorrectly applied patch:    170 #define         pthread_cleanup_push(cleanup_routine, cleanup_arg)    

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mikolaj Golub
On Tue, 24 Nov 2009 16:53:35 +0200 Mikolaj Golub wrote: Hi, I have problems with compiling our application under 8.0. It fails due to these definitions in pthread.h that look like a typo or incorrectly applied patch: 170 #define pthread_cleanup_push(cleanup_routine,

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Tom Evans
On Tue, Nov 24, 2009 at 3:18 PM, Mikolaj Golub to.my.troc...@gmail.comwrote: snip So, I don't know what these macros actually were supposed to be. They were introduced in r179662: Revision 1.43: download - view: text, markup, annotated - select for diffs Mon Jun 9 01:14:10 2008 UTC (17

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Kostik Belousov
On Tue, Nov 24, 2009 at 05:18:29PM +0200, Mikolaj Golub wrote: On Tue, 24 Nov 2009 16:53:35 +0200 Mikolaj Golub wrote: Hi, I have problems with compiling our application under 8.0. It fails due to these definitions in pthread.h that look like a typo or incorrectly applied patch:

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Hajimu UMEMOTO
Hi, On Tue, 24 Nov 2009 17:18:29 +0200 Mikolaj Golub to.my.troc...@gmail.com said: to.my.trociny I was hurry when said that the patch fixed the problem. The application to.my.trociny compiled but later it crashed in pthread_cleanup_pop: to.my.trociny (gdb) bt to.my.trociny #0 0xbf4f9ee0 in

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mikolaj Golub
On Tue, 24 Nov 2009 17:34:22 +0200 Kostik Belousov wrote: pthread_cleanup_push/pop are supposed to be used from the common lexical scope. Citation from SUSv4: These functions may be implemented as macros. The application shall ensure that they appear as statements, and in pairs within the

RE: 8.0-RC USB/FS problem

2009-11-24 Thread Guojun Jin
Sorry for the typo -- it is public not pub in the middle. The others should be all public. http:/www.daemonfun.com/archives/public/USB/crash1-reset.bz2 -Original Message- From: Hans Petter Selasky [mailto:hsela...@c2i.net] Sent: Tue 11/24/2009 12:33 AM To: Guojun Jin Cc:

Re: 8.0-RC USB/FS problem

2009-11-24 Thread Hans Petter Selasky
On Tuesday 24 November 2009 17:58:47 Guojun Jin wrote: Sorry for the typo -- it is public not pub in the middle. The others should be all public. http:/www.daemonfun.com/archives/public/USB/crash1-reset.bz2 %fetch http:/www.daemonfun.com/archives/public/USB/crash1-reset.bz2 fetch:

Panic possibly related to glabel/geom and siis(4)

2009-11-24 Thread Steve Polyack
I have a system running 8.0-PRERELEASE with multiple drives and SATA port multipliers (siis controllers and PMPs). All of the attached drives are labeled via glabel(8) and then included into a ZFS pool. During some testing to determine how the system would react to a dead drive (simulated by

Re: 8.0-RC USB/FS problem

2009-11-24 Thread Jeremy Chadwick
On Tue, Nov 24, 2009 at 06:13:21PM +0100, Hans Petter Selasky wrote: On Tuesday 24 November 2009 17:58:47 Guojun Jin wrote: Sorry for the typo -- it is public not pub in the middle. The others should be all public. http:/www.daemonfun.com/archives/public/USB/crash1-reset.bz2 %fetch

Re: 8.0-RC USB/FS problem

2009-11-24 Thread Dan Nelson
In the last episode (Nov 24), Jeremy Chadwick said: On Tue, Nov 24, 2009 at 06:13:21PM +0100, Hans Petter Selasky wrote: On Tuesday 24 November 2009 17:58:47 Guojun Jin wrote: Sorry for the typo -- it is public not pub in the middle. The others should be all public.

Re: 8.0-RC USB/FS problem

2009-11-24 Thread Jeremy Chadwick
On Tue, Nov 24, 2009 at 12:16:54PM -0600, Dan Nelson wrote: In the last episode (Nov 24), Jeremy Chadwick said: On Tue, Nov 24, 2009 at 06:13:21PM +0100, Hans Petter Selasky wrote: On Tuesday 24 November 2009 17:58:47 Guojun Jin wrote: Sorry for the typo -- it is public not pub in the

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mark Andrews
Report it using send-pr. That way the problem will make its way into the bug tracking system. In message 86aayc7z4g@zhuzha.ua1, Mikolaj Golub writes: Hi, I have problems with compiling our application under 8.0. It fails due to these definitions in pthread.h that look like a typo or

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Daniel Eischen
On Wed, 25 Nov 2009, Mark Andrews wrote: Report it using send-pr. That way the problem will make its way into the bug tracking system. In message 86aayc7z4g@zhuzha.ua1, Mikolaj Golub writes: Hi, I have problems with compiling our application under 8.0. It fails due to these

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mark Andrews
In message 20091124153422.gt2...@deviant.kiev.zoral.com.ua, Kostik Belousov write s: --i616tqyc3hrkKsk2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 24, 2009 at 05:18:29PM +0200, Mikolaj Golub wrote: On

Re: [geom] page fault in g_mbr_config()

2009-11-24 Thread pluknet
2009/7/24 pluknet pluk...@gmail.com: 2009/7/24 pluknet pluk...@gmail.com: Hi. I got a panic while performing a repetitive  'fdisk -BI aacd0', where aacd0 is a disk on aac0: IBM ServeRAID-8k. This means that the command was issued after filesystems were already created on aacd (after the

Re: FreeBSD 7.x hang-on-boot on Dell 1950

2009-11-24 Thread Zaphod Beeblebrox
On Sun, Nov 22, 2009 at 11:47 PM, Zaphod Beeblebrox zbee...@gmail.comwrote: On Sun, Nov 22, 2009 at 9:09 PM, Zaphod Beeblebrox zbee...@gmail.comwrote: On Fri, Nov 13, 2009 at 9:44 PM, Jeremy Chadwick free...@jdc.parodius.com wrote: This 1950 may predate that a bit, but I'm not sure

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Daniel Eischen
On Wed, 25 Nov 2009, Mark Andrews wrote: In message 20091124153422.gt2...@deviant.kiev.zoral.com.ua, Kostik Belousov write s: --i616tqyc3hrkKsk2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Nov 24, 2009 at

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread Mark Andrews
In message pine.gso.4.64.0911241718490.5...@sea.ntplx.net, Daniel Eischen wri tes: On Wed, 25 Nov 2009, Mark Andrews wrote: In message 20091124153422.gt2...@deviant.kiev.zoral.com.ua, Kostik Belous ov write s: --i616tqyc3hrkKsk2 Content-Type: text/plain; charset=us-ascii

RE: 8.0-RC USB/FS problem

2009-11-24 Thread Guojun Jin
Interesting now by some incident :-) The single CPU machine (Intel P4) with 8.0 works fine on the USB drives and the USB stick. So, installed 8.0 on another AMD Turion64 HP Pavilion dv5210us Laptop, it comes the same problem -- accessing the USB hard drive causes system panic and reboot: Took

sackcloth and ashes time

2009-11-24 Thread Don Wilde
Dear FreeBSD friends; I recently added my gmail contacts to Linked-In, Inviting only those who were already on Linked-In, and discovered -- thanks to Bruce Cran -- that it came to STABLE. Looking in Linked-In at his profile, Mr Rotaev's public e-mail address address is clearly noted as being

Re: pthread.h: typo in #define pthread_cleanup_push/pthread_cleanup_pop

2009-11-24 Thread David Xu
Daniel Eischen wrote: Hmm, agreed. But note that Solaris 10 does it this way: #definepthread_cleanup_push(routine, args) { \ _cleanup_t _cleanup_info; \ __pthread_cleanup_push((_Voidfp)(routine), (void *)(args), \ (caddr_t)_getfp(), _cleanup_info); #define