Re: Coming back to the btxld: No such file or directory installworld error

2010-06-28 Thread Garrett Cooper
On Sun, Jun 27, 2010 at 10:54 PM, Ruslan Ermilov r...@freebsd.org wrote: On Sun, Jun 27, 2010 at 01:14:59PM -0700, Garrett Cooper wrote: Hi Ruslan,     I've run into this particular error twice now in the past couple of weeks when building with -j24 on a memory disk and I was wondering if

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
M. Warner Losh i...@bsdimp.com writes: Why not fix pidfile_open to not return a file handle when the PID doesn't match? It doesn't. If it can't lock the file, or if fstat(2) fails after it has locked the file, it returns NULL. DES -- Dag-Erling Smørgrav - d...@des.no

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
M. Warner Losh i...@bsdimp.com writes: Maybe the real problem is that devd locks the file, then dies. The file remains locked, so the flopen is failing with EWOULDBLOCK. The lock is released when the process that holds it terminates. But I suspect the real real problem is the implicit

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
Dag-Erling Smørgrav d...@des.no writes: M. Warner Losh i...@bsdimp.com writes: Maybe the real problem is that devd locks the file, then dies. The file remains locked, so the flopen is failing with EWOULDBLOCK. The lock is released when the process that holds it terminates. But I suspect

Re: [CFT] SIFTR - Statistical Information For TCP Research: Uncle Lawrence needs YOU!

2010-06-28 Thread Lawrence Stewart
Hi again, After my most recent appeal for testers, I received some excellent feedback and thank everyone that has tried the patch. I've ironed out a couple of bugs and have what I hope is the import-ready candidate patch available for a final round of testing. Please read on if you are able

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
Dag-Erling Smørgrav d...@des.no writes: - Under flock semantics (flock(2) locks), the lock is released when *all* file descriptors the process holds for that file is closed. are, even, and sorry for the horrid quoting. DES -- Dag-Erling Smørgrav - d...@des.no

Re: [CFT] BSDL iconv in base system

2010-06-28 Thread Gabor Kovesdan
Em 2010.06.17. 23:21, Anonymous escreveu: Gabor Kovesdanga...@freebsd.org writes: [...] $ make installworld TARGET=i386 DESTDIR=/b/bbb ... === usr.bin/mkcsmapper (install) install -s -o root -g wheel -m 555 mkcsmapper /b/bbb/usr/bin strip:

Re: Coming back to the btxld: No such file or directory installworld

2010-06-28 Thread Gavin Atkinson
On Sun, 2010-06-27 at 13:14 -0700, Garrett Cooper wrote: Hi Ruslan, I've run into this particular error twice now in the past couple of weeks when building with -j24 on a memory disk and I was wondering if there was an missing dependency / race somewhere or something (perhaps make obj?):

Re: Coming back to the btxld: No such file or directory installworld error

2010-06-28 Thread Ruslan Ermilov
On Sun, Jun 27, 2010 at 11:27:41PM -0700, Garrett Cooper wrote: On Sun, Jun 27, 2010 at 10:54 PM, Ruslan Ermilov r...@freebsd.org wrote: On Sun, Jun 27, 2010 at 01:14:59PM -0700, Garrett Cooper wrote: Hi Ruslan,     I've run into this particular error twice now in the past couple of weeks

Re: panic with zfs v16 patch

2010-06-28 Thread Ivan Voras
On 06/28/10 03:59, Sam Fourman Jr. wrote: hello list, I just had a panic on a FreeBSD 9.0 built with yesterdays sources. uname -a FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Sat Jun 26 09:14:30 CDT 2010 sfourman@:/usr/obj/usr/src/sys/ZFSv16 amd64 GENERIC kernel with this patch

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Anton Shterenlikht
On Fri, Jun 25, 2010 at 11:47:59AM +0200, Dag-Erling Smørgrav wrote: Anton Shterenlikht me...@bristol.ac.uk writes: So, just for me to be clear, I need to proceed with the buildworld, until I get the error, and then, without cleaning anything, do % cd /usr/src % make buildenv % cd

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Dag-Erling Smørgrav
Anton Shterenlikht me...@bristol.ac.uk writes: # cc -v -static -o rescue [...] cc: cat.lo: No such file or directory Umm, try again from the object directory, /usr/obj/usr/src/rescue/rescue/ # /usr/obj/usr/src/rescue/rescue/../librescue/exec.o: Permission denied That's weird, can you check

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Anton Shterenlikht
On Mon, Jun 28, 2010 at 02:38:10PM +0200, Dag-Erling Smørgrav wrote: Anton Shterenlikht me...@bristol.ac.uk writes: # cc -v -static -o rescue [...] cc: cat.lo: No such file or directory Umm, try again from the object directory, /usr/obj/usr/src/rescue/rescue/ that's better: # cd

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Dag-Erling Smørgrav
Anton Shterenlikht me...@bristol.ac.uk writes: cc -v -static -o rescue rescue.o cat.lo chflags.lo chio.lo chmod.lo cp.lo date.lo dd.lo df.lo echo.lo ed.lo expr.lo getfacl.lo hostname.lo kenv.lo kill.lo ln.lo ls.lo mkdir.lo mv.lo pkill.lo ps.lo pwd.lo ealpath.lo rm.lo rmdir.lo setfacl.lo

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread M. Warner Losh
In message: 86mxuf7eli@ds4.des.no Dag-Erling Smørgrav d...@des.no writes: : M. Warner Losh i...@bsdimp.com writes: : Why not fix pidfile_open to not return a file handle when the PID : doesn't match? : : It doesn't. If it can't lock the file, or if fstat(2) fails after it : has

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread M. Warner Losh
In message: 86iq537egy@ds4.des.no Dag-Erling Smørgrav d...@des.no writes: : M. Warner Losh i...@bsdimp.com writes: : Maybe the real problem is that devd locks the file, then dies. The : file remains locked, so the flopen is failing with EWOULDBLOCK. : : The lock is released

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread M. Warner Losh
In message: aanlktiki223vbybdeqlua6fjcbbeqcqfujoimp5ho...@mail.gmail.com Garrett Cooper yanef...@gmail.com writes: : On Sun, Jun 27, 2010 at 3:08 PM, M. Warner Losh i...@bsdimp.com wrote: : In message: aanlktilnygnz7v6z6akeksquvomn8ylvo57gm1goi...@mail.gmail.com :            Garrett

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
M. Warner Losh i...@bsdimp.com writes: Dag-Erling Smørgrav d...@des.no writes: M. Warner Losh i...@bsdimp.com writes: Maybe the real problem is that devd locks the file, then dies. The file remains locked, so the flopen is failing with EWOULDBLOCK. The lock is released when the process

Re: panic with zfs v16 patch

2010-06-28 Thread Sam Fourman Jr.
Curious - this panic is UFS softdep-related - possibly from the SUJ work? On which file system type is your ports tree? ufs2 -- Sam Fourman Jr. Fourman Networks http://www.fourmannetworks.com ___ freebsd-current@freebsd.org mailing list

Re: panic with zfs v16 patch

2010-06-28 Thread Sam Fourman Jr.
On Mon, Jun 28, 2010 at 9:43 AM, Sam Fourman Jr. sfour...@gmail.com wrote: Curious - this panic is UFS softdep-related - possibly from the SUJ work? On which file system type is your ports tree? ufs2 it seems ivan may be correct, I went and tried to continue the subversion build I received

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Anton Shterenlikht
On Mon, Jun 28, 2010 at 03:58:35PM +0200, Dag-Erling Smørgrav wrote: Anton Shterenlikht me...@bristol.ac.uk writes: cc -v -static -o rescue rescue.o cat.lo chflags.lo chio.lo chmod.lo cp.lo date.lo dd.lo df.lo echo.lo ed.lo expr.lo getfacl.lo hostname.lo kenv.lo kill.lo ln.lo ls.lo

Re: panic with zfs v16 patch

2010-06-28 Thread Ivan Voras
On 06/28/10 17:20, Sam Fourman Jr. wrote: On Mon, Jun 28, 2010 at 9:43 AM, Sam Fourman Jr. sfour...@gmail.com wrote: Curious - this panic is UFS softdep-related - possibly from the SUJ work? On which file system type is your ports tree? ufs2 it seems ivan may be correct, I went and tried

Re: panic in deadlkres

2010-06-28 Thread John Baldwin
On Friday 25 June 2010 4:52:22 pm pluknet wrote: On 25 June 2010 13:50, Anton Yuzhaninov cit...@citrin.ru wrote: I've got panic on 9-current from Jun 25 2010 May be this is bug in deadlock resolver panic: blockable sleep lock (sleep mutex) process lock @

[sparc64] [panic] cheetah_ipi_selected: CPU can't IPI itself

2010-06-28 Thread Nathaniel W Filardo
Well, I'm back in the same town as my sparc64 and so csup'd, built, and rebooted, trying to get more information about the vm object not owned panic I reported a while ago. To my dismay, I now get this panic, also late enough in the boot process to be starting up jails: panic:

Re: r209240 ia64 - buildworld - undefined reference to `lzma_physmem'

2010-06-28 Thread Dag-Erling Smørgrav
Anton Shterenlikht me...@bristol.ac.uk writes: I think this only happens when I copy from one xterm to another, to paste into the mailer. I've checked the command which I put in a file, and all seems fine. Also, the latest error message suggests that the command is fine: OK, can you do it

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Garrett Cooper
2010/6/28 Dag-Erling Smørgrav d...@des.no: M. Warner Losh i...@bsdimp.com writes: Dag-Erling Smørgrav d...@des.no writes: M. Warner Losh i...@bsdimp.com writes: Maybe the real problem is that devd locks the file, then dies.  The file remains locked, so the flopen is failing with

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Garrett Cooper
On Sun, Jun 27, 2010 at 3:08 PM, M. Warner Losh i...@bsdimp.com wrote: In message: aanlktilnygnz7v6z6akeksquvomn8ylvo57gm1goi...@mail.gmail.com            Garrett Cooper yanef...@gmail.com writes: : On Sat, Jun 26, 2010 at 1:45 PM, Garrett Cooper yanef...@gmail.com wrote: : On Sat, Jun 26,

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread M. Warner Losh
In message: aanlktimpbazy2gu8fsly6wqdyzvg7c0id-vzeh3a3...@mail.gmail.com Garrett Cooper yanef...@gmail.com writes: : This patch is wrong.  The problems with it: : : (1) You don't need to unlink the pipe.  If you can't unlink it, then :    you won't remove the pid file. : : The

Re: panic in deadlkres

2010-06-28 Thread Attilio Rao
2010/6/28 John Baldwin j...@freebsd.org: On Friday 25 June 2010 4:52:22 pm pluknet wrote: On 25 June 2010 13:50, Anton Yuzhaninov cit...@citrin.ru wrote: I've got panic on 9-current from Jun 25 2010 May be this is bug in deadlock resolver panic: blockable sleep lock (sleep mutex)

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Dag-Erling Smørgrav
Garrett Cooper yanef...@gmail.com writes: It leaves stray unused lockfiles in the directory: That's normal and harmless. DES -- Dag-Erling Smørgrav - d...@des.no ___ freebsd-current@freebsd.org mailing list

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Garrett Cooper
2010/6/28 Dag-Erling Smørgrav d...@des.no: Garrett Cooper yanef...@gmail.com writes: It leaves stray unused lockfiles in the directory: That's normal and harmless. Yeah.. it's just a bit messy :D. Thanks for the help! -Garrett ___

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Garrett Cooper
On Sat, Jun 26, 2010 at 10:50 PM, Doug Barton do...@freebsd.org wrote: On 06/26/10 13:29, Hans Petter Selasky wrote: Hi, Sometimes utilities that are started by devd require libraries outside /usr/lib. One example is the webcamd utility which is started by devd upon USB device insertion.

Re: Patch for rc.d/devd on FreeBSD 9-current

2010-06-28 Thread Doug Barton
On Mon, 28 Jun 2010, Garrett Cooper wrote: On Sat, Jun 26, 2010 at 10:50 PM, Doug Barton do...@freebsd.org wrote: On 06/26/10 13:29, Hans Petter Selasky wrote: Hi, Sometimes utilities that are started by devd require libraries outside /usr/lib. One example is the webcamd utility which is