Problems with QLogic 2312 FC controller on FreeBSD 4.11 stable

2006-08-09 Thread Erik P. Ostlyngen
Hi, I'm struggling to get a QLogic 2312 FC controller to work with a FreeBSD 4.11 server after upgrading to the latest stable code in cvs. My server, an IBM-x336, is connected with fiber channel to a Nexsan SATABlade using the QLogic 2312 FC controller. I've been running 4.11-RELEASE for a while

GEOM stacking

2006-08-09 Thread Václav Haisman
Hi, I have a running gmirror. Somewhere in its docs there is a mentioning about writing meta data to the last sector of a disk. Now, I would like to add PJD's gjournal journaling on top of the mirror. As far as I understand, it does write some meta data to the last sector of the journaled device,

Re: RE: Re: Re: bce0: Error mapping mbuf into TX chain!

2006-08-09 Thread Scott Wilson
Hi Dave, On 8/7/06, David (Controller AE) Christensen [EMAIL PROTECTED] wrote: Scott, What are you doing when this problem occurs? Is it something I can easily duplicate here? When I tested the fix on -CURRENT I used the following command suggested by Doug to bring out the failure quickly:

Re: RE: Re: Re: bce0: Error mapping mbuf into TX chain!

2006-08-09 Thread Scott Wilson
On 8/8/06, David (Controller AE) Christensen [EMAIL PROTECTED] wrote: Since BCE_MAX_SEGMENTS is too small I guess it will happen on highly fragmented packets under heavy loads. To simulate the situation you can use m_fragment(9) to fragment the frame in bce_tx_encap(). With m_fragment(9),

Device conflict 3ware twe and CMedia sound card

2006-08-09 Thread Dominic Marks
Hello, I seem to have a device conflict on my desktop. When attempting to fsck a gstripe volume attached via the twe card the system becomes 'choppy' and from looking at systat (when it isn't frozen) the system is receiving about 300k interrupts per second from the pcm device. If I leave the

Re: Stop in buildworld under RELENG_4

2006-08-09 Thread Kris Kennaway
On Tue, Aug 08, 2006 at 07:59:41PM -0400, Eric Millbrandt wrote: Is buildworld broken under RELENG_4. No. I made sure to start out with a clean buildtree and to delete /usr/obj. Here is the stop and attached is the entire script. DING! [EMAIL PROTECTED]:/usr/src# uname -a FreeBSD

Re: RE: Re: Re: bce0: Error mapping mbuf into TX chain!

2006-08-09 Thread Pyun YongHyeon
On Wed, Aug 09, 2006 at 11:02:37AM +0200, Scott Wilson wrote: On 8/8/06, David (Controller AE) Christensen [EMAIL PROTECTED] wrote: Since BCE_MAX_SEGMENTS is too small I guess it will happen on highly fragmented packets under heavy loads. To simulate the situation you can use

Network often not responding

2006-08-09 Thread Akhmad Sakirun
Hello, I have squid cache server using: MB Tyan Tiger K8W/S2875 Dual Opteron 246 4 GB DDR, connected to cisco catalyst. Freebsd AMD64 6.1-Stable sometimes network down and up again on uncertain condition i've tried change network card and disable onboadr gigabit ethernet, work good for a days

gzip is faster with -O3

2006-08-09 Thread Nikolas Britton
dd if=/dev/random of=testfile bs=1m count=5000 gzip compiled with -O3: # date ; nice -10 ./gzip -c9 testfile testfile.gz ; date Wed Aug 9 08:01:21 CDT 2006 Wed Aug 9 08:09:06 CDT 2006 465 Seconds. gzip compiled with -O2: # date ; nice -10 ./gzip -c9 testfile testfile.gz ; date Wed Aug 9

Re: gzip is faster with -O3

2006-08-09 Thread Matthias Andree
Nikolas Britton [EMAIL PROTECTED] writes: dd if=/dev/random of=testfile bs=1m count=5000 1. gzip isn't usually used to compress incompressible data. 2. use time to figure out how much CPU time it actually burns. 5 GB are somewhat I/O bound, but gcc options don't help with that, so CPU

problems getting RAID1 to work with SiI 0680 UDMA133 controller

2006-08-09 Thread Lasse Edlund
I have this ultra ata IDE controller card that I try to use with RAID1, Both the harddrives I intend to use, ad6 ad4 are working, fsck gives no errors and I can read/write on them. I have setup raid1 on these in the bios utility for the ata controller card. but now It says one of them is down!

Re: gzip is faster with -O3

2006-08-09 Thread [LoN]Kamikaze
Nikolas Britton wrote: dd if=/dev/random of=testfile bs=1m count=5000 gzip compiled with -O3: # date ; nice -10 ./gzip -c9 testfile testfile.gz ; date Wed Aug 9 08:01:21 CDT 2006 Wed Aug 9 08:09:06 CDT 2006 465 Seconds. gzip compiled with -O2: # date ; nice -10 ./gzip -c9 testfile

Re: Network often not responding

2006-08-09 Thread Stanislaw Halik
On Wed, Aug 09, 2006, Dominic Marks wrote: Aug 9 15:09:16 cache kernel: xl0: transmission error: 90 Aug 9 15:09:16 cache kernel: xl0: tx underrun, increasing tx start threshold to 120 bytes dc%d: TX underrun -- increasing TX threshold The device generated a transmit underrun error while

Re: GEOM stacking

2006-08-09 Thread Ivan Voras
Václav Haisman wrote: journaled device, too. Will it overwrite the gmirror meta data and thus break the mirror or will it somehow magically work? Does each GEOM layer make the resulting block device one sector shorter? No, when you create a mirror device, its size will be one sector less

Re: Device conflict 3ware twe and CMedia sound card

2006-08-09 Thread John Baldwin
On Wednesday 09 August 2006 06:15, Dominic Marks wrote: Hello, I seem to have a device conflict on my desktop. When attempting to fsck a gstripe volume attached via the twe card the system becomes 'choppy' and from looking at systat (when it isn't frozen) the system is receiving about

Re: Problems with QLogic 2312 FC controller on FreeBSD 4.11 stable

2006-08-09 Thread Matthew Jacob
working with Erik on this now... ___ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: gzip is faster with -O3

2006-08-09 Thread Nikolas Britton
On 8/9/06, Matthias Andree [EMAIL PROTECTED] wrote: 1. gzip isn't usually used to compress incompressible data. 2. use time to figure out how much CPU time it actually burns. 5 GB are somewhat I/O bound, but gcc options don't help with that, so CPU time is better than wallclock time.

Re: gzip is faster with -O3

2006-08-09 Thread Brooks Davis
On Wed, Aug 09, 2006 at 05:31:58PM -0500, Nikolas Britton wrote: On 8/9/06, Matthias Andree [EMAIL PROTECTED] wrote: 1. gzip isn't usually used to compress incompressible data. 2. use time to figure out how much CPU time it actually burns. 5 GB are somewhat I/O bound, but gcc options

Re: Network often not responding

2006-08-09 Thread Akhmad Sakirun
Hello, right now, i'm using 3com ethernet: xl0: 3Com 3c905B-TX Fast Etherlink XL port 0xa880-0xa8ff mem 0xfeafec00-0xfeafec7f irq 19 at device 7.0 on pci2 miibus0: MII bus on xl0 xlphy0: 3Com internal media interface on miibus0 xlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto xl0:

error: syntax error before _X_SENTINEL

2006-08-09 Thread Chris H.
Hello, I just recenlly found that I am almost always unable to build X (Xorg) related applications on a 5.5 box that has pretty recent source. The applications all die during the make process with the following error: error: syntax error before _X_SENTINEL Any to fix this? Googling indicates that

Re: Dell Server 2900 with the new Intel processor Woodcrest

2006-08-09 Thread Michael Vince
[EMAIL PROTECTED] wrote: Thomas Agersborg wrote: I want to purchase a Dell Server 2900 with these specifications ... Dual-Core 64-bit Intel Xeon processor 5160 ... 4GB (4x1GB) 667MHz FBD memory (max 32GB) ... is there any issues which I need to be aware of in regard to the server

Re: error: syntax error before _X_SENTINEL

2006-08-09 Thread Mark Kirkwood
Chris H. wrote: Hello, I just recenlly found that I am almost always unable to build X (Xorg) related applications on a 5.5 box that has pretty recent source. The applications all die during the make process with the following error: error: syntax error before _X_SENTINEL Any to fix this?

boot problem with ACPI disabled

2006-08-09 Thread Ganbold
Hi, I've got fatal trap on Dell D620 laptop when I tried to boot with ACPI disabled. Kernel compiled with APIC and SMP options. GDB: no debug ports present KDB: debugger backends: ddb KDB: current backend: ddb Copyright (c) 1992-2006 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986,

Re: Network often not responding

2006-08-09 Thread Pyun YongHyeon
On Thu, Aug 10, 2006 at 08:18:23AM +0700, Akhmad Sakirun wrote: Hello, right now, i'm using 3com ethernet: xl0: 3Com 3c905B-TX Fast Etherlink XL port 0xa880-0xa8ff mem 0xfeafec00-0xfeafec7f irq 19 at device 7.0 on pci2 miibus0: MII bus on xl0 xlphy0: 3Com internal media interface

Re: error: syntax error before _X_SENTINEL

2006-08-09 Thread Chris H.
Hello Mark, and thank you for your prompt reply. Quoting Mark Kirkwood [EMAIL PROTECTED]: Chris H. wrote: Hello, I just recenlly found that I am almost always unable to build X (Xorg) related applications on a 5.5 box that has pretty recent source. The applications all die during the make

Re: error: syntax error before _X_SENTINEL

2006-08-09 Thread Norberto Meijome
On Wed, 09 Aug 2006 21:24:36 -0700 Chris H. [EMAIL PROTECTED] wrote: Hello Mark, and thank you for your prompt reply. Quoting Mark Kirkwood [EMAIL PROTECTED]: Chris H. wrote: Hello, I just recenlly found that I am almost always unable to build X (Xorg) related applications on a 5.5