Re: mfi timeouts

2013-02-27 Thread Steven Hartland
- Original Message - 
From: rihad ri...@mail.ru


Did the patch help? We're having the same issues  running mfiutil 
show volumes every minute doesn't make the freezes go away.

Will this small patch be ok on 8.2-RELEASE-p4? Thanks.


I'm about to commit a major patch to mfi, which many problems with the
current driver. Given info in that PR it could well fix this problem.

Unfortunately due to the number of changes, its likely to sit in head 
for a

while before it gets MFC, just to be safe.

We've been running it on 8.3-RELEASE on top of the driver from head for
some months and not issues so far. So if anyone is interested in a
patchset for that I'll be able to provide.

I'll post a link to the commit when I'm done.



Thanks, if the trivial dummy read proves insufficient, sure I'll need to 
look into that :) Thanks.


Ok patch is in; two parts the second as I mentioned its a bit of
monster I'm afraid.
http://svnweb.freebsd.org/base?view=revisionrevision=247367
http://svnweb.freebsd.org/base?view=revisionrevision=247369

With the exception of the recent busdma changes:
http://svnweb.freebsd.org/base?view=revisionrevision=246713
the entire driver back ports trivially to 8 so should be
good with 9 too.

   Regards
   Steve


This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. 


In the event of misdirection, illegible or incomplete transmission please 
telephone +44 845 868 1337
or return the E.mail to postmas...@multiplay.co.uk.

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: mfi timeouts

2013-02-27 Thread John Baldwin
On Wednesday, February 27, 2013 12:58:11 am rihad wrote:
 Now about this part taken from here 
 http://lists.freebsd.org/pipermail/freebsd-scsi/2011-March/004839.html
   By issuing a dummy read operation (thus forcing a flush of data 
 buffers), this issue is largely averted.
 
 Does this mean that battery-backed cache (BBU) is effectively rendered 
 useless, as all write operations are forced on to the disk platters on 
 every interrupt?

No, this is a very different level.  This is forcing pending PCI DMA 
transactions on the PCI bus to flush by doing a read, not forcing I/O
buffers to be flushed to disk.

-- 
John Baldwin
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


rc.d/sysctl fails to parse sysctl.conf

2013-02-27 Thread Andreas Nilsson
Hello,

I tried to get my sound working, and long story short: rc.d/sysctl parses
sysctl.conf wrongly if there are sysctls of the form

mib=val1=val2

which is what you need for sound. For reference I needed/wanted

dev.hdaa.4.nid25_config=as=1,seq=15
dev.hdaa.4.nid31_config=as=1

I believe the following patch would address the incorrect parsing:

--- /etc/rc.d/sysctl.old2013-02-27 22:00:00.0 +0100
+++ /etc/rc.d/sysctl2013-02-27 22:05:24.0 +0100
@@ -26,7 +26,7 @@
\#*|'')
;;
*)
-   mib=${var%=*}
+   mib=${var%%=*}
val=${var#*=}

if current_value=`${SYSCTL} -n ${mib}
2/dev/null`; then


Best regards
Andreas
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: rc.d/sysctl fails to parse sysctl.conf

2013-02-27 Thread Chris Rees
On 27 February 2013 21:19, Andreas Nilsson andrn...@gmail.com wrote:
 Hello,

 I tried to get my sound working, and long story short: rc.d/sysctl parses
 sysctl.conf wrongly if there are sysctls of the form

 mib=val1=val2

 which is what you need for sound. For reference I needed/wanted

 dev.hdaa.4.nid25_config=as=1,seq=15
 dev.hdaa.4.nid31_config=as=1

 I believe the following patch would address the incorrect parsing:

 --- /etc/rc.d/sysctl.old2013-02-27 22:00:00.0 +0100
 +++ /etc/rc.d/sysctl2013-02-27 22:05:24.0 +0100
 @@ -26,7 +26,7 @@
 \#*|'')
 ;;
 *)
 -   mib=${var%=*}
 +   mib=${var%%=*}
 val=${var#*=}

 if current_value=`${SYSCTL} -n ${mib}
 2/dev/null`; then

I think that this is the right thing to do here.

Chris
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Building RELENG_9 (or RELENG_9_*) on a small machine?

2013-02-27 Thread Darren Pilgrim
So I have this VM which only has 256 MB of memory and 9.1-R installed. 
I want to update it to RELENG_9, but buildworld swaps so bad it grinds 
nearly to a halt.  Even make -j1 -B runs into very heavy swapping.  So 
two questions:


1. Is there anything I can do to set a limit on how much memory the 
compiler uses?


2. If I crossbuild for this machine, can I get away with doing 
buildworld on a buildbox, ship the obj tree, and do installworld and 
mergemaster on the VM?  It's been a few enternities since I did a cross 
build and back then it was crossbuilding releases.

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: Building RELENG_9 (or RELENG_9_*) on a small machine?

2013-02-27 Thread Glen Barber
On Wed, Feb 27, 2013 at 05:41:17PM -0800, Darren Pilgrim wrote:
 So I have this VM which only has 256 MB of memory and 9.1-R installed. 
 I want to update it to RELENG_9, but buildworld swaps so bad it grinds 
 nearly to a halt.  Even make -j1 -B runs into very heavy swapping.  So 
 two questions:
 
 1. Is there anything I can do to set a limit on how much memory the 
 compiler uses?
 

You can disable building clang with this line in /etc/src.conf:

WITHOUT_CLANG=yes

 2. If I crossbuild for this machine, can I get away with doing 
 buildworld on a buildbox, ship the obj tree, and do installworld and 
 mergemaster on the VM?  It's been a few enternities since I did a cross 
 build and back then it was crossbuilding releases.

Yes, that should work.

Glen



pgpNucnb8tJbs.pgp
Description: PGP signature


[releng_8 tinderbox] failure on powerpc/powerpc

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 01:25:07 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 01:25:07 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 01:25:07 - starting RELENG_8 tinderbox run for powerpc/powerpc
TB --- 2013-02-28 01:25:07 - cleaning the object tree
TB --- 2013-02-28 01:25:07 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 01:25:07 - cd /tinderbox/RELENG_8/powerpc/powerpc
TB --- 2013-02-28 01:25:07 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 01:25:15 - /usr/local/bin/svn update /src
TB --- 2013-02-28 01:25:22 - building world
TB --- 2013-02-28 01:25:22 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 01:25:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 01:25:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 01:25:22 - SRCCONF=/dev/null
TB --- 2013-02-28 01:25:22 - TARGET=powerpc
TB --- 2013-02-28 01:25:22 - TARGET_ARCH=powerpc
TB --- 2013-02-28 01:25:22 - TZ=UTC
TB --- 2013-02-28 01:25:22 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 01:25:22 - cd /src
TB --- 2013-02-28 01:25:22 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 01:25:22 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 02:09:32 UTC 2013
TB --- 2013-02-28 02:09:32 - generating LINT kernel config
TB --- 2013-02-28 02:09:32 - cd /src/sys/powerpc/conf
TB --- 2013-02-28 02:09:32 - /usr/bin/make -B LINT
TB --- 2013-02-28 02:09:32 - cd /src/sys/powerpc/conf
TB --- 2013-02-28 02:09:32 - /usr/sbin/config -m LINT
TB --- 2013-02-28 02:09:32 - building LINT kernel
TB --- 2013-02-28 02:09:32 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 02:09:32 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 02:09:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 02:09:32 - SRCCONF=/dev/null
TB --- 2013-02-28 02:09:32 - TARGET=powerpc
TB --- 2013-02-28 02:09:32 - TARGET_ARCH=powerpc
TB --- 2013-02-28 02:09:32 - TZ=UTC
TB --- 2013-02-28 02:09:32 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 02:09:32 - cd /src
TB --- 2013-02-28 02:09:32 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 02:09:32 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/powerpc/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 02:12:24 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 02:12:24 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 02:12:24 - 2405.71 user 414.98 system 2837.04 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on sparc64/sparc64

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 01:31:52 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 01:31:52 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 01:31:52 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2013-02-28 01:31:52 - cleaning the object tree
TB --- 2013-02-28 01:31:52 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 01:31:52 - cd /tinderbox/RELENG_8/sparc64/sparc64
TB --- 2013-02-28 01:31:52 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 01:31:59 - /usr/local/bin/svn update /src
TB --- 2013-02-28 01:32:04 - building world
TB --- 2013-02-28 01:32:04 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 01:32:04 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 01:32:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 01:32:04 - SRCCONF=/dev/null
TB --- 2013-02-28 01:32:04 - TARGET=sparc64
TB --- 2013-02-28 01:32:04 - TARGET_ARCH=sparc64
TB --- 2013-02-28 01:32:04 - TZ=UTC
TB --- 2013-02-28 01:32:04 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 01:32:04 - cd /src
TB --- 2013-02-28 01:32:04 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 01:32:04 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 02:13:36 UTC 2013
TB --- 2013-02-28 02:13:36 - generating LINT kernel config
TB --- 2013-02-28 02:13:36 - cd /src/sys/sparc64/conf
TB --- 2013-02-28 02:13:36 - /usr/bin/make -B LINT
TB --- 2013-02-28 02:13:36 - cd /src/sys/sparc64/conf
TB --- 2013-02-28 02:13:36 - /usr/sbin/config -m LINT
TB --- 2013-02-28 02:13:36 - building LINT kernel
TB --- 2013-02-28 02:13:36 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 02:13:36 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 02:13:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 02:13:36 - SRCCONF=/dev/null
TB --- 2013-02-28 02:13:36 - TARGET=sparc64
TB --- 2013-02-28 02:13:36 - TARGET_ARCH=sparc64
TB --- 2013-02-28 02:13:36 - TZ=UTC
TB --- 2013-02-28 02:13:36 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 02:13:36 - cd /src
TB --- 2013-02-28 02:13:36 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 02:13:36 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/sparc64/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 02:16:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 02:16:26 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 02:16:26 - 2273.77 user 402.33 system 2674.48 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: Building RELENG_9 (or RELENG_9_*) on a small machine?

2013-02-27 Thread Adrian Chadd
Hm, have you disabled that CAM target layer stuff at boot? It's likely
tying up some RAM.



Adrian
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: 9.1 minimal ram requirements

2013-02-27 Thread Adrian Chadd
Hi Ken,

I'd like to fix this for 9.2 and -HEAD.

Would you mind if I disabled CTL in GENERIC (but still build it as a
module) until you've fixed the initial RAM reservation that it
requires?

Thanks,



Adrian


On 22 December 2012 22:32, Adrian Chadd adr...@freebsd.org wrote:
 Ken,

 Does CAM CTL really need to pre-allocate 35MB of RAM at startup?



 Adrian

 On 22 December 2012 16:45, Sergey Kandaurov pluk...@gmail.com wrote:
 On 23 December 2012 03:40, Marten Vijn i...@martenvijn.nl wrote:
 On 12/23/2012 12:27 AM, Jakub Lach wrote:

 Guys, I've heard about some absurd RAM requirements
 for 9.1, has anybody tested it?

 e.g.

 http://forums.freebsd.org/showthread.php?t=36314


 jup, I can comfirm this with nanobsd (cross) compiled
 for my soekris net4501 which has 64 MB mem:

 from dmesg: real memory  = 67108864 (64 MB)

 while the same config compiled against a 9.0 tree still works...


 This (i.e. the kmem_map too small message seen with kernel memory
 shortage) could be due to CAM CTL ('device ctl' added in 9.1), which is
 quite a big kernel memory consumer.
 Try to disable CTL in loader with kern.cam.ctl.disable=1 to finish boot.
 A longer term workaround could be to postpone those memory allocations
 until the first call to CTL.

 # cam ctl init allocates roughly 35 MB of kernel memory at once
 # three memory pools, somewhat under M_DEVBUF, and memory disk
 # devbuf takes 1022K with kern.cam.ctl.disable=1

  Type InUse MemUse HighUse Requests  Size(s)
devbuf   213 20366K   -  265  
 16,32,64,128,256,512,1024,2048,4096
ctlmem  5062 10113K   - 5062  64,2048
ctlblk   200   800K   -  200  4096
   ramdisk 1  4096K   -1
   ctlpool   532   138K   -  532  16,512

 --
 wbr,
 pluknet
 ___
 freebsd-stable@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-stable
 To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: IBM xSeries 336 dual Xeon hangs on boot when APIC enabled

2013-02-27 Thread idexbsd
I tried to install FreeBSD 9.1 AMD64 and i386 freebsd 9.1 in an IBM
xSeries 366 machine, but when the first blue screen with the install
shell or LiveCD, the screen freezes and I have to restart

Freebsd forum told me I had to update the bios and then do this (1.13 to
1.17) try again ... but the result is still the same.

I guess the installer needs to read some of the hard drive and unable to do
this the system will stop. (This machine is implemented on RAID 1, has
something to do that?)

Please I need your help ... what else I can do?



--
View this message in context: 
http://freebsd.1045724.n5.nabble.com/IBM-xSeries-336-dual-Xeon-hangs-on-boot-when-APIC-enabled-tp3941669p5791173.html
Sent from the freebsd-stable mailing list archive at Nabble.com.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: IPMI serial console

2013-02-27 Thread Daniel O'Connor

On 23/02/2013, at 24:36, Paul Mather p...@gromit.dlib.vt.edu wrote:
 boot_multicons=YES
 hint.uart.0.flags=0x0
 hint.uart.2.at=isa
 hint.uart.2.port=0x3E8
 #hint.uart.2.disabled=0
 hint.uart.2.flags=0x30
 =

I updated the BIOS  IPMI fiwmare and now it works. Thanks!

Interestingly if you don't have hint.uart.0.flags=0x0 then it goes weird and 
stuff comes out the video console at 1bps..

And it seems to pick uart.0 as the console even though I also put 
comconsole_port in there. So it seems that for 9.1 at least comconsole_port 
doesn't DTRT. I commented it out but left the rest of the UART hints and things 
still worked.

 I don't know whether all of that is needed, but, as you can see from the 
 various commented-out lines, it was a configuration I arrived at that 
 works. :-)

Yep, thanks again for taking the time as it works for me too.

 Usually, I have the VGA console take precedence.  In that case, I get 
 messages on both the VGA console and the IPMI SOL console during the BIOS 
 screen, loader, and kernel boot messages but then only messages on the VGA 
 console during the rc.d boot phase.  I have a serial console enabled in 
 /etc/ttys, so I get output (e.g., getty login) on the IPMI SOL when that is 
 eventually spawned.  If I want to have the serial 
 console take precedence, I usually escape to the loader prompt (via ESC at 
 the loader menu) and issue a set console=comconsole,vidconsole command.  
 Then, the rc.d boot output goes to the serial console and not the VGA 
 console.  (It would be nice to have rc.d init scripts output go to both 
 consoles, but I don't know whether that is possible.)

I guess the rc.d stuff goes out to whatever device is the nominal console, 
rather than to the logical console which then splits the output to all of the 
physical devices attached to it.

--
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
The nice thing about standards is that there
are so many of them to choose from.
  -- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C






___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on i386/pc98

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:00:56 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:00:57 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:00:57 - starting RELENG_8 tinderbox run for i386/pc98
TB --- 2013-02-28 04:00:57 - cleaning the object tree
TB --- 2013-02-28 04:00:57 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:00:57 - cd /tinderbox/RELENG_8/i386/pc98
TB --- 2013-02-28 04:00:57 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:01:08 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:01:15 - building world
TB --- 2013-02-28 04:01:15 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:01:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:01:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:01:15 - SRCCONF=/dev/null
TB --- 2013-02-28 04:01:15 - TARGET=pc98
TB --- 2013-02-28 04:01:15 - TARGET_ARCH=i386
TB --- 2013-02-28 04:01:15 - TZ=UTC
TB --- 2013-02-28 04:01:15 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:01:15 - cd /src
TB --- 2013-02-28 04:01:15 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:01:15 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 04:46:15 UTC 2013
TB --- 2013-02-28 04:46:15 - generating LINT kernel config
TB --- 2013-02-28 04:46:15 - cd /src/sys/pc98/conf
TB --- 2013-02-28 04:46:15 - /usr/bin/make -B LINT
TB --- 2013-02-28 04:46:16 - cd /src/sys/pc98/conf
TB --- 2013-02-28 04:46:16 - /usr/sbin/config -m LINT
TB --- 2013-02-28 04:46:16 - building LINT kernel
TB --- 2013-02-28 04:46:16 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:46:16 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:46:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:46:16 - SRCCONF=/dev/null
TB --- 2013-02-28 04:46:16 - TARGET=pc98
TB --- 2013-02-28 04:46:16 - TARGET_ARCH=i386
TB --- 2013-02-28 04:46:16 - TZ=UTC
TB --- 2013-02-28 04:46:16 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:46:16 - cd /src
TB --- 2013-02-28 04:46:16 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 04:46:16 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/pc98/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 04:49:53 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 04:49:53 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 04:49:53 - 2391.82 user 462.78 system 2936.43 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on i386/i386

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:00:56 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:00:57 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:00:57 - starting RELENG_8 tinderbox run for i386/i386
TB --- 2013-02-28 04:00:57 - cleaning the object tree
TB --- 2013-02-28 04:00:57 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:00:57 - cd /tinderbox/RELENG_8/i386/i386
TB --- 2013-02-28 04:00:57 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:01:08 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:01:15 - building world
TB --- 2013-02-28 04:01:15 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:01:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:01:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:01:15 - SRCCONF=/dev/null
TB --- 2013-02-28 04:01:15 - TARGET=i386
TB --- 2013-02-28 04:01:15 - TARGET_ARCH=i386
TB --- 2013-02-28 04:01:15 - TZ=UTC
TB --- 2013-02-28 04:01:15 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:01:15 - cd /src
TB --- 2013-02-28 04:01:15 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:01:15 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 04:46:39 UTC 2013
TB --- 2013-02-28 04:46:39 - generating LINT kernel config
TB --- 2013-02-28 04:46:39 - cd /src/sys/i386/conf
TB --- 2013-02-28 04:46:39 - /usr/bin/make -B LINT
TB --- 2013-02-28 04:46:39 - cd /src/sys/i386/conf
TB --- 2013-02-28 04:46:39 - /usr/sbin/config -m LINT
TB --- 2013-02-28 04:46:39 - building LINT kernel
TB --- 2013-02-28 04:46:39 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:46:39 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:46:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:46:39 - SRCCONF=/dev/null
TB --- 2013-02-28 04:46:39 - TARGET=i386
TB --- 2013-02-28 04:46:39 - TARGET_ARCH=i386
TB --- 2013-02-28 04:46:39 - TZ=UTC
TB --- 2013-02-28 04:46:39 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:46:39 - cd /src
TB --- 2013-02-28 04:46:39 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 04:46:39 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/i386/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 04:51:19 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 04:51:19 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 04:51:19 - 2471.50 user 463.08 system 3022.43 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on ia64/ia64

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:00:56 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:00:57 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:00:57 - starting RELENG_8 tinderbox run for ia64/ia64
TB --- 2013-02-28 04:00:57 - cleaning the object tree
TB --- 2013-02-28 04:00:57 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:00:57 - cd /tinderbox/RELENG_8/ia64/ia64
TB --- 2013-02-28 04:00:57 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:01:08 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:01:15 - building world
TB --- 2013-02-28 04:01:15 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:01:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:01:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:01:15 - SRCCONF=/dev/null
TB --- 2013-02-28 04:01:15 - TARGET=ia64
TB --- 2013-02-28 04:01:15 - TARGET_ARCH=ia64
TB --- 2013-02-28 04:01:15 - TZ=UTC
TB --- 2013-02-28 04:01:15 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:01:15 - cd /src
TB --- 2013-02-28 04:01:15 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:01:15 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 04:59:21 UTC 2013
TB --- 2013-02-28 04:59:21 - generating LINT kernel config
TB --- 2013-02-28 04:59:21 - cd /src/sys/ia64/conf
TB --- 2013-02-28 04:59:21 - /usr/bin/make -B LINT
TB --- 2013-02-28 04:59:21 - cd /src/sys/ia64/conf
TB --- 2013-02-28 04:59:21 - /usr/sbin/config -m LINT
TB --- 2013-02-28 04:59:21 - building LINT kernel
TB --- 2013-02-28 04:59:21 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:59:21 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:59:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:59:21 - SRCCONF=/dev/null
TB --- 2013-02-28 04:59:21 - TARGET=ia64
TB --- 2013-02-28 04:59:21 - TARGET_ARCH=ia64
TB --- 2013-02-28 04:59:21 - TZ=UTC
TB --- 2013-02-28 04:59:21 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:59:21 - cd /src
TB --- 2013-02-28 04:59:21 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 04:59:21 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/ia64/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 05:03:35 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 05:03:35 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 05:03:35 - 3219.02 user 476.90 system 3758.08 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on amd64/amd64

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:00:57 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:00:57 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:00:57 - starting RELENG_8 tinderbox run for amd64/amd64
TB --- 2013-02-28 04:00:57 - cleaning the object tree
TB --- 2013-02-28 04:00:57 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:00:57 - cd /tinderbox/RELENG_8/amd64/amd64
TB --- 2013-02-28 04:00:57 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:01:08 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:01:15 - building world
TB --- 2013-02-28 04:01:15 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:01:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:01:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:01:15 - SRCCONF=/dev/null
TB --- 2013-02-28 04:01:15 - TARGET=amd64
TB --- 2013-02-28 04:01:15 - TARGET_ARCH=amd64
TB --- 2013-02-28 04:01:15 - TZ=UTC
TB --- 2013-02-28 04:01:15 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:01:15 - cd /src
TB --- 2013-02-28 04:01:15 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:01:15 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 stage 5.1: building 32 bit shim libraries
 World build completed on Thu Feb 28 05:06:24 UTC 2013
TB --- 2013-02-28 05:06:24 - generating LINT kernel config
TB --- 2013-02-28 05:06:24 - cd /src/sys/amd64/conf
TB --- 2013-02-28 05:06:24 - /usr/bin/make -B LINT
TB --- 2013-02-28 05:06:24 - cd /src/sys/amd64/conf
TB --- 2013-02-28 05:06:24 - /usr/sbin/config -m LINT
TB --- 2013-02-28 05:06:24 - building LINT kernel
TB --- 2013-02-28 05:06:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 05:06:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 05:06:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 05:06:24 - SRCCONF=/dev/null
TB --- 2013-02-28 05:06:24 - TARGET=amd64
TB --- 2013-02-28 05:06:24 - TARGET_ARCH=amd64
TB --- 2013-02-28 05:06:24 - TZ=UTC
TB --- 2013-02-28 05:06:24 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 05:06:24 - cd /src
TB --- 2013-02-28 05:06:24 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 05:06:24 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/amd64/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 05:10:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 05:10:28 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 05:10:28 - 3423.88 user 663.28 system 4171.71 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on sparc64/sparc64

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:51:19 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:51:19 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:51:19 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2013-02-28 04:51:19 - cleaning the object tree
TB --- 2013-02-28 04:51:39 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:51:39 - cd /tinderbox/RELENG_8/sparc64/sparc64
TB --- 2013-02-28 04:51:39 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:51:46 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:51:50 - building world
TB --- 2013-02-28 04:51:50 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:51:50 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:51:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:51:50 - SRCCONF=/dev/null
TB --- 2013-02-28 04:51:50 - TARGET=sparc64
TB --- 2013-02-28 04:51:50 - TARGET_ARCH=sparc64
TB --- 2013-02-28 04:51:50 - TZ=UTC
TB --- 2013-02-28 04:51:50 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:51:50 - cd /src
TB --- 2013-02-28 04:51:50 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:51:50 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 05:30:24 UTC 2013
TB --- 2013-02-28 05:30:24 - generating LINT kernel config
TB --- 2013-02-28 05:30:24 - cd /src/sys/sparc64/conf
TB --- 2013-02-28 05:30:24 - /usr/bin/make -B LINT
TB --- 2013-02-28 05:30:24 - cd /src/sys/sparc64/conf
TB --- 2013-02-28 05:30:24 - /usr/sbin/config -m LINT
TB --- 2013-02-28 05:30:24 - building LINT kernel
TB --- 2013-02-28 05:30:24 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 05:30:24 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 05:30:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 05:30:24 - SRCCONF=/dev/null
TB --- 2013-02-28 05:30:24 - TARGET=sparc64
TB --- 2013-02-28 05:30:24 - TARGET_ARCH=sparc64
TB --- 2013-02-28 05:30:24 - TZ=UTC
TB --- 2013-02-28 05:30:24 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 05:30:24 - cd /src
TB --- 2013-02-28 05:30:24 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 05:30:24 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/sparc64/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 05:33:06 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 05:33:06 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 05:33:06 - 2120.11 user 371.68 system 2506.68 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


[releng_8 tinderbox] failure on powerpc/powerpc

2013-02-27 Thread FreeBSD Tinderbox
TB --- 2013-02-28 04:49:54 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-02-28 04:49:54 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-02-28 04:49:54 - starting RELENG_8 tinderbox run for powerpc/powerpc
TB --- 2013-02-28 04:49:54 - cleaning the object tree
TB --- 2013-02-28 04:50:12 - checking out /src from 
svn://svn.freebsd.org/base/stable/8
TB --- 2013-02-28 04:50:12 - cd /tinderbox/RELENG_8/powerpc/powerpc
TB --- 2013-02-28 04:50:12 - /usr/local/bin/svn cleanup /src
TB --- 2013-02-28 04:50:19 - /usr/local/bin/svn update /src
TB --- 2013-02-28 04:50:23 - building world
TB --- 2013-02-28 04:50:23 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 04:50:23 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 04:50:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 04:50:23 - SRCCONF=/dev/null
TB --- 2013-02-28 04:50:23 - TARGET=powerpc
TB --- 2013-02-28 04:50:23 - TARGET_ARCH=powerpc
TB --- 2013-02-28 04:50:23 - TZ=UTC
TB --- 2013-02-28 04:50:23 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 04:50:23 - cd /src
TB --- 2013-02-28 04:50:23 - /usr/bin/make -B buildworld
 World build started on Thu Feb 28 04:50:23 UTC 2013
 Rebuilding the temporary build tree
 stage 1.1: legacy release compatibility shims
 stage 1.2: bootstrap tools
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3: cross tools
 stage 4.1: building includes
 stage 4.2: building libraries
 stage 4.3: make dependencies
 stage 4.4: building everything
 World build completed on Thu Feb 28 05:31:08 UTC 2013
TB --- 2013-02-28 05:31:08 - generating LINT kernel config
TB --- 2013-02-28 05:31:08 - cd /src/sys/powerpc/conf
TB --- 2013-02-28 05:31:08 - /usr/bin/make -B LINT
TB --- 2013-02-28 05:31:08 - cd /src/sys/powerpc/conf
TB --- 2013-02-28 05:31:08 - /usr/sbin/config -m LINT
TB --- 2013-02-28 05:31:08 - building LINT kernel
TB --- 2013-02-28 05:31:08 - CROSS_BUILD_TESTING=YES
TB --- 2013-02-28 05:31:08 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-02-28 05:31:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-02-28 05:31:08 - SRCCONF=/dev/null
TB --- 2013-02-28 05:31:08 - TARGET=powerpc
TB --- 2013-02-28 05:31:08 - TARGET_ARCH=powerpc
TB --- 2013-02-28 05:31:08 - TZ=UTC
TB --- 2013-02-28 05:31:08 - __MAKE_CONF=/dev/null
TB --- 2013-02-28 05:31:08 - cd /src
TB --- 2013-02-28 05:31:08 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Thu Feb 28 05:31:08 UTC 2013
 stage 1: configuring the kernel
 stage 2.1: cleaning up the object tree
 stage 2.2: rebuilding the object tree
 stage 2.3: build tools
 stage 3.1: making dependencies
 stage 3.2: building everything
[...]
cc1: warnings being treated as errors
/src/sys/dev/e1000/if_em.c: In function 'em_setup_transmit_ring':
/src/sys/dev/e1000/if_em.c:3349: warning: implicit declaration of function 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c:3349: warning: nested extern declaration of 
'netmap_idx_n2k'
/src/sys/dev/e1000/if_em.c: In function 'em_txeof':
/src/sys/dev/e1000/if_em.c:3812: error: 'struct netmap_adapter' has no member 
named 'tx_si'
/src/sys/dev/e1000/if_em.c: In function 'em_rxeof':
/src/sys/dev/e1000/if_em.c:4424: error: 'struct netmap_adapter' has no member 
named 'rx_si'
*** [if_em.o] Error code 1

Stop in /obj/powerpc/src/sys/LINT.
*** [buildkernel] Error code 1

Stop in /src.
*** [buildkernel] Error code 1

Stop in /src.
TB --- 2013-02-28 05:33:40 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-02-28 05:33:40 - ERROR: failed to build LINT kernel
TB --- 2013-02-28 05:33:40 - 2229.38 user 376.94 system 2625.76 real


http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: mfi timeouts

2013-02-27 Thread rihad

On 02/27/2013 08:59 PM, John Baldwin wrote:

On Wednesday, February 27, 2013 12:58:11 am rihad wrote:

Now about this part taken from here
http://lists.freebsd.org/pipermail/freebsd-scsi/2011-March/004839.html
   By issuing a dummy read operation (thus forcing a flush of data
buffers), this issue is largely averted.

Does this mean that battery-backed cache (BBU) is effectively rendered
useless, as all write operations are forced on to the disk platters on
every interrupt?

No, this is a very different level.  This is forcing pending PCI DMA
transactions on the PCI bus to flush by doing a read, not forcing I/O
buffers to be flushed to disk.


Thanks for clarifying.

After applying the dummy read patch mfi timeouts don't appear in dmesg 
output any more, but i/o stalls still occurred 2-3 times during periods 
of high activity, for no more than 10-20 seconds. I guess the only way 
to fix that is to choose another hardware RAID implementation, or try 
Steven Hartland's patch? Does 8.3 or 9.1 include more fixes in this 
area, is upgrading recommended?

___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org


Re: rc.d/sysctl fails to parse sysctl.conf

2013-02-27 Thread Andreas Nilsson
On Wed, Feb 27, 2013 at 10:39 PM, Chris Rees cr...@freebsd.org wrote:

 On 27 February 2013 21:19, Andreas Nilsson andrn...@gmail.com wrote:
  Hello,
 
  I tried to get my sound working, and long story short: rc.d/sysctl parses
  sysctl.conf wrongly if there are sysctls of the form
 
  mib=val1=val2
 
  which is what you need for sound. For reference I needed/wanted
 
  dev.hdaa.4.nid25_config=as=1,seq=15
  dev.hdaa.4.nid31_config=as=1
 
  I believe the following patch would address the incorrect parsing:
 
  --- /etc/rc.d/sysctl.old2013-02-27 22:00:00.0 +0100
  +++ /etc/rc.d/sysctl2013-02-27 22:05:24.0 +0100
  @@ -26,7 +26,7 @@
  \#*|'')
  ;;
  *)
  -   mib=${var%=*}
  +   mib=${var%%=*}
  val=${var#*=}
 
  if current_value=`${SYSCTL} -n ${mib}
  2/dev/null`; then

 I think that this is the right thing to do here.

 Chris



As a follow-up question: is sysctl.conf supposed to handle  all valid input
one can give sysctl on the command line? Using the above example would
normally be typed:
sysctl dev.hdaa.4.nid25_config=as=1 seq=15
which works, but fails to work from sysctl.conf

Best regards
Andreas
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org