Re: Multi BOOT

2003-09-05 Thread Terry Lambert
Abdul Hakeem wrote: Does anyone know a way of simultaneously booting FreeBSD with Linux or Win2K with a dual-processor and dual NIC server ? I can set the processor affinity on the Win2k, but I am having trouble configuring the FreeBSD to use a particular processor and a particular NIC. Just

Re: Text file busy

2003-09-05 Thread Terry Lambert
Paul Richards wrote: Overwriting a file that's currently executing results in a Text file busy error. When did this start happening? This was something that was fixed way back on FreeBSD but it seems to be a problem again. You are opening an existing file for write. You need to rename

Re: Text file busy

2003-09-05 Thread Terry Lambert
Wesley Morgan wrote: On Thu, 4 Sep 2003, Scott M. Likens wrote: On Thu, 2003-09-04 at 07:44, Paul Richards wrote: Overwriting a file that's currently executing results in a Text file busy error. this feature has always existed in FreeBSD for as long as I remember. It's also

New kernels won't boot

2003-09-05 Thread Lukas Ertl
Hi, I'm currently having the problem that newer kernels won't boot anymore on a HP Proliant DL380G3. The latest kernel I can boot is from Sun Aug 31 15:22:44 CEST 2003. Every attempt to boot a newer one (regardless whether UP or SMP) hangs at: vga0: Generic ISA VGA at port 0x3c0-0x3df iomem

Re: Question about genassym, locore.s and 0-sizedarrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Terry Lambert
Alexander Leidinger wrote: Dan Nelson [EMAIL PROTECTED] wrote: If you're talking FreeBSD 5, you should be able to simply subsitute a C99 flexible array member (basically replace [0] with []) and get the same effect. 0-length arrays are a gcc extension:

Re: Question about genassym, locore.s and 0-sized arrays (showstopper for an icc compiled kernel)

2003-09-05 Thread Alexander Leidinger
On Thu, 4 Sep 2003 15:57:31 -0700 Marcel Moolenaar [EMAIL PROTECTED] wrote: On Thu, Sep 04, 2003 at 05:51:23PM -0500, Dan Nelson wrote: I guess the correct question to be asking is does the ELF format allow 0-length symbols? Of course. What size do you think a label should have

Re: Question about genassym, locore.s and 0-sizedarrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Terry Lambert
Dan Nelson wrote: I guess the correct question to be asking is does the ELF format allow 0-length symbols? It does, according to my reading of it. They may have an issue with dead code removal or element aliasing. The way to find out would be to see what they emit for []... 0 lenth, or 1?

Re: Question about genassym, locore.s and 0-sized arrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Bruce Evans
On Thu, 4 Sep 2003, Marcel Moolenaar wrote: On Fri, Sep 05, 2003 at 02:59:22AM +0200, Marius Strobl wrote: We use the size of the symbol (ie the size of the object identified by the symbol) to pass around values. This we do by creating arrays. If we want to export a C constant

RE: ACPI problems with Compaq Evo N610c (fwd)

2003-09-05 Thread Tony Maher
Hello Doug, From [EMAIL PROTECTED] Fri Sep 5 05:49:49 2003 Not sure if you got a copy of this first time or not... Sorry, no I did not. My mail pickup system got screwed several times lately. -- Forwarded message -- From: Doug Barton [EMAIL PROTECTED] To: Cagle, John

Re: Text file busy

2003-09-05 Thread Paul Richards
On Thu, 2003-09-04 at 19:20, Tim Kientzle wrote: Depends on how you're installing the binary. It has always been safe to do either of the following: * Rename the current executable and then install the new one. * Unlink the current executable and then install the new one. Many tools

Re: Question about genassym, locore.s and 0-sizedarrays(showstopperfor an icc compiled kernel)

2003-09-05 Thread Terry Lambert
Alexander Leidinger wrote: On Fri, 05 Sep 2003 01:38:29 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Dan Nelson wrote: I guess the correct question to be asking is does the ELF format allow 0-length symbols? It does, according to my reading of it. They may have an issue with dead

Re: Question about genassym, locore.s and 0-sizedarrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Bruce Evans
On Fri, 5 Sep 2003, I wrote: ... If some values are unrepresentable then they need to be represtended using other values. E.g., add 1 to avoid 0, or multiply by the alignment size if some element of the tool chanin instsists on rounding up things chain

Re: Question about genassym, locore.s and 0-sizedarrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Alexander Leidinger
On Fri, 05 Sep 2003 02:06:56 -0700 Terry Lambert [EMAIL PROTECTED] wrote: Now try: struct foo { char c; int i; long array[]; }; struct foo foo;m struct foo fee[1]; struct foo fie[3]; struct foo foe[0];

Re: [Patch] mdmfs currently broken

2003-09-05 Thread Bruce Evans
On Thu, 4 Sep 2003, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Stefan =?iso-8859- 1?Q?E=DFer?= writes: Seems that mdmfs stopped working recently (probably because of GEOM related changes). One possible fix is to label the md and newfs the thusly created c partition. This

Re: [Patch] mdmfs currently broken

2003-09-05 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Bruce Evans writes: We should not revert to putting BSD labels on everything. Disk labels are required by the not unused fsck_ffs utility to search for alternate superblocks. You mean: The widely used fsck_ffs utility is able to use information from the optional

Latest -current boot stops cold after first CD

2003-09-05 Thread Doug Barton
I compiled the latest -current, and now it doesn't even boot. :( My first cd drive (a CD-ROM) is probed, but it falls back to PIO4. The kernel boot freezes after that point, and my CD-RW is never detected. This time the trick of putting a CD into the second drive doesn't help. I've added back the

Re: Question about genassym, locore.s and 0-sized arrays (showstopper for an icc compiled kernel)

2003-09-05 Thread Stefan Farfeleder
On Thu, Sep 04, 2003 at 11:28:58AM -0500, Dan Nelson wrote: In the last episode (Sep 04), Alexander Leidinger said: - If we depend on it: how hard would it be to rewrite it to not depend on 0-sized arrays (and does someone volunteer to rewrite it)? It would be nice if someone could

Re: Question about genassym, locore.s and 0-sized arrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Marius Strobl
On Fri, Sep 05, 2003 at 07:34:39PM +1000, Bruce Evans wrote: On Fri, 5 Sep 2003, I wrote: ... If some values are unrepresentable then they need to be represtended using other values. E.g., add 1 to avoid 0, or multiply by the alignment size if some element of the tool chanin instsists

Re: [Patch] mdmfs currently broken

2003-09-05 Thread Bruce Evans
On Fri, 5 Sep 2003, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Bruce Evans writes: We should not revert to putting BSD labels on everything. Disk labels are required by the not unused fsck_ffs utility to search for alternate superblocks. You mean: The widely used fsck_ffs

Re: New kernels won't boot

2003-09-05 Thread Lukas Ertl
On Fri, 5 Sep 2003, Lukas Ertl wrote: I'm currently having the problem that newer kernels won't boot anymore on a HP Proliant DL380G3. The latest kernel I can boot is from Sun Aug 31 15:22:44 CEST 2003. Every attempt to boot a newer one (regardless whether UP or SMP) hangs at: vga0:

Re: ips.ko load sequence for IBM ServerRaid 5i

2003-09-05 Thread Geoff Buckingham
I know this is the already the second place you have been directed to, but you may have more luck in freebsd-scsi. (cc'd there) On Thu, Sep 04, 2003 at 02:42:30PM -1000, Richard Puga wrote: I do have the ips driver working with the IBM ServerRaid 5i. However it only works if I boot of an IDE

devd *NOT* called on wi0 insert?

2003-09-05 Thread Larry Rosenman
I have a (within the week) -CURRENT system. If I boot with my Linksys WPC11 V.3 card inserted I get the dhcp actions and all is fine. If I remove the card, we don't kill off dhclient. If I boot without the card, and then insert it later, I do NOT get dhclient starting. I modified

Re: Question about genassym, locore.s and 0-sized arrays(showstopper for an icc compiled kernel)

2003-09-05 Thread Marcel Moolenaar
On Fri, Sep 05, 2003 at 10:55:07AM +0200, Alexander Leidinger wrote: It does, according to my reading of it. They may have an issue with dead code removal or element aliasing. The way to find out would be to see what they emit for []... 0 lenth, or 1? % icc.c char array[]; % nm

atapicam0: timeout waiting for ATAPI ready (5.1-CURRENT, IBM T30)

2003-09-05 Thread Lee Damon
Yesterday's cvsup'd and compiled kernel hung at acd0: CDRW UJDA720 DVD/CDRW at ata1-master UDMA33 atapicam0: timeout waiting for ATAPI ready (5.1-current, IBM T30) I waited until today and did another cvsup, same problem. What I expect to see is: acd0: CDRW UJDA720

Re: config(8) KERNEL setting

2003-09-05 Thread Daniel C. Sobral
Doug White wrote: On Thu, 4 Sep 2003, John Birrell wrote: however kern.post.mk only uses KERNEL_KO, so even though config(8) has set KERNEL for me, that name only gets used for the boot directory. There doesn't seem to be any way of getting KERNEL_KO set from the kernel config file. If you

Re: 3C940 / Asus P4P800 gigabit LAN driver

2003-09-05 Thread Stuart Walsh
On Mon Aug 25, 11:11P -0500, Glenn Johnson wrote: Hi again chaps, I've been working on other things lately, including getting ready to move house and looking after my 3 month old daughter :) but recently I've took up trying to get this driver working again. If anyone is interested in helping

Re: devd *NOT* called on wi0 insert?

2003-09-05 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Larry Rosenman [EMAIL PROTECTED] writes: : I have a (within the week) -CURRENT system. If I boot with my Linksys : WPC11 V.3 card inserted : I get the dhcp actions and all is fine. If I remove the card, we don't : kill off dhclient. : : If I boot

Re: devd *NOT* called on wi0 insert?

2003-09-05 Thread Larry Rosenman
--On Friday, September 05, 2003 13:30:03 -0600 M. Warner Losh [EMAIL PROTECTED] wrote: In message: [EMAIL PROTECTED] Larry Rosenman [EMAIL PROTECTED] writes: : I have a (within the week) -CURRENT system. If I boot with my Linksys : WPC11 V.3 card inserted : I get the dhcp actions

rpc.ypxfrd(8)

2003-09-05 Thread Ruslan Ermilov
Is there anybody out there who successfully uses the rpc.ypxfrd(8) server to speed up distribution of NIS maps, either on 4.x or 5.x? I have trouble getting it to work. Cheers, -- Ruslan Ermilov Sysadmin and DBA, [EMAIL PROTECTED] Sunbay Software Ltd, [EMAIL PROTECTED]

Re: devd *NOT* called on wi0 insert?

2003-09-05 Thread Larry Rosenman
--On Friday, September 05, 2003 14:37:39 -0500 Larry Rosenman [EMAIL PROTECTED] wrote: --On Friday, September 05, 2003 13:30:03 -0600 M. Warner Losh [EMAIL PROTECTED] wrote: I do have pccard_ifconfig=DHCP in my rc.conf. Aha! I added this, and it now works(tm). Although I'd like to tell it

Re: devd *NOT* called on wi0 insert?

2003-09-05 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Larry Rosenman [EMAIL PROTECTED] writes: : : : --On Friday, September 05, 2003 14:37:39 -0500 Larry Rosenman : [EMAIL PROTECTED] wrote: : : : : --On Friday, September 05, 2003 13:30:03 -0600 M. Warner Losh : [EMAIL PROTECTED] wrote: : : : I do

Re: devd *NOT* called on wi0 insert?

2003-09-05 Thread Larry Rosenman
--On Friday, September 05, 2003 14:37:04 -0600 M. Warner Losh [EMAIL PROTECTED] wrote: In message: [EMAIL PROTECTED] Larry Rosenman [EMAIL PROTECTED] writes: : : : --On Friday, September 05, 2003 14:37:39 -0500 Larry Rosenman : [EMAIL PROTECTED] wrote: : : : : --On Friday,

Re: 3C940 / Asus P4P800 gigabit LAN driver

2003-09-05 Thread Wilko Bulte
On Fri, Sep 05, 2003 at 07:50:24PM +0100, Stuart Walsh wrote: On Mon Aug 25, 11:11P -0500, Glenn Johnson wrote: Hi again chaps, I've been working on other things lately, including getting ready to move house and looking after my 3 month old daughter :) but recently I've Changing nappies?

Re: rpc.ypxfrd(8)

2003-09-05 Thread Dan Nelson
In the last episode (Sep 05), Ruslan Ermilov said: Is there anybody out there who successfully uses the rpc.ypxfrd(8) server to speed up distribution of NIS maps, either on 4.x or 5.x? I have trouble getting it to work. Seems to work for me, although it might be failing and falling back to a

Re: New kernels won't boot

2003-09-05 Thread Doug White
On Fri, 5 Sep 2003, Lukas Ertl wrote: vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0 Timecounter TSC frequency 2387622296 Hz quality 800 Timecounters tick every 10.000 msec And then... silence. Any ideas? My sources indicate that you should try upgrading the system

Re: rpc.ypxfrd(8)

2003-09-05 Thread horio shoichi
On Fri, 5 Sep 2003 22:47:02 +0300 Ruslan Ermilov [EMAIL PROTECTED] wrote: Is there anybody out there who successfully uses the rpc.ypxfrd(8) server to speed up distribution of NIS maps, either on 4.x or 5.x? I have trouble getting it to work. Cheers, -- Ruslan Ermilov

Lock order reversal

2003-09-05 Thread Dave Rand
Has anyone seen this before? Sep 5 15:06:02 rdaver kernel: lock order reversal Sep 5 15:06:02 rdaver kernel: 1st 0xcf33ba34 filedesc structure (filedesc structure) @ kern/sys_generic.c:895 Sep 5 15:06:02 rdaver kernel: 2nd 0xc054c640 Giant (Giant) @ fs/specfs/spec_vnops.c:372 I've been

HEADS UP/STATUS: network locking

2003-09-05 Thread Sam Leffler
I've committed a number of changes to lock the middlware parts of the network subsystem. There's still more to come; I'm moving slowly to insure each batch gets exposure. All the pending changes can be found at: http://www.freebsd.org/~sam The major changes that will go in next week are:

device_probe_and_attach: atkbd0 attach returned 6

2003-09-05 Thread peter
Hey, I saw this post on http://lists.freebsd.org/pipermail/freebsd-current/2003-May/002982.html on Mon May 12 22:36:58 PDT 2003. I am having problems with my nic card. I also got the device_probe_and_attach: atkbd0 attach returned 6 exept, of course, mine was with the nic card - not the

Kernel Panic, Trap 12

2003-09-05 Thread Remi L.
I am experiences some difficulty upgrading from 5.1-RELEASE to -CURRENT. I have a Sony VAIO GRX570(P4 1.6GHz, 512MB, DVDROM/CD-RW). I installed 5.1-R and CVSup'd -CURRENT, did I make world, with no problems. On reboot I get: Fatal trap 12: page fault while in kernel mode Fault virtual address=

Re: device_probe_and_attach: atkbd0 attach returned 6

2003-09-05 Thread Paul Murphy
On Fri, 5 Sep 2003 20:55:39 -0700 peter [EMAIL PROTECTED] wrote: Hey, I saw this post on http://lists.freebsd.org/pipermail/freebsd-current/2003-May/002982.html on Mon May 12 22:36:58 PDT 2003. I am having problems with my nic card. I also got the device_probe_and_attach: atkbd0 attach

Important changes to the .org tld today. (fwd)

2003-09-05 Thread Doug Barton
FYI, Doug -- Forwarded message -- Date: Fri, 05 Sep 2003 06:03:15 -0700 From: Rodney Joffe [EMAIL PROTECTED] Organization: UltraDNS Corp Subject: Important changes to the .org tld today. -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 During the root zone (.) update later