Re: libc size

2002-10-31 Thread Ollivier Robert
According to Terry Lambert: > The PIC overhead is likely unavoidable. I'd actually like to see > the "benchmark" run on statically linked PIC vs. non-PIC code, so I remember that when I was working on Perl and the FreeBSD port (back in the early 5.000 days), having libperl shared was adding a fai

Re: libc size

2002-10-31 Thread Ollivier Robert
According to David Schultz: > Memory is even less of an issue; if a thousand copies of a shell > are running, their text gets shared regardless of how they are > linked. IIRC not exactly. In the dynamic case, some fixups are done by the dynamic linker to "link" with the shared libs and that force

Re: Lack of real long double support

2002-10-31 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Terry Lambert <[EMAIL PROTECTED]> writes: : "M. Warner Losh" wrote: : > : > This : > : > example shows that we don't support it in printf, since the above : > : > example does ***NOT*** give +Inf, but rather whatever 2*DBL_MAX is. : : [ ... ] : : > Terr

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread David O'Brien
On Wed, Oct 30, 2002 at 06:02:38PM -0800, Juli Mallett wrote: > Considering that I built the same applications and ran the same applications > fine a while ago, and we've had a binutils upgrade, and things don't break > on other systems, I'm inclined to assume there are linker bugs afoot, and > all

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Wed, 30 Oct 2002, Terry Lambert wrote: > This is the basis of Bruce's complaint: > > >http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1099099+0+archive/2002/freebsd-current/20021027.freebsd-current > > | gcc can't actually support the full range, since it doesn't control > | the runtime environem

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Wed, 30 Oct 2002, Juli Mallett wrote: > * De: Terry Lambert <[EMAIL PROTECTED]> [ Data: 2002-10-30 ] > [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > > > > Maybe the workaround for now is to make the symbols in libXThrStub.so > > > > weak? > > > > > > They *are* weak Terry. The pro

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Wed, 30 Oct 2002, Daniel Eischen wrote: > On Wed, 30 Oct 2002, Alexander Kabaev wrote: > > > On Wed, 30 Oct 2002 15:51:48 -0800 > > Terry Lambert <[EMAIL PROTECTED]> wrote: > > > > > NO. > > > > > > If you have a library that's linked to a library containing string > > > symbols, then no other

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > If last weak will win, the normal case when Xthrstub is loaded > > > _after_ libc_r will break. The only way to really fix this is to > > > export pthread_ sy

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Wed, 30 Oct 2002, M. Warner Losh wrote: > The one issue that I've seen is > > long double a = 1.0L; > long double b = 1.0L + LDBL_EPSION > if (a == b) abort(); > > which is what I'm trying to fix. (note, "1.0L" must be spelled > "oneld()" and long double oneld() { return (1.0L);}) t

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Max Khon
hi, there! On Thu, Oct 31, 2002 at 12:39:10AM -0800, David O'Brien wrote: > > Considering that I built the same applications and ran the same applications > > fine a while ago, and we've had a binutils upgrade, and things don't break > > on other systems, I'm inclined to assume there are linker b

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Wed, 30 Oct 2002, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > Bruce Evans <[EMAIL PROTECTED]> writes: > : The reasons are the same as they used to be: incomplete language support > : and incomplete library support. Language support is being completed but > : is far fr

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > If last weak will win, the normal case when Xthrstub is loaded > > > _after_ libc_r will break. The only way to really fix this is to > > > export pthread_ sy

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Alexander Kabaev wrote: > > > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > > > If last weak will win, the normal case when Xthrstub is loaded > > > > _after_ libc_r will break. The only

Re: adaptec scsi - seagate da -- current

2002-10-31 Thread ANYBODY
On Wed, Oct 30, 2002 at 10:00:29AM -0700, Justin T. Gibbs wrote: > > Can you provide the model number and firmware revision for > this drive? According to the controller, the drive is failing > to respond to a whole slew of commands that we have queued to > it. You might have better luck if you

Re: burncd/cdcontrol

2002-10-31 Thread Soeren Schmidt
It seems Nate Lawson wrote: > On Sun, 27 Oct 2002, Soeren Schmidt wrote: > > Hmm, it is true that I could use ATAPI command directly in burncd, and > > I actually have a version in the lab that is ~75% converted to that, > > I'd love to see that once you're ready to release. I'm not sure it will

Re: burncd/cdcontrol

2002-10-31 Thread Thomas Quinot
Le 2002-10-27, Soeren Schmidt écrivait : > Hmm, it is true that I could use ATAPI command directly in burncd, and > I actually have a version in the lab that is ~75% converted to that, Nice! > but that is not the only issue here. The ATAPI cd driver has quite a > bit of functionality that the SC

alpha tinderbox failure

2002-10-31 Thread Dag-Erling Smorgrav
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree

Re: Lack of real long double support

2002-10-31 Thread David Schultz
Thus spake Bruce Evans <[EMAIL PROTECTED]>: > $ cc -o z z.c > $ ./z > LDBL_EPSILON failed test 1 with prec 2 > $ cc -O -o z z.c. > $ ./z > LDBL_EPSILON failed test 1 with prec 2 > DBL_EPSILON failed test 2 with prec 3 > %%% > > The full brokenness only shows up with -O. Actually, the _full_ broke

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Max Khon wrote: > hi, there! > > On Thu, Oct 31, 2002 at 12:39:10AM -0800, David O'Brien wrote: > > > > Considering that I built the same applications and ran the same applications > > > fine a while ago, and we've had a binutils upgrade, and things don't break > > > on other

port security/p5-Authen-PAM doesn't build

2002-10-31 Thread Jens Rehsack
Hi folks, I tried to build webmin on 5.0-current and the required port security/p5-Authen-PAM fails to build. At first there was an error in configuration which I have fixed and send the patch (PR ports/ports/44769). Now comes up another error which I'm not able to fix, because it seems that PAM.c

GENERIC bórken...

2002-10-31 Thread Poul-Henning Kamp
cc -c -O -pipe -mcpu=pentiumpro -Wall -Wredundant-decls -Wnested-externs -Wstric t-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fforma t-extensions -ansi -g -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/dev -I/us r/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/ipf

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Thu, 31 Oct 2002, David Schultz wrote: > Thus spake Bruce Evans <[EMAIL PROTECTED]>: > > $ cc -o z z.c > > $ ./z > > LDBL_EPSILON failed test 1 with prec 2 > > $ cc -O -o z z.c. > > $ ./z > > LDBL_EPSILON failed test 1 with prec 2 > > DBL_EPSILON failed test 2 with prec 3 > > %%% > > > > The fu

ia64 tinderbox failure

2002-10-31 Thread Peter Wemm
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Juli Mallett
* De: David O'Brien <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > On Wed, Oct 30, 2002 at 06:02:38PM -0800, Juli Mallett wrote: > > Considering that I built the same applications and ran the same applications > > fine a while ago, and we've h

Re: GENERIC bórken...

2002-10-31 Thread Craig Rodrigues
On Thu, Oct 31, 2002 at 01:21:38PM +0100, Poul-Henning Kamp wrote: > ffreestanding -Werror /usr/src/sys/dev/amr/amr.c > cc1: warnings being treated as errors > /usr/src/sys/dev/amr/amr.c: In function `amr_setup_ccbmap': > /usr/src/sys/dev/amr/amr.c:1055: warning: initialization from incompatible p

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > If last weak will win, the normal case when Xthrstub is loaded > > > _after_ libc_r will break. The only way to really fix this is to > > > export pthread_ s

Re: changes to make(1)

2002-10-31 Thread Ruslan Ermilov
On Thu, Oct 31, 2002 at 04:37:32AM -0500, AlanE wrote: > On Thu, Oct 31, 2002 at 11:20:26AM +0200, Ruslan Ermilov wrote: > >On Thu, Oct 31, 2002 at 01:12:46AM -0500, AlanE wrote: > >> On Wed, Oct 30, 2002 at 10:08:20PM -0800, David O'Brien wrote: > >> >On Thu, Oct 31, 2002 at 01:03:20AM -0500, Alan

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Wed, 30 Oct 2002, Daniel Eischen wrote: > > > On Wed, 30 Oct 2002, Alexander Kabaev wrote: > > > > > On Wed, 30 Oct 2002 15:51:48 -0800 > > > Terry Lambert <[EMAIL PROTECTED]> wrote: > > > > > > > NO. > > > > > > > > If you have a library that's linked

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Alexander Kabaev wrote: > > > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > > > If last weak will win, the normal case when Xthrstub is loaded > > > > _after_ libc_r will break. The onl

Re: libc size

2002-10-31 Thread Tim Robbins
On Wed, Oct 30, 2002 at 12:46:15PM -0800, Nate Lawson wrote: > After a discussion on cvs-all regarding size of our libc, I wrote a quick > script to see where the problems are. A cursory glance at its output > shows there are numerous things we can improve, including: > > * setproctitle(3) use

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Alexander Kabaev
On Thu, 31 Oct 2002 09:08:12 -0500 (EST) Daniel Eischen <[EMAIL PROTECTED]> wrote: > > Cool. Then let's be consistent and follow Solaris all the way. Libc > > on Solaris provides full set of pthread_? functions which in turn > > call weakly defined _pthread_?? counterparts. libpthread in turn > >

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Juli Mallett
* De: Juli Mallett <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > * De: David O'Brien <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] > [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > > On Wed, Oct 30, 2002 at 06:02:38PM -0800, Juli Malle

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > On Thu, 31 Oct 2002, Doug Rabson wrote: > > > On Thu, 31 Oct 2002, Alexander Kabaev wrote: > > > > > On Wed, 30 Oct 2002 22:25:12 -0500 (EST) > > > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > > > > > If last weak will win, the normal case when Xth

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Thu, 31 Oct 2002 09:08:12 -0500 (EST) > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > Cool. Then let's be consistent and follow Solaris all the way. Libc > > > on Solaris provides full set of pthread_? functions which in turn > > > call weakly

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Alexander Kabaev
On Thu, 31 Oct 2002 05:45:43 -0800 Juli Mallett <[EMAIL PROTECTED]> wrote: > * De: David O'Brien <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] > [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > > On Wed, Oct 30, 2002 at 06:02:38PM -0800, Juli Mallett wrote: > > > Considering that I built the

RE: Networking

2002-10-31 Thread Michael Harnois
I can't run the -CURRENT kernel of the last several days and get any networking performance at all-but this is a desktop machine with a dc. Something's seriously wrong. Michael D. Harnois 2L, University of St. Thomas School of Law Minneapolis, Minnesota -Original Message- From: [EMAIL PRO

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Thu, 31 Oct 2002 05:45:43 -0800 > Juli Mallett <[EMAIL PROTECTED]> wrote: > > > * De: David O'Brien <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] > > [ Subjecte: Re: [PATCH: libc]Re: gnome on current ] > > > On Wed, Oct 30, 2002 at 06:02:38PM -0800

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > On Thu, 31 Oct 2002, Alexander Kabaev wrote: > > > On Thu, 31 Oct 2002 09:08:12 -0500 (EST) > > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > > > > Cool. Then let's be consistent and follow Solaris all the way. Libc > > > > on Solaris provides full se

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Alexander Kabaev
I'll respond to two messages in one. > No, you stated that Solaris libpthread defines pthread_ symbols > strong. It doesn't. Perhaps you really meant _pthread_ symbols, > which is what you say above. No, I meant a simple fact that Solaris provides weak definition for both _pthread and pthread

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > You can also play the libgcc game inside of libc for those applications > > or libraries that are too lazy to do it for themselves. Have the > > libc pthread stubs key on a weak reference to pthread_create and

Cannot find my Linux partition

2002-10-31 Thread Craig Rodrigues
Hi, I have in my kernel config: options EXT2FS On -STABLE, and on -CURRENT from a week ago, one my SCSI drives looked like this: = /dev/da1s1 standard input: x86 boot sector /dev/da1s2 standard input:

RE: Problems with 5.0 current release in case of multiple PCI bu

2002-10-31 Thread John Baldwin
On 30-Oct-2002 Manish Lachwani wrote: > Hello, > > pcib2: on acpi0 > pcib2: duplicate bus number 0 - not probing bus > pcib4: on acpi0 > pcib4: duplicate bus number 0 - not probing bus > pcib5: on acpi0 > pcib5: duplicate bus number 0 - not probing bus > pcib6: on acpi0 > pcib6: duplicate bus

Re: changes to make(1)

2002-10-31 Thread Ruslan Ermilov
On Thu, Oct 31, 2002 at 06:21:25AM -0800, Juli Mallett wrote: > * De: Ruslan Ermilov <[EMAIL PROTECTED]> [ Data: 2002-10-31 ] > [ Subjecte: Re: changes to make(1) ] > > Interesting. It seems to me we really need a 'CondIsExpressionTerminator' > or something. ')' should only be a terminator

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > On Thu, 31 Oct 2002, Doug Rabson wrote: > > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > You can also play the libgcc game inside of libc for those applications > > > or libraries that are too lazy to do it for themselves. Have the > > > libc pthre

Re: Cannot find my Linux partition

2002-10-31 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Craig Rodrigues writes: >I just cvsup'd and rebuilt kernel/world on -CURRENT today, and now >the same SCSI disk looks like: > >= >for i in $(/bin/ls -1 /dev/da1*); do printf "$i $(file - < $i)\n"; d

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > On Thu, 31 Oct 2002, Doug Rabson wrote: > > > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > > You can also play the libgcc game inside of libc for those applications > > > > or libraries that are too laz

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > On Thu, 31 Oct 2002, Doug Rabson wrote: > > > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > > > On Thu, 31 Oct 2002, Doug Rabson wrote: > > > > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > > > You can also play the libgcc game inside of libc for

Re: Cannot find my Linux partition

2002-10-31 Thread Craig Rodrigues
On Thu, Oct 31, 2002 at 04:56:49PM +0100, Poul-Henning Kamp wrote: > Can you please email me: > > boot -v console output (use serial console if you can) > sysctl -n kern.geom.confxml > > Thanks in advance! I am not physically at the machine in question right now, and am leaving in a

Question about boot(8) man page

2002-10-31 Thread Craig Rodrigues
Hi, I just read the boot(8) man page on my system. Is the FILES section still correct for -CURRENT? FILES /boot.config parameters for the boot blocks (optional) /boot/boot1 first stage bootstrap file /boot/boot2 second stage bootstrap file /boot/loader third stage bootst

Re: Cannot find my Linux partition

2002-10-31 Thread Craig Rodrigues
On Thu, Oct 31, 2002 at 04:56:49PM +0100, Poul-Henning Kamp wrote: > Can you please email me: > > boot -v console output (use serial console if you can) > sysctl -n kern.geom.confxml OK, I edited /boot/default/loader.conf, and added set boot_verbose="YES" and rebooted. (I'm still not

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > On Thu, 31 Oct 2002, Doug Rabson wrote: > > > > We only use _pthread_* in libc, so it doesn't break libc unless > > > > they provide strong symbols for _pthread_*. Our implementation > > > > relies on the u

Re: Cannot find my Linux partition

2002-10-31 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Craig Rodrigues writes: > >--qDbXVdCdHGoSgWSk >Content-Type: text/plain; charset=us-ascii >Content-Disposition: inline > >On Thu, Oct 31, 2002 at 04:56:49PM +0100, Poul-Henning Kamp wrote: >> Can you please email me: >> >> boot -v console output (use serial con

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > On Thu, 31 Oct 2002, Doug Rabson wrote: > > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > I don't see how that can be. _pthread_mutex_lock() in libc_r calls > > > init_static_private(), not init_static(). > > > > That was it (I single stepped throug

Re: Objective-C threads

2002-10-31 Thread Chad David
On Wed, Oct 30, 2002 at 09:47:02PM -0600, Loren James Rittle wrote: > > Use thr-objc not thr-posix. thr-objc maps to the gcc generic thread > abstration layer and is better supported these days. It will also > correctly disable overhead related to threading when a program is > single-threaded us

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Alexander Kabaev
On Thu, 31 Oct 2002 12:20:14 -0500 (EST) Daniel Eischen <[EMAIL PROTECTED]> wrote: > I wonder how it works for Solaris (you can see both the non-underscore > and single-underscore symbols resolve to the same thing)? Perhaps their > stubs in libc pull the libgcc trick? Solaris libc uses something

ia64 tinderbox failure

2002-10-31 Thread Peter Wemm
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree

Re: libc size

2002-10-31 Thread Terry Lambert
Ollivier Robert wrote: > According to Terry Lambert: > > The PIC overhead is likely unavoidable. I'd actually like to see > > the "benchmark" run on statically linked PIC vs. non-PIC code, so > > I remember that when I was working on Perl and the FreeBSD port (back in the > early 5.000 days), hav

Re: libc size

2002-10-31 Thread Terry Lambert
Ollivier Robert wrote: > According to David Schultz: > > Memory is even less of an issue; if a thousand copies of a shell > > are running, their text gets shared regardless of how they are > > linked. > > IIRC not exactly. In the dynamic case, some fixups are done by the dynamic > linker to "link"

bob

2002-10-31 Thread Marc Butler
To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Cannot find my Linux partition

2002-10-31 Thread Craig Rodrigues
On Thu, Oct 31, 2002 at 06:33:13PM +0100, Poul-Henning Kamp wrote: > Please try this patch: Hi, I tried your patch. This is what I get now: = for i in `/bin/ls /dev/da1*`; do printf "$i $(file - < $i)\n"; done /dev/da1

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Alexander Kabaev wrote: > On Thu, 31 Oct 2002 12:20:14 -0500 (EST) > Daniel Eischen <[EMAIL PROTECTED]> wrote: > > > I wonder how it works for Solaris (you can see both the non-underscore > > and single-underscore symbols resolve to the same thing)? Perhaps their > > stubs i

Re: Cannot find my Linux partition

2002-10-31 Thread Wesley Morgan
On Thu, 31 Oct 2002, Craig Rodrigues wrote: > On Thu, Oct 31, 2002 at 06:33:13PM +0100, Poul-Henning Kamp wrote: > > Please try this patch: > I am also attaching the dmesg.boot file. > > I can now mount my Linux partition with: > mount -r -t ext2fs /dev/da1s7 /linuxmount This might be a dumb quest

Re: libc size

2002-10-31 Thread Tim Kientzle
I agree with David Schultz that dynamically linking /bin and /sbin is playing with fire. I, too, have had ugly experiences on systems that did this: When /usr won't mount, it is not pleasant to be stuck with no tools. (Consider a network environment where /usr is NFS-mounted as an extreme example

Re: libc size

2002-10-31 Thread Wesley Morgan
On Thu, 31 Oct 2002, Tim Kientzle wrote: > I agree with David Schultz that dynamically linking > /bin and /sbin is playing with fire. I, too, have had > ugly experiences on systems that did this: > When /usr won't mount, it is not pleasant to be > stuck with no tools. (Consider a network environ

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Doug Rabson
On Thu, 31 Oct 2002, Daniel Eischen wrote: > This is better, although it has two stubs for each routine. Adding > a weak definition from pthread_foo() to _pthread_foo() (note the > lack of _stub) doesn't do the same thing? Ok, this version works and seems to be a reasonably tidy solution, at lea

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Daniel Eischen
On Thu, 31 Oct 2002, Doug Rabson wrote: > On Thu, 31 Oct 2002, Daniel Eischen wrote: > > > This is better, although it has two stubs for each routine. Adding > > a weak definition from pthread_foo() to _pthread_foo() (note the > > lack of _stub) doesn't do the same thing? > > Ok, this version w

Re: libc size

2002-10-31 Thread Miguel Mendez
On Thu, 31 Oct 2002 14:19:39 -0500 (EST) Wesley Morgan <[EMAIL PROTECTED]> wrote: Hi, > And of course the "answer" to that is to create a /lib. Something that > I would *never ever* want to see. Sure, a few people might throw > around the ^^ Why? I'd love to hear some real reason

Boot-time hang after init, still (VAIO R505ES again)

2002-10-31 Thread Pete Carah
CVSUP as of last night about 10PM PST: Well, phk's stuff now appears to work right (even finds the memory stick most of the time) and the bad malloc in acpi is fixed. This seems to leave irq issues (still!!) PSM0 still can't allocate irq even though 12 isn't used anywhere else. on the init hang,

Re: [PATCH] NEWCARD: pccardc power support

2002-10-31 Thread Mitsuru IWASAKI
Hi, > In message: <[EMAIL PROTECTED]> > Mitsuru IWASAKI <[EMAIL PROTECTED]> writes: > : I've implemented pccardc power and boot_deactivated support code for > : NEWCARD. They are needed for some mobile users including me. > : > : - Add pccardc power support code. Yes, it's OLDCARD

Re: [PATCH] NEWCARD: pccardc power support

2002-10-31 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Mitsuru IWASAKI <[EMAIL PROTECTED]> writes: : BTW, I think that some developers are interested in devd. : Do we have mailing list for it? Not currently. I can create one if people are interested. I've also been thinking of a good way we can have the ab

RE: Problems with 5.0 current release in case of multiple PCI bu

2002-10-31 Thread Manish Lachwani
It did work and detected the devices on startup. However, in case of the Force 4203 board which has onboard BCM5704 NICs, the kernel hung after detecting the second NIC. I will try to get the logs but I will have to get a serial console connectivity. Any ideas ? Thanks manish -Original Messag

Re: Lack of real long double support

2002-10-31 Thread Loren James Rittle
In article <[EMAIL PROTECTED]>, Bruce Evans<[EMAIL PROTECTED]> writes: > Example of how fixing this breaks a similar assertion for DBL_ESPILON: > %%% > $ cat z.c [...] > $ cc -o z z.c > $ ./z > LDBL_EPSILON failed test 1 with prec 2 > $ cc -O -o z z.c. > $ ./z > LDBL_EPSILON failed test 1 with pr

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Terry Lambert
Doug Rabson wrote: > On Thu, 31 Oct 2002, Daniel Eischen wrote: > It almost doesn't matter which of the solutions we use as long as we do > something. What we currently have is clearly wrong but I'll list it along > with the others. Solutions so far proposed are: [ ... ] > 2. Define weak _pthread

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Terry Lambert
Alexander Kabaev wrote: > Wrong. Solaris and Linux differ from FreeBSD each in its own way. > > Linuxprovides strong pthread definitions in libpthread > Solaris provides weak pthread and _pthread definitions in Libc > with libpthread providing strong _pthread and weak pthread > > We

Re: Lack of real long double support

2002-10-31 Thread Terry Lambert
Bruce Evans wrote: > Please forget this wrong example :-). The precision doesn't affect the > exponent range. Done. -- Terry To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Lack of real long double support

2002-10-31 Thread Terry Lambert
"M. Warner Losh" wrote: > : I await an explanation of how you can fit 2*DBL_MAX into a double, > : which has a range of DBL_MIN..DBL_MAX. > > Look at the code. > > long double a = DBL_MAX; > long double b = DBL_MAX * 2; > > The original posting said that b would be +Inf at this point,

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Terry Lambert
Daniel Eischen wrote: > We also have an additional requirement in libc. Our uses of > _pthread_* in libc must correspond to the [single underscore] > _pthread_* in libc_r (and libpthread eventually). All references > to [non underscore] pthread_* routines must correspond to the > [two underscore

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Terry Lambert
Doug Rabson wrote: > Now I'm really confused. I can't see how this can work properly. Imagine > the following scenario: > > An application 'base' is linked against libc and is not threaded. This > application loads a plugin 'Xplug.so' via dlopen(). Xplug doesn't use > threads but it does link agai

Re: [PATCH: libc]Re: gnome on current

2002-10-31 Thread Terry Lambert
Alexander Kabaev wrote: > By default, ti_jump_table entries contain pointers to dummy function like > _return_zero if no threading library is loaded. When the threading library is > loaded, ti_jump_table is populated with new pointers to functions implemented > in threading library library. GDB did

Re: libc size

2002-10-31 Thread Tim Kientzle
Wesley Morgan <[EMAIL PROTECTED]> wrote: ... create a /lib ... that I would *never ever* want to see. Miguel Mendez wrote: Why? I'd love to hear some real reasons for this. I can think of three concerns: 1) Fragility. Could a naive sysadmin (or a dying disk) break /[s]bin? What if t

newfs chokes, cores, & dies if inode density too high; patch attached

2002-10-31 Thread David Wolfskill
For various reasons (most of which are likely historical), I tend to mount /tmp as a swap-backed memory file system (and allocate quite a bit of space to swap). Thus, in -STABLE, I use an mfs; in -CURRENT, I use a little shell script (cribbed almost verbatim from "man mdconfig"). Some months back

Re: Lack of real long double support

2002-10-31 Thread Steve Kargl
On Thu, Oct 31, 2002 at 03:18:47PM -0700, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > Terry Lambert <[EMAIL PROTECTED]> writes: > : > Nope. The only difference between 53 bits and 64 bits of precision is > : > just that: precision. The number of bits for expoentent is >

Re: Objective-C threads

2002-10-31 Thread Loren James Rittle
In article <[EMAIL PROTECTED]>, Chad David<[EMAIL PROTECTED]> writes: >> Use thr-objc not thr-posix. thr-objc maps to the gcc generic thread >> abstration layer and is better supported these days. It will also >> correctly disable overhead related to threading when a program is >> single-threade

alpha tinderbox failure

2002-10-31 Thread Dag-Erling Smorgrav
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree

A few questions

2002-10-31 Thread Conrad Sabatier
I just upgraded a 4.7-STABLE box to current over the weekend. Went off very well, thanks to the great documentation in UPDATING. It's odd, though, that after upgrading again just a few days later, suddenly X (or perhaps just xdm) failed to start due to an unresolved symbol. I had already upgrade

Re: newfs chokes, cores, & dies if inode density too high; patch attached

2002-10-31 Thread Ceri Davies
I don't have time to test this right now, but see also PR bin/30959. Ceri -- you can't see when light's so strong you can't see when light is gone To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: kern/42417 cannot probe Olympus digital camera, "C-1"

2002-10-31 Thread Nate Lawson
I looked at the change and it seems good. Can someone more familiar with the USB system verify this? Thanks, Nate To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: kern/42417 cannot probe Olympus digital camera, "C-1"

2002-10-31 Thread Ian Dowse
In message <[EMAIL PROTECTED]>, Nate Lawson wri tes: >I looked at the change and it seems good. Can someone more familiar with >the USB system verify this? Done - I have a C-1 here, so I was able to test it - obviously I haven't accessed the camera from -current in a while! Ian To Unsubscribe:

-current install on large disk in non-LBA mode

2002-10-31 Thread stephan mantler
tonight i tried once again to install from 5.0-DP1 and the 2002-10-25 snapshot media. it has been interesting. the disk i'm trying to install to is a seagate ST360021A 60G disk with a 30G windows partition already installed. the BIOS accepts it either as a 28733/16/255 Cyl/Hd/Sec CHS, 1915/240/255

RE: -current install on large disk in non-LBA mode

2002-10-31 Thread John Baldwin
On 01-Nov-2002 stephan mantler wrote: > tonight i tried once again to install from 5.0-DP1 and the > 2002-10-25 snapshot media. it has been interesting. > > the disk i'm trying to install to is a seagate ST360021A > 60G disk with a 30G windows partition already installed. > the BIOS accepts it ei

Re: kern/42417 cannot probe Olympus digital camera, "C-1"

2002-10-31 Thread Wesley Morgan
On Fri, 1 Nov 2002, Ian Dowse wrote: > In message <[EMAIL PROTECTED]>, Nate Lawson wri > tes: > >I looked at the change and it seems good. Can someone more familiar with > >the USB system verify this? > > Done - I have a C-1 here, so I was able to test it - obviously I haven't > accessed the came

Re: RCng Awkwardness

2002-10-31 Thread David O'Brien
On Wed, Oct 30, 2002 at 11:50:45AM -0800, Tim Kientzle wrote: > I find the standard arguments used by RCng quite > awkward. In particular, especially for people who > have worked with SysV-style init scripts, it's We aren't trying to be compatable with SysV. We are compatable with other BSD's wi

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Thu, 31 Oct 2002, M. Warner Losh wrote: > In message: <[EMAIL PROTECTED]> > Terry Lambert <[EMAIL PROTECTED]> writes: > : "M. Warner Losh" wrote: > : > : I await an explanation of how you can fit 2*DBL_MAX into a double, > : > : which has a range of DBL_MIN..DBL_MAX. > : > > : > Loo

Re: Lack of real long double support

2002-10-31 Thread Bruce Evans
On Thu, 31 Oct 2002, Loren James Rittle wrote: > In article <[EMAIL PROTECTED]>, > Bruce Evans<[EMAIL PROTECTED]> writes: > > When I run your program against gcc mainline (for 3.3 release) with > the patch I have staged from RTH to correctly match our FP hardware > default setup, I see: > > S ritt

Re: Lack of real long double support

2002-10-31 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Bruce Evans <[EMAIL PROTECTED]> writes: : On Thu, 31 Oct 2002, M. Warner Losh wrote: : : > In message: <[EMAIL PROTECTED]> : > Terry Lambert <[EMAIL PROTECTED]> writes: : > : "M. Warner Losh" wrote: : > : > : I await an explanation of how you