Re: Upgrade 9.1 - 9.2 Invalid format / BTX halted

2013-10-03 Thread Thomas Krause
I found, that freebsd-update install doesn't upgrade all files in /boot. At least the loader binary was zero: ls -lh boot/loader* -r-xr-xr-x 1 tom wheel 0B Oct 2 22:54 loader -r--r--r-- 1 tom wheel 0B Oct 2 22:54 loader.4th -rw-r--r-- 1 tom wheel15B Jun 5 2012 loader.conf

Build failure for 9.2-RELEASE

2013-10-03 Thread Thomas Mueller
I failed with make buildworld on 9.2, building from a 9.2 prerelease. svn revision on system to be built was 255986. uname -a shows FreeBSD amelia2 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #17 r254196: Sun Aug 11 00:36:49 UTC 2013 root@amelia2:/usr/obj/usr/src/sys/SANDY amd64 I had

mps in GENERIC in FreeBSD 9.2R i386

2013-10-03 Thread Joe Greco
Did nobody ever verify this for Ken? On Mon, Oct 01, 2012 at 23:38:33 +0530, Desai, Kashyap wrote: -Original Message- From: owner-freebsd-stable at freebsd.org [mailto:owner-freebsd- stable at freebsd.org] On Behalf Of Kenneth D. Merry Sent: Monday, October 01, 2012

Device timeout from mfi(9) while booting 9.2-RELEASE

2013-10-03 Thread Ryan Stone
We're having trouble booting 9.2-RELEASE on a system with an mfi (Drake Skinny) controller. When it tries to mount root we get: mfi0: COMMAND 0xff8000cb7220 TIMEOUT AFTER 59 SECONDS mfi0: COMMAND 0xff8000cb72a8 TIMEOUT AFTER 60 SECONDS mfi0: COMMAND 0xff8000cb7220 TIMEOUT AFTER 90

Re: Upgrade 9.1 - 9.2 Invalid format / BTX halted

2013-10-03 Thread Boris Samorodov
03.10.2013 11:43, Thomas Krause пишет: I found, that freebsd-update install doesn't upgrade all files in /boot. At least the loader binary was zero: ls -lh boot/loader* -r-xr-xr-x 1 tom wheel 0B Oct 2 22:54 loader -r--r--r-- 1 tom wheel 0B Oct 2 22:54 loader.4th -rw-r--r--

ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Rumen Telbizov
Hello everyone, I am trying to tweak some of the sysctl tunables for the ix (ixgbe) driver in FreeBSD 9.2 since I am experiencing less than ideal performance and it seems like I can't find any: # sysctl -a | grep -i ixgbe deviceixgbe I am running 9.2-RC4. Any input appreciated. Thanks, --

Re: Device timeout from mfi(9) while booting 9.2-RELEASE

2013-10-03 Thread Konstantin Belousov
On Thu, Oct 03, 2013 at 11:50:15AM -0400, Ryan Stone wrote: We're having trouble booting 9.2-RELEASE on a system with an mfi (Drake Skinny) controller. When it tries to mount root we get: mfi0: COMMAND 0xff8000cb7220 TIMEOUT AFTER 59 SECONDS mfi0: COMMAND 0xff8000cb72a8 TIMEOUT

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Jack Vogel
sysctl dev.ix.0 etc... Jack On Thu, Oct 3, 2013 at 12:35 PM, Rumen Telbizov telbi...@gmail.com wrote: Hello everyone, I am trying to tweak some of the sysctl tunables for the ix (ixgbe) driver in FreeBSD 9.2 since I am experiencing less than ideal performance and it seems like I can't

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Rumen Telbizov
Thanks Jack, So I am running a couple of FreeBSD machines with those and they are in LACP pair plus vlans on top of them. When I run iperf between the two I get about about 1.7Gbit/s with 1 thread and I max out around 4.5-5Gbp/s with 6-8 multiple parallel threads (tried both UDP and TCP). What

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Jack Vogel
Make sure you are in slots with enough lanes/bandwidth, the driver should complain when loaded if you aren't though. Make sure you aren't getting interrupts throttled, and that you have sufficient mbuf resources so you aren't waiting on those, that can make a BIG difference. Jack On Thu, Oct

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Rumen Telbizov
Jack, Thanks for the hints. I checked that the card is inserted into PCIe v3.0 x16 + I get no complaints from the driver. I checked for interrupt throttling messages in the logs - found nothing. I also set hw.intr_storm_threshold: 1 then I saw hw.igb.max_interrupt_rate: 8000 and figured that

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Jack Vogel
Set the storm threshold to 0, that way you disable the check and don't have to wonder if its a problem :) Given everything you've told me I'd suspect the switch... easy enough to test, remove it from the equation, run two systems back-to-back and see how that effects the numbers. Jack On Thu,

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Rumen Telbizov
Thanks Jack, The switch/lacp is where I was shifting my focus to. Unfortunately it's a remote site and it'll take some time before I can take it out of the picture so I figured I might ask you first ;) I'll report back here when I have more information. Thanks for your feedback. Highly

Re: Build failure for 9.2-RELEASE

2013-10-03 Thread Rick Macklem
Thomas Mueller wrote: I failed with make buildworld on 9.2, building from a 9.2 prerelease. svn revision on system to be built was 255986. uname -a shows FreeBSD amelia2 9.2-PRERELEASE FreeBSD 9.2-PRERELEASE #17 r254196: Sun Aug 11 00:36:49 UTC 2013

Re: Device timeout from mfi(9) while booting 9.2-RELEASE

2013-10-03 Thread Jan Mikkelsen
Hi, We have Drake Skinny (9240-4i and 9240-8i) cards running, most recently with 9.2-RC4. We'll be testing 9.2-RELEASE in the next week or two. We have seen problems with older versions of the firmware, and interactions with some Supermicro BIOS versions. All these problems have been resolved

Re: ixgbe/ix sysctl missing in FreeBSD 9.2

2013-10-03 Thread Adrian Chadd
There's an LACP knob that ignores doing the LACP hash if the mbuf has a flowid. Find that knob and set it to 0. Then, retry. -a On 3 October 2013 15:24, Rumen Telbizov telbi...@gmail.com wrote: Jack, Thanks for the hints. I checked that the card is inserted into PCIe v3.0 x16 + I get no

Re: Device timeout from mfi(9) while booting 9.2-RELEASE

2013-10-03 Thread Konstantin Belousov
On Fri, Oct 04, 2013 at 11:23:45AM +1000, Jan Mikkelsen wrote: Hi, We have Drake Skinny (9240-4i and 9240-8i) cards running, most recently with 9.2-RC4. We'll be testing 9.2-RELEASE in the next week or two. We have seen problems with older versions of the firmware, and interactions with

Re: Device timeout from mfi(9) while booting 9.2-RELEASE

2013-10-03 Thread Jan Mikkelsen
We have Drake Skinny (9240-4i and 9240-8i) cards running, most recently with 9.2-RC4. We'll be testing 9.2-RELEASE in the next week or two. We have seen problems with older versions of the firmware, and interactions with some Supermicro BIOS versions. All these problems have been resolved