Performance problems with pagedaemon

2012-01-02 Thread Victor Balada Diaz
Hello,

First: Happy new year to everybody!

Last year i had a problem with pagedaemon that i reported here[1] but i had
no replies. The problem went away and now it's back to beat me again.

Seems that mysql creates some bad interactions with pagedaemon and system starts
to get slow for disk access. Eg, accessing a man page takes a few seconds. If
i stop mysql and start it again, it recovers again. As this is a problem that 
have
appeared just twice (on October and now), it's not easy to reproduce and test.

Disk I/O as per gstat is not high, not many context switches, etc. Bottleneck
seems to be CPU. I've reported more information on october's mail[1].

What can i do to debug it? Seems that maybe the most interesting thing would be
enabling lock profiling and wait for the system to fail again, but is there 
anything
that i can do/report that would be helpful to track the problem down now that's
failing?

Thanks a lot.
Regards.

[1]: http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064248.html
-- 
La prueba más fehaciente de que existe vida inteligente en otros
planetas, es que no han intentado contactar con nosotros. 
___
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: Performance problems with pagedaemon

2012-01-02 Thread Jeremy Chadwick
On Mon, Jan 02, 2012 at 01:25:49PM +0100, Victor Balada Diaz wrote:
> Hello,
> 
> First: Happy new year to everybody!
> 
> Last year i had a problem with pagedaemon that i reported here[1] but i had
> no replies. The problem went away and now it's back to beat me again.
> 
> Seems that mysql creates some bad interactions with pagedaemon and system 
> starts
> to get slow for disk access. Eg, accessing a man page takes a few seconds. If
> i stop mysql and start it again, it recovers again. As this is a problem that 
> have
> appeared just twice (on October and now), it's not easy to reproduce and test.
> 
> Disk I/O as per gstat is not high, not many context switches, etc. Bottleneck
> seems to be CPU. I've reported more information on october's mail[1].
> 
> What can i do to debug it? Seems that maybe the most interesting thing would 
> be
> enabling lock profiling and wait for the system to fail again, but is there 
> anything
> that i can do/report that would be helpful to track the problem down now 
> that's
> failing?
> 
> Thanks a lot.
> Regards.
> 
> [1]: 
> http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064248.html

The only things I can think of are output from the following:

* vmstat -z
* sysctl -a vm
* top  (mainly for mysqld)
* top -H -S

Is this machine in question still running 8.1-RELEASE?  If so, have you
tried upgrading it to 8.2-STABLE?  I believe there have been some VM
adjustments, but I'd have to go back and examine commits.

Taken from our mysql server.  Note that the mysql storage filesystem is
stored on ZFS as well, which has added benefits/complexities yet we see
no issue.

FreeBSD X 8.2-STABLE FreeBSD 8.2-STABLE #0: Tue Dec 13 00:00:16 
PST 2011 root@X:/usr/obj/usr/src/sys/X7SBI_RELENG_8_amd64  amd64

real memory  = 8589934592 (8192 MB)
avail memory = 8250040320 (7867 MB)

Mem: 539M Active, 2559M Inact, 3218M Wired, 4K Cache, 828M Buf, 1603M Free
Swap: 16G Total, 16G Free
  PID USERNAME  THR PRI NICE   SIZERES STATE   C   TIME   WCPU COMMAND
 1940 mysql  16  200   781M   401M sigwai  1 158:40  0.00% [mysqld]

top -H -S shows no indication pagedaemon is "going crazy".

loader.conf tunings:

# Increase maximum allocatable memory on a process to 2.5GB.
# We don't choose 8GB (our amount of RAM) since that would
# exhaust all memory, and result in a kernel panic.  Maximum
# stack size is set to 256MB.  One can view these settings
# using limits(1).
#
# dfldsiz = Initial data size limit (bytes)
# maxdsiz = Maximum data size limit (bytes)
# dflssiz = Initial stack size limit (bytes)
# maxssiz = Maximum stack size limit (bytes)
#
kern.maxdsiz="2560M"
kern.dfldsiz="2560M"
kern.maxssiz="256M"

# Limit ZFS ARC maximum.
# NOTE #1: In 8.2-RELEASE and onward, vm.kmem_size_scale defaults to 1,
# which means vm.kmem_size should match the amount of RAM installed
# in the system.  If using an earlier FreeBSD release, be sure to set
# vm.kmem_size manually to the amount of RAM you have.
# NOTE #2: Do not set vm.kmem_size to 2x that of physical RAM, otherwise
# vfs.zfs.arc_max effectively becomes halved.
# http://lists.freebsd.org/pipermail/freebsd-fs/2011-March/010875.html
vfs.zfs.arc_max="5120M"


my.cnf tunings:

[mysqld]
; http://dev.mysql.com/doc/refman/5.5/en/table-cache.html
table_open_cache= 2048
max_connections = 512

tmp_table_size  = 64M
max_allowed_packet  = 32M
key_buffer_size = 64M
join_buffer_size= 16M
sort_buffer_size= 16M
read_buffer_size= 16M
query_cache_size= 64M
query_cache_limit   = 32M

innodb_file_per_table
innodb_buffer_pool_size = 512M
innodb_log_file_size= 128M
innodb_log_buffer_size  = 8M
innodb_additional_mem_pool_size = 20M


sysctl -a vm output:

vm.vmtotal:
System wide totals computed every five seconds: (values in kilobytes)
===
Processes:  (RUNQ: 1 Disk Wait: 1 Page Wait: 0 Sleep: 59)
Virtual Memory: (Total: 1075323828K Active: 1483408K)
Real Memory:(Total: 2970948K Active: 585264K)
Shared Virtual Memory:  (Total: 17884K Active: 6756K)
Shared Real Memory: (Total: 7500K Active: 6564K)
Free Memory Pages:  1641708K

vm.loadavg: { 0.00 0.00 0.00 }
vm.v_free_min: 12824
vm.v_free_target: 53985
vm.v_free_reserved: 2689
vm.v_inactive_target: 80977
vm.v_cache_min: 53985
vm.v_cache_max: 107970
vm.v_pageout_free_min: 34
vm.pageout_algorithm: 0
vm.swap_enabled: 1
vm.md_malloc_wait: 0
vm.kmem_map_free: 2897080320
vm.kmem_map_size: 2349465600
vm.kmem_size_scale: 1
vm.kmem_size_max: 329853485875
vm.kmem_size_min: 0
vm.kmem_size: 8303726592
vm.nswapdev: 1
vm.dmmax: 32
vm.swap_async_max: 4
vm.overcommit: 0
vm.swap_reserved: 11426652160
vm.swap_total: 17179869184
vm.zone_count: 195
vm.swap_idle_threshold2: 10
vm.swap_idle_threshold1: 2
vm.kstacks: 475
vm.kstack_cache_size: 128
vm.exec_map_entries: 16
vm.stats.misc.zero_page_count: 158
vm.stats.mi

Re: Performance problems with pagedaemon

2012-01-02 Thread Victor Balada Diaz
Thanks a lot for your fast reply Jeremy!

On Mon, Jan 02, 2012 at 04:59:29AM -0800, Jeremy Chadwick wrote:
> On Mon, Jan 02, 2012 at 01:25:49PM +0100, Victor Balada Diaz wrote:
> > Hello,
> > 
> > First: Happy new year to everybody!
> > 
> > Last year i had a problem with pagedaemon that i reported here[1] but i had
> > no replies. The problem went away and now it's back to beat me again.
> > 
> > Seems that mysql creates some bad interactions with pagedaemon and system 
> > starts
> > to get slow for disk access. Eg, accessing a man page takes a few seconds. 
> > If
> > i stop mysql and start it again, it recovers again. As this is a problem 
> > that have
> > appeared just twice (on October and now), it's not easy to reproduce and 
> > test.
> > 
> > Disk I/O as per gstat is not high, not many context switches, etc. 
> > Bottleneck
> > seems to be CPU. I've reported more information on october's mail[1].
> > 
> > What can i do to debug it? Seems that maybe the most interesting thing 
> > would be
> > enabling lock profiling and wait for the system to fail again, but is there 
> > anything
> > that i can do/report that would be helpful to track the problem down now 
> > that's
> > failing?
> > 
> > Thanks a lot.
> > Regards.
> > 
> > [1]: 
> > http://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064248.html
> 
> The only things I can think of are output from the following:
> 
> * vmstat -z
> * sysctl -a vm
> * top  (mainly for mysqld)
> * top -H -S

Attached at the end.

> 
> Is this machine in question still running 8.1-RELEASE?  If so, have you
> tried upgrading it to 8.2-STABLE?  I believe there have been some VM
> adjustments, but I'd have to go back and examine commits.

8.1-RELEASE-p5, yes. I didn't try updating to 8.2, but i'll try upgrading
to 9.0 once it's out. Once i upgrade i think it will take a few months until i 
can
say if it's fixed or not.

I must say that this problem just appeared twice on all of our servers. The 
rest have
been rock solid with 8.1 RELEASE-p* and no problems in a long time.

> 
> Taken from our mysql server.  Note that the mysql storage filesystem is
> stored on ZFS as well, which has added benefits/complexities yet we see
> no issue.

We're using UFS for filesystem with RAID 10 in HW, controller is Adaptec 5405.
So far we've just tested ZFS on FreeBSD for our backup servers and don't feel
it's a good choice for our database needs as it wastes much memory and don't
get us enough benefits.

Out of curiosity: why did you prefer ZFS over UFS for big databases? The biggest
reason i can think of, is snapshots and backups, but with xtrabackup available
and in ports, it's not that useful.

vmstat -z:
ITEM SIZE LIMIT  USED  FREE  REQUESTS  FAILURES

UMA Kegs: 208,0,  104,   15,  104,0
UMA Zones:576,0,  104,4,  104,0
UMA Slabs:568,0, 3880,  495,   463422,0
UMA RCntSlabs:568,0, 3006,  592,   682012,0
UMA Hash: 256,0,0,0,3,0
16 Bucket:152,0,   47,  153,  204,0
32 Bucket:280,0,  130,  122,  340,2
64 Bucket:536,0,   94,   95,  583,   86
128 Bucket:  1048,0,  894,   15,   153173,   287797
VM OBJECT:216,0,33316,50834, 86207077,0
MAP:  232,0,7,   25,7,0
KMAP ENTRY:   120,   786315,   80, 1346,  6366241,0
MAP ENTRY:120,0, 1590, 2347, 212747051,0
DP fakepg:120,0,0,  124,   21,0
SG fakepg:120,0,0,0,0,0
mt_zone: 2056,0,  260,3,  260,0
16:16,0, 2336, 1696,  6042441,0
32:32,0, , 2424,   426544,0
64:64,0, 8137, 1271, 986811990,0
128:  128,0,15488, 3826, 25899478,0
256:  256,0,  581, 2059, 47822165,0
512:  512,0, 2972, 1949,  9053615,0
1024:1024,0,   54,  358,24855,0
2048:2048,0,   56,  266,41473,0
4096:4096,0,  396, 2047,  3139352,0
Files: 80,0,  487, 2258, 54800616,0
TURNSTILE:136,0, 4045,  435, 4413,0
umtx pi:   96,0,0,0,

Re: 9.0-RC3 umass quirks?

2012-01-02 Thread George Mitchell

On 01/-10/63 14:59, George Mitchell wrote:

I have a USB compact flash reader-writer which is normally connected to
my computer all the time but rarely contains a compact flash card. Here
is a snippet from a verbose dmesg with FreeBSD 9.0-RC3:


ugen0.5:  at usbus0
umass0:  on
usbus0
umass0: SCSI over Bulk-Only; quirks = 0x4101
umass0:2:0:-1: Attached to scbus2
(probe0:umass-sim0:0:0:0): SCSI status error
(probe0:umass-sim0:0:0:0): INQUIRY. CDB: 12 1 0 0 ff 0
(probe0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(probe0:umass-sim0:0:0:0): SCSI status: Check Condition
(probe0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not
present)
(probe0:umass-sim0:0:0:0): Error 6, Unretryable error
(probe0:umass-sim0:0:0:0): Down reving Protocol Version from 2 to 0?
...
(probe0:umass-sim0:0:0:0): AutoSense failed
(probe0:umass-sim0:0:0:0): Error 5, Unretryable error
GEOM: new disk da0
pass2 at umass-sim0 bus 0 scbus2 target 0 lun 0
pass2:  Removable Direct Access SCSI-0 device
pass2: 1.000MB/s transfers
...
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Retrying command
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Retrying command
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Retrying command
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Retrying command
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Error 5, Retries exhausted
(da0:umass-sim0:0:0:0): got CAM status 0x4
(da0:umass-sim0:0:0:0): fatal error, failed to attach to device
(da0:umass-sim0:0:0:0): lost device - 0 outstanding
(da0:umass-sim0:0:0:0): Request completed with CAM_REQ_CMP_ERR
(da0:umass-sim0:0:0:0): Error 5, Retries exhausted
(da0:umass-sim0:0:0:0): removing device entry
Opened disk da0 -> 5


Everything works normally, but the above events take about half a
minute and bring the booting-up procedure to a halt while the
retries finish. Is there a umass quirk I could enable to speed up
whatever is happening here? usbconfig -d 0.5 dump_device_desc says:

ugen0.5:  at usbus0, cfg=0 md=HOST spd=FULL
(12Mbps) pwr=ON

bLength = 0x0012
bDescriptorType = 0x0001
bcdUSB = 0x0200
bDeviceClass = 0x
bDeviceSubClass = 0x
bDeviceProtocol = 0x
bMaxPacketSize0 = 0x0040
idVendor = 0x05e3
idProduct = 0x0703
bcdDevice = 0x0032
iManufacturer = 0x 
iProduct = 0x0001 
iSerialNumber = 0x 
bNumConfigurations = 0x0001



Here's the corresponding dmesg output from 8.2-STABLE:

ugen0.5:  at usbus0
umass0:  on 
usbus0

umass0:  SCSI over Bulk-Only; quirks = 0x
umass0: Get Max Lun not supported (USB_ERR_STALLED)
umass0:2:0:-1: Attached to scbus2
(probe0:umass-sim0:0:0:0): SCSI status error
(probe0:umass-sim0:0:0:0): INQUIRY. CDB: 12 1 0 0 ff 0
(probe0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(probe0:umass-sim0:0:0:0): SCSI status: Check Condition
(probe0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not 
present)

(probe0:umass-sim0:0:0:0): Error 6, Unretryable error
(probe0:umass-sim0:0:0:0): Down reving Protocol Version from 2 to 0?
(probe0:umass-sim0:0:0:0): SCSI status error
(probe0:umass-sim0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0
(probe0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(probe0:umass-sim0:0:0:0): SCSI status: Check Condition
(probe0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not 
present)

(probe0:umass-sim0:0:0:0): Error 6, Unretryable error
GEOM: new disk da0
pass2 at umass-sim0 bus 0 scbus2 target 0 lun 0
pass2:  Removable Direct Access SCSI-0 device
pass2: 1.000MB/s transfers
(da0:umass-sim0:0:0:0): SCSI status error
(da0:umass-sim0:0:0:0): READ CAPACITY(10). CDB: 25 0 0 0 0 0 0 0 0 0
(da0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI status: Check Condition
(da0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(da0:umass-sim0:0:0:0): Error 6, Unretryable error
da0 at umass-sim0 bus 0 scbus2 target 0 lun 0
da0:  Removable Direct Access SCSI-0 device
da0: 1.000MB/s transfers
da0: Attempt to query device size failed: NOT READY, Medium not present
(da0:umass-sim0:0:0:0): SCSI status error
(da0:umass-sim0:0:0:0): READ CAPACITY(10). CDB: 25 0 0 0 0 0 0 0 0 0
(da0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI status: Check Condition
(da0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(da0:umass-sim0:0:0:0): Error 6, Unretryable error
Opened disk da0 -> 6
(da0:umass-sim0:0:0:0): SCSI status error
(da0:umass-sim0:0:0:0): READ CAPACITY(10). CDB: 25 0 0 0 0 0 0 0 0 0
(da0:umass-sim0:0:0:0): CAM status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI status: Check Condition
(da0:umass-sim0:0:0:0): SCSI sense: NOT READY asc:3a,0 (Medium not present)
(da0:umass-sim0:0:0:0): Error 6, Unretryable error
Opened disk da0 -> 6

(which all took only a couple of seconds, compared to half a mi

Re: Performance problems with pagedaemon

2012-01-02 Thread Artem Belevich
On Mon, Jan 2, 2012 at 5:41 AM, Victor Balada Diaz  wrote:
...
> System wide totals computed every five seconds: (values in kilobytes)
> ===
> Processes:              (RUNQ: 2 Disk Wait: 0 Page Wait: 0 Sleep: 51)
> Virtual Memory:         (Total: 1098017100K, Active 24065448K)
> Real Memory:            (Total: 21157668K Active 20971144K)
> Shared Virtual Memory:  (Total: 27740K Active: 8632K)
> Shared Real Memory:     (Total: 6128K Active: 4928K)
> Free Memory Pages:      315636K

On a system with 24GB of RAM you seem to have almost all of it active.
It appears that you're simply on the edge of running out of memory and
thus page daemon wakes up constantly trying to find more pages...

...
> Top:
>
> last pid: 24777;  load averages:  3.26,  4.07,  4.49                          
>                                                                               
>      up 34+19:43:58  14:32:05
> 66 processes:  5 running, 61 sleeping
> CPU:  0.2% user,  0.0% nice, 37.6% system,  0.0% interrupt, 62.2% idle
> Mem: 18G Active, 1908M Inact, 3008M Wired, 73M Cache, 2465M Buf, 232M Free
> Swap: 4096M Total, 4096M Free
>
>  PID USERNAME  THR PRI NICE   SIZE    RES STATE   C   TIME   WCPU COMMAND
>  1059 mysql      22  44    0 21004M 19741M ucond   3  71.2H 124.51% mysqld

Mysql uses more than 20G of RAM. You may want to tune it down a bit so
that there is a bit of free RAM around.

Page daemon is trying to maintain v_free_target + v_cache_min.

>vm.v_free_target: 161771
>vm.v_cache_min: 161771

In your case that would be about 1.2GB. If 'v_free_count +
v_cache_count' are below that page daemon will periodically wake up
and will start scanning active/inactive lists trying to find the pages
it could use. In your case, when most of the memory is in active use,
page daemon's job will be almost pointless and would just waste CPU
time.

On large memory systems default tuning for v_free/cache_min/target is
probably somewhat conservative. You may try setting them somewhat
lower via sysctl and see if you can find an equilibrium with mysql
happy, pagedaemon sleeping and the system up and running. The danger
of tuning these parameters too low is that is you don't have enough
memory available for allocation without having to sleep, things will
start falling apart and will eventually hang or crash your box.

--Artem
___
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_9 tinderbox] failure on i386/i386

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 19:29:40 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 19:29:40 - starting RELENG_9 tinderbox run for i386/i386
TB --- 2012-01-02 19:29:40 - cleaning the object tree
TB --- 2012-01-02 19:30:48 - cvsupping the source tree
TB --- 2012-01-02 19:30:48 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/i386/i386/supfile
TB --- 2012-01-02 19:31:35 - building world
TB --- 2012-01-02 19:31:35 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 19:31:35 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 19:31:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 19:31:35 - SRCCONF=/dev/null
TB --- 2012-01-02 19:31:35 - TARGET=i386
TB --- 2012-01-02 19:31:35 - TARGET_ARCH=i386
TB --- 2012-01-02 19:31:35 - TZ=UTC
TB --- 2012-01-02 19:31:35 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 19:31:35 - cd /src
TB --- 2012-01-02 19:31:35 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 19:31:35 UTC 2012
>>> 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 Mon Jan  2 21:40:25 UTC 2012
TB --- 2012-01-02 21:40:25 - generating LINT kernel config
TB --- 2012-01-02 21:40:25 - cd /src/sys/i386/conf
TB --- 2012-01-02 21:40:25 - /usr/bin/make -B LINT
TB --- 2012-01-02 21:40:25 - cd /src/sys/i386/conf
TB --- 2012-01-02 21:40:25 - /usr/sbin/config -m LINT
TB --- 2012-01-02 21:40:25 - building LINT kernel
TB --- 2012-01-02 21:40:25 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 21:40:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 21:40:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 21:40:25 - SRCCONF=/dev/null
TB --- 2012-01-02 21:40:25 - TARGET=i386
TB --- 2012-01-02 21:40:25 - TARGET_ARCH=i386
TB --- 2012-01-02 21:40:25 - TZ=UTC
TB --- 2012-01-02 21:40:25 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 21:40:25 - cd /src
TB --- 2012-01-02 21:40:25 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Mon Jan  2 21:40:25 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

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

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-02 21:53:03 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-02 21:53:03 - ERROR: failed to build LINT kernel
TB --- 2012-01-02 21:53:03 - 6684.62 user 812.21 system 8602.54 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-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_9 tinderbox] failure on ia64/ia64

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 20:26:44 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 20:26:44 - starting RELENG_9 tinderbox run for ia64/ia64
TB --- 2012-01-02 20:26:44 - cleaning the object tree
TB --- 2012-01-02 20:27:06 - cvsupping the source tree
TB --- 2012-01-02 20:27:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/ia64/ia64/supfile
TB --- 2012-01-02 20:27:42 - building world
TB --- 2012-01-02 20:27:42 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 20:27:42 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 20:27:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 20:27:42 - SRCCONF=/dev/null
TB --- 2012-01-02 20:27:42 - TARGET=ia64
TB --- 2012-01-02 20:27:42 - TARGET_ARCH=ia64
TB --- 2012-01-02 20:27:42 - TZ=UTC
TB --- 2012-01-02 20:27:42 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 20:27:42 - cd /src
TB --- 2012-01-02 20:27:42 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 20:27:42 UTC 2012
>>> 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 Mon Jan  2 21:54:10 UTC 2012
TB --- 2012-01-02 21:54:10 - generating LINT kernel config
TB --- 2012-01-02 21:54:10 - cd /src/sys/ia64/conf
TB --- 2012-01-02 21:54:10 - /usr/bin/make -B LINT
TB --- 2012-01-02 21:54:10 - cd /src/sys/ia64/conf
TB --- 2012-01-02 21:54:10 - /usr/sbin/config -m LINT
TB --- 2012-01-02 21:54:10 - building LINT kernel
TB --- 2012-01-02 21:54:10 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 21:54:10 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 21:54:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 21:54:10 - SRCCONF=/dev/null
TB --- 2012-01-02 21:54:10 - TARGET=ia64
TB --- 2012-01-02 21:54:10 - TARGET_ARCH=ia64
TB --- 2012-01-02 21:54:10 - TZ=UTC
TB --- 2012-01-02 21:54:10 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 21:54:10 - cd /src
TB --- 2012-01-02 21:54:10 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Mon Jan  2 21:54:10 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

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

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-02 22:07:52 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-02 22:07:52 - ERROR: failed to build LINT kernel
TB --- 2012-01-02 22:07:52 - 4617.05 user 622.73 system 6067.91 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-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_9 tinderbox] failure on i386/pc98

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 20:23:38 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 20:23:38 - starting RELENG_9 tinderbox run for i386/pc98
TB --- 2012-01-02 20:23:38 - cleaning the object tree
TB --- 2012-01-02 20:24:00 - cvsupping the source tree
TB --- 2012-01-02 20:24:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/i386/pc98/supfile
TB --- 2012-01-02 20:24:51 - building world
TB --- 2012-01-02 20:24:51 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 20:24:51 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 20:24:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 20:24:51 - SRCCONF=/dev/null
TB --- 2012-01-02 20:24:51 - TARGET=pc98
TB --- 2012-01-02 20:24:51 - TARGET_ARCH=i386
TB --- 2012-01-02 20:24:51 - TZ=UTC
TB --- 2012-01-02 20:24:51 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 20:24:51 - cd /src
TB --- 2012-01-02 20:24:51 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 20:24:52 UTC 2012
>>> 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 Mon Jan  2 22:36:28 UTC 2012
TB --- 2012-01-02 22:36:28 - generating LINT kernel config
TB --- 2012-01-02 22:36:28 - cd /src/sys/pc98/conf
TB --- 2012-01-02 22:36:28 - /usr/bin/make -B LINT
TB --- 2012-01-02 22:36:28 - cd /src/sys/pc98/conf
TB --- 2012-01-02 22:36:28 - /usr/sbin/config -m LINT
TB --- 2012-01-02 22:36:28 - building LINT kernel
TB --- 2012-01-02 22:36:28 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 22:36:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 22:36:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 22:36:28 - SRCCONF=/dev/null
TB --- 2012-01-02 22:36:28 - TARGET=pc98
TB --- 2012-01-02 22:36:28 - TARGET_ARCH=i386
TB --- 2012-01-02 22:36:28 - TZ=UTC
TB --- 2012-01-02 22:36:28 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 22:36:28 - cd /src
TB --- 2012-01-02 22:36:28 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Mon Jan  2 22:36:28 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

Stop in /obj/pc98.i386/src/sys/LINT.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-02 22:46:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-02 22:46:46 - ERROR: failed to build LINT kernel
TB --- 2012-01-02 22:46:46 - 6510.88 user 800.29 system 8587.31 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-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_9 tinderbox] failure on sparc64/sparc64

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 22:52:31 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 22:52:31 - starting RELENG_9 tinderbox run for sparc64/sparc64
TB --- 2012-01-02 22:52:31 - cleaning the object tree
TB --- 2012-01-02 22:53:00 - cvsupping the source tree
TB --- 2012-01-02 22:53:00 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/sparc64/sparc64/supfile
TB --- 2012-01-02 22:53:41 - building world
TB --- 2012-01-02 22:53:41 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 22:53:41 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 22:53:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 22:53:41 - SRCCONF=/dev/null
TB --- 2012-01-02 22:53:41 - TARGET=sparc64
TB --- 2012-01-02 22:53:41 - TARGET_ARCH=sparc64
TB --- 2012-01-02 22:53:41 - TZ=UTC
TB --- 2012-01-02 22:53:41 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 22:53:41 - cd /src
TB --- 2012-01-02 22:53:41 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 22:53:42 UTC 2012
>>> 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 Tue Jan  3 00:01:02 UTC 2012
TB --- 2012-01-03 00:01:02 - generating LINT kernel config
TB --- 2012-01-03 00:01:02 - cd /src/sys/sparc64/conf
TB --- 2012-01-03 00:01:02 - /usr/bin/make -B LINT
TB --- 2012-01-03 00:01:02 - cd /src/sys/sparc64/conf
TB --- 2012-01-03 00:01:02 - /usr/sbin/config -m LINT
TB --- 2012-01-03 00:01:02 - building LINT kernel
TB --- 2012-01-03 00:01:02 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-03 00:01:02 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-03 00:01:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-03 00:01:02 - SRCCONF=/dev/null
TB --- 2012-01-03 00:01:02 - TARGET=sparc64
TB --- 2012-01-03 00:01:02 - TARGET_ARCH=sparc64
TB --- 2012-01-03 00:01:02 - TZ=UTC
TB --- 2012-01-03 00:01:02 - __MAKE_CONF=/dev/null
TB --- 2012-01-03 00:01:02 - cd /src
TB --- 2012-01-03 00:01:02 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Tue Jan  3 00:01:03 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

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

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-03 00:11:14 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-03 00:11:14 - ERROR: failed to build LINT kernel
TB --- 2012-01-03 00:11:14 - 3426.82 user 539.09 system 4723.47 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-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_9 tinderbox] failure on powerpc/powerpc

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 22:07:52 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 22:07:52 - starting RELENG_9 tinderbox run for powerpc/powerpc
TB --- 2012-01-02 22:07:52 - cleaning the object tree
TB --- 2012-01-02 22:08:14 - cvsupping the source tree
TB --- 2012-01-02 22:08:14 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/powerpc/powerpc/supfile
TB --- 2012-01-02 22:09:10 - building world
TB --- 2012-01-02 22:09:10 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 22:09:10 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 22:09:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 22:09:10 - SRCCONF=/dev/null
TB --- 2012-01-02 22:09:10 - TARGET=powerpc
TB --- 2012-01-02 22:09:10 - TARGET_ARCH=powerpc
TB --- 2012-01-02 22:09:10 - TZ=UTC
TB --- 2012-01-02 22:09:10 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 22:09:10 - cd /src
TB --- 2012-01-02 22:09:10 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 22:09:11 UTC 2012
>>> 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 Tue Jan  3 00:09:09 UTC 2012
TB --- 2012-01-03 00:09:09 - generating LINT kernel config
TB --- 2012-01-03 00:09:09 - cd /src/sys/powerpc/conf
TB --- 2012-01-03 00:09:09 - /usr/bin/make -B LINT
TB --- 2012-01-03 00:09:09 - cd /src/sys/powerpc/conf
TB --- 2012-01-03 00:09:09 - /usr/sbin/config -m LINT
TB --- 2012-01-03 00:09:09 - building LINT kernel
TB --- 2012-01-03 00:09:09 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-03 00:09:09 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-03 00:09:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-03 00:09:09 - SRCCONF=/dev/null
TB --- 2012-01-03 00:09:09 - TARGET=powerpc
TB --- 2012-01-03 00:09:09 - TARGET_ARCH=powerpc
TB --- 2012-01-03 00:09:09 - TZ=UTC
TB --- 2012-01-03 00:09:09 - __MAKE_CONF=/dev/null
TB --- 2012-01-03 00:09:09 - cd /src
TB --- 2012-01-03 00:09:09 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Tue Jan  3 00:09:09 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

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

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-03 00:15:58 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-03 00:15:58 - ERROR: failed to build LINT kernel
TB --- 2012-01-03 00:15:58 - 6003.98 user 747.39 system 7685.27 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-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_9 tinderbox] failure on powerpc64/powerpc

2012-01-02 Thread FreeBSD Tinderbox
TB --- 2012-01-02 22:46:46 - tinderbox 2.8 running on freebsd-stable.sentex.ca
TB --- 2012-01-02 22:46:46 - starting RELENG_9 tinderbox run for 
powerpc64/powerpc
TB --- 2012-01-02 22:46:46 - cleaning the object tree
TB --- 2012-01-02 22:47:10 - cvsupping the source tree
TB --- 2012-01-02 22:47:10 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/RELENG_9/powerpc64/powerpc/supfile
TB --- 2012-01-02 22:48:14 - building world
TB --- 2012-01-02 22:48:14 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-02 22:48:14 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-02 22:48:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-02 22:48:14 - SRCCONF=/dev/null
TB --- 2012-01-02 22:48:14 - TARGET=powerpc
TB --- 2012-01-02 22:48:14 - TARGET_ARCH=powerpc64
TB --- 2012-01-02 22:48:14 - TZ=UTC
TB --- 2012-01-02 22:48:14 - __MAKE_CONF=/dev/null
TB --- 2012-01-02 22:48:14 - cd /src
TB --- 2012-01-02 22:48:14 - /usr/bin/make -B buildworld
>>> World build started on Mon Jan  2 22:48:15 UTC 2012
>>> 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 Tue Jan  3 00:52:58 UTC 2012
TB --- 2012-01-03 00:52:58 - generating LINT kernel config
TB --- 2012-01-03 00:52:58 - cd /src/sys/powerpc/conf
TB --- 2012-01-03 00:52:58 - /usr/bin/make -B LINT
TB --- 2012-01-03 00:52:58 - cd /src/sys/powerpc/conf
TB --- 2012-01-03 00:52:58 - /usr/sbin/config -m LINT
TB --- 2012-01-03 00:52:58 - building LINT kernel
TB --- 2012-01-03 00:52:58 - CROSS_BUILD_TESTING=YES
TB --- 2012-01-03 00:52:58 - MAKEOBJDIRPREFIX=/obj
TB --- 2012-01-03 00:52:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2012-01-03 00:52:58 - SRCCONF=/dev/null
TB --- 2012-01-03 00:52:58 - TARGET=powerpc
TB --- 2012-01-03 00:52:58 - TARGET_ARCH=powerpc64
TB --- 2012-01-03 00:52:58 - TZ=UTC
TB --- 2012-01-03 00:52:58 - __MAKE_CONF=/dev/null
TB --- 2012-01-03 00:52:58 - cd /src
TB --- 2012-01-03 00:52:58 - /usr/bin/make -B buildkernel KERNCONF=LINT
>>> Kernel build for LINT started on Tue Jan  3 00:52:58 UTC 2012
>>> 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
[...]
/src/sys/geom/multipath/g_multipath.c:367: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_rotate':
/src/sys/geom/multipath/g_multipath.c:411: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:417: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c: In function 'g_multipath_ctl_getactive':
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:748: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
/src/sys/geom/multipath/g_multipath.c:749: error: 'struct g_multipath_softc' 
has no member named 'cp_active'
*** Error code 1

Stop in /obj/powerpc.powerpc64/src/sys/LINT.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2012-01-03 00:57:30 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2012-01-03 00:57:30 - ERROR: failed to build LINT kernel
TB --- 2012-01-03 00:57:30 - 6301.70 user 842.08 system 7843.71 real


http://tinderbox.freebsd.org/tinderbox-releng_9-RELENG_9-powerpc64-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"


DLink DWL-G132 USB wifi Adapter failed under 9.0 RC3

2012-01-02 Thread suken woo
hi lists
DWL-G132 failed to load on 9.0RC3
uath0: 
on usbus3
uath0: timeout waiting for reply to cmd 0x4 (4)
uath0: could not read capability 3
uath0: could not get device capabilities
device_attach: uath0 attach returned 35

and uathload
lp# uathload -v -d /dev/ugen3.2
Load firmware ar5523.bin (builtin) to /dev/ugen3.2
send block  0: 151368 bytes remaining
 : data...
 : wait for ack...
uathload: error reading msg (/dev/usb/3.2.1): No error: 0

usbconfig -u 3 -a 2 dump_device_desc
ugen3.2:  at usbus3, cfg=0
md=HOST spd=FULL (12Mbps) pwr=ON

  bLength = 0x0012
  bDescriptorType = 0x0001
  bcdUSB = 0x0200
  bDeviceClass = 0x00ff
  bDeviceSubClass = 0x
  bDeviceProtocol = 0x
  bMaxPacketSize0 = 0x0040
  idVendor = 0x2001
  idProduct = 0x3a02
  bcdDevice = 0x0001
  iManufacturer = 0x0001  
  iProduct = 0x0002  
  iSerialNumber = 0x0003  <1.0>
  bNumConfigurations = 0x0001
___
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"