Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread John-Mark Gurney
Juli Mallett wrote this message on Wed, Jun 25, 2003 at 00:15 -0500: > * Juli Mallett <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] > [ w.r.t. Re: tcsh being dodgy, or pipe code ishoos? ] > > * Tim Kientzle <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] > > > Hmmm... This looks like xargs isn't waiting

Re: DellMod

2003-06-24 Thread Stijn Hoop
On Wed, Jun 25, 2003 at 03:44:02AM +, Sebastian Yepes [ESN] wrote: > Hi all you FreeBSD dell freack.. xD > > I have just put in my webpaga the src of the dellmod to control the dell i8500 > > www.x123.info docs->i8500 -> ACPI Great work, but could you please state on your page also that thi

Best way to get max KVA setting?

2003-06-24 Thread Mike Silbersack
I could probably grep for this, but what's the best way to get a hold of the # of pages (or MB of ram) that max KVA is set to? I'm adding another autosize option, and I want to base it on min (KVA, ram) so that it doesn't balloon on boxes where ram >> KVA. Thanks, Mike "Silby" Silbersack __

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Juli Mallett
* Juli Mallett <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] [ w.r.t. Re: tcsh being dodgy, or pipe code ishoos? ] > * Tim Kientzle <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] > > Hmmm... This looks like xargs isn't waiting for the subcommand > > to exit. This looks like 'echo -- + 2' and 'echo --

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Juli Mallett
* Tim Kientzle <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] [ w.r.t. Re: tcsh being dodgy, or pipe code ishoos? ] > Artem 'Zazoobr' Ignatjev wrote: > > Juli Mallett wrote: > > > >>Anyone with insight into this? > >> > >>([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread John-Mark Gurney
Tim Kientzle wrote this message on Tue, Jun 24, 2003 at 21:19 -0700: > Artem 'Zazoobr' Ignatjev wrote: > >Juli Mallett wrote: > > > >>Anyone with insight into this? > >> > >>([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% > >>echo + % ) ) > >>1 > >>+ 2 > >>+ 3 > >>([EMAIL PRO

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Tim Kientzle
Artem 'Zazoobr' Ignatjev wrote: Juli Mallett wrote: Anyone with insight into this? ([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) 1 + 2 + 3 ([EMAIL PROTECTED]:~)40% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) | cat 1 + +2 3 last cat is not necess

Re: LOR in VM (with backtrace)

2003-06-24 Thread Alan L. Cox
Andrew Gallatin wrote: > > Alan L. Cox writes: > > Thanks for letting me know. This is another false positive: Witness > > can't distinguish the lock on the object being destroyed from the lock > > on the object used by UMA because their labels are the same. They will > > never, however, be

Re: acpi patch for dell laptop?

2003-06-24 Thread Vincent Poy
On Tue, 24 Jun 2003, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > Vincent Poy <[EMAIL PROTECTED]> writes: > : Speaking about ACPI, has anyone figured out how to close the lid > : without suspending? I remember before, when the lid was closed, it would > > add the foll

3d screen saver.

2003-06-24 Thread Pawel Jakub Dawidek
Hello:) I want to present one-night-hack: 3d CERB logo screen saver. It is dedicated for FreeBSD 5.x and it is quite nice (IMHO). You can download it from: http://garage.freebsd.pl/cerb_saver.tbz Enjoy! -- Pawel Jakub Dawidek [EMAIL PROTECTED] UNIX Systems Progr

DellMod

2003-06-24 Thread Sebastian Yepes [ESN]
Hi all you FreeBSD dell freack.. xD I have just put in my webpaga the src of the dellmod to control the dell i8500 www.x123.info docs->i8500 -> ACPI -- /* FingerPrint: 5BF1 58B1 DE75 CBE3 6044 7098 1246 1EF6 9E78 041C @@@ @@ @@@ @@! @@@ !@@ @@! @@@ @[EMAIL PROTECT

Re: Unkillable processes with libKSE

2003-06-24 Thread Michael Edenfield
* Julian Elischer <[EMAIL PROTECTED]> [030624 19:01]: > As of last testing (yesterday my laptop (non SMP) acted the same.. > > I'm not sure what to suggest. > can you confirm that you are running the newest of everything.. > (though as far as I know it was ok, even several weeks ago). I'll re-cv

Re: Unkillable processes with libKSE

2003-06-24 Thread Wesley Morgan
On Tue, 24 Jun 2003, Julian Elischer wrote: > I can not duplicate this.. > ON a system (SMP) compiled this afternoon (checked out this afternoon > too), ksetest responds immediatly to ^C and ^Z in the expected manner. > > I am using the csh as my shell and was running as root AND as myself > for t

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Makoto Matsushita
jmallett> Anyone with insight into this? "Me Too" with zsh 4.0.6 on 5-current as of early June/2003. -- - Makoto `MAR' Matsushita ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Andrey Chernov
On Tue, Jun 24, 2003 at 18:54:11 -0500, Juli Mallett wrote: > stdout. Where does stderr come into it? Yes I know about TTY races Forget about stderr, it looks like fork race somewhere. Minimal example will be ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) which outputs + + 3 2 in rare cases.

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Artem 'Zazoobr' Ignatjev
Juli Mallett wrote: > Anyone with insight into this? > > ([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) > 1 > + 2 > + 3 > ([EMAIL PROTECTED]:~)40% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) | > cat > 1 > + +2 > 3 last cat is not necessary... And

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Juli Mallett
* Andrey Chernov <[EMAIL PROTECTED]> [ Date: 2003-06-24 ] [ w.r.t. Re: tcsh being dodgy, or pipe code ishoos? ] > On Tue, Jun 24, 2003 at 18:35:15 -0500, Juli Mallett wrote: > > Anyone with insight into this? > > > > ([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% ech

Re: acpi patch for dell laptop?

2003-06-24 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Vincent Poy <[EMAIL PROTECTED]> writes: : Speaking about ACPI, has anyone figured out how to close the lid : without suspending? I remember before, when the lid was closed, it would add the following to your /boot/loader.conf: hw.acpi.lid_switch_

Re: tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Andrey Chernov
On Tue, Jun 24, 2003 at 18:35:15 -0500, Juli Mallett wrote: > Anyone with insight into this? > > ([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) > 1 > + 2 > + 3 Loks like stdout/stderr mix, but I not check the code, so just raw guess. __

tcsh being dodgy, or pipe code ishoos?

2003-06-24 Thread Juli Mallett
Anyone with insight into this? ([EMAIL PROTECTED]:~)39% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) 1 + 2 + 3 ([EMAIL PROTECTED]:~)40% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) ) | cat 1 + +2 3 ([EMAIL PROTECTED]:~)41% ( echo 1 ; ( ( echo 2 ; echo 3 ) | xargs -I% echo

broken DRM for ATI Radeon

2003-06-24 Thread Pierre Beyssac
Since the "new" DRM has been integrated in current by the end of April, I've been unable to use DRI with my ATI card. The X server starts and apparently works, then suddenly (when scrolling an xterm or doing some memory-intensive operation like 3D rendering) enters a busy loop. After an awful lot

Re: Unkillable processes with libKSE

2003-06-24 Thread Julian Elischer
On Tue, 24 Jun 2003, Michael Edenfield wrote: [...] > thread_start() : 0x84af000 84af000 > kse_create() -> 0 > A*.kse_create() -> -1 > [...] > *R*.S.*T*.^C^D^Z > > (no response on this tty, so I close it). I can not duplicate this.. ON a system (SMP) compiled this afternoon (checked out this a

Re: LOR in VM (with backtrace)

2003-06-24 Thread Andrew Gallatin
Alan L. Cox writes: > Thanks for letting me know. This is another false positive: Witness > can't distinguish the lock on the object being destroyed from the lock > on the object used by UMA because their labels are the same. They will > never, however, be the same object. So, deadlock isn'

Re: optreset undeclared

2003-06-24 Thread Kris Kennaway
On Tue, Jun 24, 2003 at 03:37:52PM +0200, Martin Dvorak wrote: > Hi, > > am I the only one having this problem while building world: I think so. Are you sure you have completely up-to-date sources and no extra cruft in your source and object trees? Kris pgp0.pgp Description: PGP signature

Re: LOR in VM (with backtrace)

2003-06-24 Thread Alan L. Cox
Kris Kennaway wrote: > > CURRENT dated June 19; > > lock order reversal > 1st 0xc45788ac vm object (vm object) @ > /a/asami/portbuild/i386/src-client/sys/vm/vm_object.c:1506 > 2nd 0xc082f110 system map (system map) @ > /a/asami/portbuild/i386/src-client/sys/vm/vm_kern.c:328 > > Debugger(c03f

truncate operation on fat32 may corrupt the file system

2003-06-24 Thread skywizard
>Submitter-Id: current-users >Originator:Ariff Abdullah >Organization: MyBSD >Confidential: no >Synopsis: truncate operation on fat32 may corrupt the file system >Severity: critical >Priority: high >Category: kern >Class: sw-bug >Release: FreeBSD 4.7-RELEAS

Re: flock error

2003-06-24 Thread Dan Nelson
In the last episode (Jun 18), Santos said: > I'm trying to do a make release on 5.1-RELEASE to do a custom 5.1. > > CHROOTDIR=/home/custom and CVSROOT=/home/ncvs are both on a redhat nfs > server. I had some errors related to telnet, telnetd and libtelnet. > After a few makes the error went away.

Re: Unkillable processes with libKSE

2003-06-24 Thread Julian Elischer
If it's duplicatable on recent systems I'll see it on my test system... thanks.. On Tue, 24 Jun 2003, Michael Edenfield wrote: > * Julian Elischer <[EMAIL PROTECTED]> [030624 14:47]: > > > > I had the same experience just running the KSE test application from > > > /usr/src/tools last night.

Re: Unkillable processes with libKSE

2003-06-24 Thread Michael Edenfield
* Julian Elischer <[EMAIL PROTECTED]> [030624 14:47]: > > I had the same experience just running the KSE test application from > > /usr/src/tools last night. I ended up with three unkillable ksetest > > applications and ultimately rebooted to get rid of them. I was > > planning to report it a

Re: Unkillable processes with libKSE

2003-06-24 Thread Wesley Morgan
On Tue, 24 Jun 2003, Julian Elischer wrote: > what about kill -9 887 > ? > The signals in libKSE are known to be 'delicate'. > We are working on (well, actually David Xu is working on) > a set of code to make the signal more robust. > Hopefully this will fix the problem you are seeing.. Kill -9 d

Re: [-CURRENT tinderbox] failure on i386/i386

2003-06-24 Thread Julian Elischer
I've fixed the breakage and I'll commit other fixes pointed out by ru.. seems a pity to back it out just for that.. On Tue, 24 Jun 2003, Maksim Yevmenkin wrote: > > Hello, > > please disconnect usr.bin/bluetooth and usr.sbin/bluetooth from the build > for now. i'm working on the patch to fix

[-CURRENT tinderbox] failure on i386/pc98

2003-06-24 Thread Tinderbox
TB --- 2003-06-24 18:06:29 - starting CURRENT tinderbox run for i386/pc98 TB --- 2003-06-24 18:06:29 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/i386/pc98 TB --- /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2003-06-24 18:08:22 - building world TB --- cd /home

Re: Unkillable processes with libKSE

2003-06-24 Thread Julian Elischer
On Tue, 24 Jun 2003, Michael Edenfield wrote: > * Wesley Morgan <[EMAIL PROTECTED]> [030624 12:45]: > > > Thought I would give libKSE a try making use of the 'libmap.conf' library > > translations. KDE loads fine, but when I tried to run Firebird I get a > > process with 3 threads, and it is co

Re: Unkillable processes with libKSE

2003-06-24 Thread Julian Elischer
what about kill -9 887 ? The signals in libKSE are known to be 'delicate'. We are working on (well, actually David Xu is working on) a set of code to make the signal more robust. Hopefully this will fix the problem you are seeing.. Any other comments? Other than not being able to kill it, how as t

questions about VM_KMEM_SIZE_SCALE

2003-06-24 Thread Jay Kuri
Hi there, Can anyone shed some light on the implications of adjusting VM_KMEM_SIZE_SCALE? In particular I'm wondering if I increase this to, say, 2, what happens? I must admit I don't know how KVA is different from KVM or total RAM... so the note in kern_malloc ("on an x86 with 256M KVA, try to

Re: [-CURRENT tinderbox] failure on i386/i386

2003-06-24 Thread Maksim Yevmenkin
Hello, please disconnect usr.bin/bluetooth and usr.sbin/bluetooth from the build for now. i'm working on the patch to fix this. sorry about this. thanks, max > TB --- 2003-06-24 17:27:15 - starting CURRENT tinderbox run for i386/i386 > TB --- 2003-06-24 17:27:15 - checking out the source tree >

[-CURRENT tinderbox] failure on i386/i386

2003-06-24 Thread Tinderbox
TB --- 2003-06-24 17:27:15 - starting CURRENT tinderbox run for i386/i386 TB --- 2003-06-24 17:27:15 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/i386/i386 TB --- /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2003-06-24 17:28:58 - building world TB --- cd /home

Re: Unkillable processes with libKSE

2003-06-24 Thread Michael Edenfield
* Wesley Morgan <[EMAIL PROTECTED]> [030624 12:45]: > Thought I would give libKSE a try making use of the 'libmap.conf' library > translations. KDE loads fine, but when I tried to run Firebird I get a > process with 3 threads, and it is completely unkillable. It also is I had the same experience

Re: [current] Re: ACPI Patch/DSDT .asl for Dell Inspiron 5000

2003-06-24 Thread Nate Lawson
On Mon, 23 Jun 2003, David Gilbert wrote: > > "Nate" == Nate Lawson <[EMAIL PROTECTED]> writes: > Nate> Thanks for your patch submission. I looked into it and found a > Nate> few problems. Attached is a patch based on yours that should be > Nate> equivalent but fixes a few problems: > > Is th

Unkillable processes with libKSE

2003-06-24 Thread Wesley Morgan
Thought I would give libKSE a try making use of the 'libmap.conf' library translations. KDE loads fine, but when I tried to run Firebird I get a process with 3 threads, and it is completely unkillable. It also is holding some kind of lock on it's own directory that has caused a couple of ls's to ha

Re: ACPI thermal _ACx values

2003-06-24 Thread Gunnar Flygt
On Tue, Jun 24, 2003 at 11:20:56AM -0400, Michael W. Oliver wrote: > Here is the problem. When I boot up, everything is working fine, and the > following sysctl is set as follows: > > hw.acpi.thermal.tz0._ACx: 3351 -1 -1 -1 -1 -1 -1 -1 -1 -1 (3351 - 2732) / 10 = 61.9 degrees Centigrade So that'

ACPI stuff to make Libretto 110CT work

2003-06-24 Thread Mark Murray
Hi You (?) gave me these patches at least 6 months ago, and they've been working for my Libretto ever since then. Is it OK if I commit them? M -- Mark Murray iumop ap!sdn w,I idlaH Index: dev/acpica/acpi.c === RCS file: /home/ncvs/s

ACPI thermal _ACx values

2003-06-24 Thread Michael W. Oliver
Here is the problem. When I boot up, everything is working fine, and the following sysctl is set as follows: hw.acpi.thermal.tz0._ACx: 3351 -1 -1 -1 -1 -1 -1 -1 -1 -1 Ok, this is fine, except that sometimes the first value isn't 3351. I have seen 3331 and 3341, too. Is that a big deal? And,

adduser : typo in variable name

2003-06-24 Thread Kostyuk Oleg
>Submitter-Id: current-users >Originator:Kostyuk Oleg >Organization: >Confidential: no >Synopsis: adduser : typo in variable name >Severity: non-critical >Priority: low >Category: bin >Class: update >Release: FreeBSD 5.1-RELEASE i386 >Environment: System:

optreset undeclared

2003-06-24 Thread Martin Dvorak
Hi, am I the only one having this problem while building world: cc -I/usr/local/include -march=athlon-tbird -I/usr/src/lib/libc/include -I/usr/src/lib/libc/../../include -I/usr/src/lib/libc/i386 -D__DBINTERFACE_PRIVATE -I/usr/src/lib/libc/../../contrib/gdtoa -DINET6 -I/usr/obj/usr/src/lib/lib

Re: ReiserFS

2003-06-24 Thread Riccardo Torrini
On Sun, Jun 22, 2003 at 07:00:26PM +0200, Brad Knowles wrote: > What if it's the same machine? What if they have only the one > machine, so they can't even copy it over to another one, just to > copy it back? What about using a FAT32 exchange partition? On the same disk or on a new one, depend

Re: Buildproblem

2003-06-24 Thread Kris Kennaway
On Tue, Jun 24, 2003 at 01:37:07PM +0200, Willem Jan Withagen wrote: > Hi, > > For some time now I have not been able to buildworld. > It always cramps on: > ===> lib/libpam/modules/pam_krb5 > rm -f .depend > mkdep -f > pend -a-I/usr/src5/src/lib/libpam/modules/pam_krb5/../../../../contrib/o >

Re: matcd rises from the ashes!

2003-06-24 Thread Wilko Bulte
On Tue, Jun 24, 2003 at 08:31:44AM -0400, Paul Mather wrote: > licensing problems have been fixed. (I notice the original 10-point > license has shrunk to only 3 in the latest version.) So, could we > please (pretty please) have matcd also magically reappear in 4-STABLE? Frank Durda is back, an

Re: where is rogue?

2003-06-24 Thread Mark Murray
Tilman Linneweh writes: > BTW, there are some open PRs regarding the freebsd-games. Currently they are > all assigned to freebsd-ports-bugs.=20 > > Does anyone volunteer to handle these, or are there plans to put the games > sources in a CVS somewhere (projects repository?).=20 The port carries a

Re: Buildproblem

2003-06-24 Thread Kent Stewart
On Tuesday 24 June 2003 04:37 am, Willem Jan Withagen wrote: > Hi, > > For some time now I have not been able to buildworld. > It always cramps on: > ===> lib/libpam/modules/pam_krb5 > rm -f .depend > mkdep -f > pend -a > -I/usr/src5/src/lib/libpam/modules/pam_krb5/../../../../contrib/o > penpam

Buildproblem

2003-06-24 Thread Willem Jan Withagen
Hi, For some time now I have not been able to buildworld. It always cramps on: ===> lib/libpam/modules/pam_krb5 rm -f .depend mkdep -f pend -a-I/usr/src5/src/lib/libpam/modules/pam_krb5/../../../../contrib/o penpam/include -I/usr/src5/src/lib/libpam/modules/pam_krb5/../../libpam /usr/src5/src/

[-CURRENT tinderbox] failure on sparc64/sparc64

2003-06-24 Thread Tinderbox
TB --- 2003-06-24 09:45:12 - starting CURRENT tinderbox run for sparc64/sparc64 TB --- 2003-06-24 09:45:12 - checking out the source tree TB --- cd /home/des/tinderbox/CURRENT/sparc64/sparc64 TB --- /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2003-06-24 09:47:50 - building world TB

Re: acpi patch for dell laptop?

2003-06-24 Thread Vincent Poy
On Mon, 23 Jun 2003, Scott Lambert wrote: > On Mon, Jun 23, 2003 at 10:38:26AM -1000, Vincent Poy wrote: > > Speaking about ACPI, has anyone figured out how to close the lid > > without suspending? I remember before, when the lid was closed, it would > > suspend even with sysctl set to not su