I have a system running FreeBSD 8.0-RC1 that contains 3x Sil3124 PCI-E SATA controller cards. Each card has 3x Sil3726 Port Multipliers attached (5 slots per SATA PM). The problem is that the disks are often not all detected by FreeBSD, even though the controller Option ROMs list all of the installed physical disks. Which drive(s) are not detected seems to vary with each boot. All of the port multipliers are detected every boot, it's just the drives which aren't getting probed. I've tried the following patch, http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/129784 , which may have helped - it picks up 6-8 out of 9 disks, but obviously that's not ideal. The motherboard BIOS version is current, as is the firmware for the SATA controllers. Does anyone have any ideas or other patches that I may try? Thanks, Steve Polyack
Steve Polyack wrote:> I have a system running FreeBSD 8.0-RC1 that contains 3x Sil3124 PCI-E > SATA controller cards. Each card has 3x Sil3726 Port Multipliers > attached (5 slots per SATA PM). The problem is that the disks are > often not all detected by FreeBSD, even though the controller Option > ROMs list all of the installed physical disks. Which drive(s) are not > detected seems to vary with each boot. All of the port multipliers > are detected every boot, it's just the drives which aren't getting > probed.This was mostly fixed by loading the siis(4) module at boot. However, if I attach 5 drives to a port multiplier board and reboot, only 4 of the drives attached to that port multiplier are detected. From dmesg: siisch4: Timeout on slot 25 siisch4: siis_timeout is 00000000 ss 02000000 rs 02000000 es 00000000 sts 80192000 serr 00000000 (aprobe0:siisch4:0:1:0): SIGNATURE: 0000 (aprobe0:siisch4:0:2:0): SIGNATURE: 0000 (aprobe0:siisch4:0:3:0): SIGNATURE: 0000 (aprobe0:siisch4:0:4:0): SIGNATURE: 0000 ada0 at siisch4 bus 0 target 1 lun 0 ada0: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device ada0: 300.000MB/s transfers ada0: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) ada0: Native Command Queueing enabled ada1 at siisch4 bus 0 target 2 lun 0 ada1: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device ada1: 300.000MB/s transfers ada1: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) ada1: Native Command Queueing enabled ada2 at siisch4 bus 0 target 3 lun 0 ada2: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device ada2: 300.000MB/s transfers ada2: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) ada2: Native Command Queueing enabled ada3 at siisch4 bus 0 target 4 lun 0 ada3: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device ada3: 300.000MB/s transfers ada3: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) ada3: Native Command Queueing enabled The disk at siisch4 bus 0 target 0 lun 0 is what's missing - it looks like there's some kind of timeout during the detection. A 'camcontrol rescan all' does not help. In fact, the camcontrol rescan appears to lose all of the SATA drives attached to port-multipliers with a similar timeout message: siisch4: Timeout on slot 17 siisch4: siis_timeout is 00040000 ss 00020000 rs 00020000 es 00000000 sts 80112000 serr 00000000 (ada0:siisch4:0:1:0): lost device (ada0:siisch4:0:1:0): removing device entry siisch4: Timeout on slot 19 siisch4: siis_timeout is 00040000 ss 00080000 rs 00080000 es 00000000 sts 80132000 serr 00000000 siisch4: Timeout on slot 20 siisch4: siis_timeout is 00040000 ss 00100000 rs 00100000 es 00000000 sts 80142000 serr 00000000 (ada1:siisch4:0:2:0): lost device (ada1:siisch4:0:2:0): removing device entry siisch4: Timeout on slot 21 siisch4: siis_timeout is 00040000 ss 00200000 rs 00200000 es 00000000 sts 80152000 serr 00000000 siisch4: Timeout on slot 22 siisch4: siis_timeout is 00040000 ss 00400000 rs 00400000 es 00000000 sts 80162000 serr 00000000 (ada2:siisch4:0:3:0): lost device (ada2:siisch4:0:3:0): removing device entry I can provide more info on request.
Steve Polyack wrote:> I have a system running FreeBSD 8.0-RC1 that contains 3x Sil3124 PCI-E > SATA controller cards. Each card has 3x Sil3726 Port Multipliers > attached (5 slots per SATA PM). The problem is that the disks are often > not all detected by FreeBSD, even though the controller Option ROMs list > all of the installed physical disks. Which drive(s) are not detected > seems to vary with each boot. All of the port multipliers are detected > every boot, it's just the drives which aren't getting probed. > > I've tried the following patch, > http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/129784 , which may have > helped - it picks up 6-8 out of 9 disks, but obviously that's not > ideal. The motherboard BIOS version is current, as is the firmware for > the SATA controllers. > > Does anyone have any ideas or other patches that I may try?Have you tried new CAM-based ATA subsystem present in 8.x by siis(4) driver? Work is still in progress there, but it should work with port multipliers much better then previous implementation. -- Alexander Motin
In the somewhat related dept... The SiI3124 and SiI3726 seem to be *really* popular chipsets for low cost JBOD setups so I'm sure any work done towards this will be a win. The only other chip I see a lot of is the Marvell 88SX6041 and 88SX6081. Any others, particularly of the eight port generic card variety or other multipliers??? I'm not sure if JMicron ever got into the 4/8 port game. A somewhat related diversion: http://blog.backblaze.com/2009/09/01/petabytes-on-a-budget-how-to-build-cheap-cloud-storage/ And without the fab... you'd be amazed what a bicycle inner tube, scrap pc case lids, tin snips, hammer, anvil, drill bit, and a pop rivet tool will yield ;-)
Hello,> A somewhat related diversion: > http://blog.backblaze.com/2009/09/01/petabytes-on-a-budget-how-to-build-cheap-cloud-storage/And the quite reasonable Sun answer to that: http://www.c0t0d0s0.org/archives/5899-Some-perspective-to-this-DIY-storage-server-mentioned-at-Storagemojo.html http://www.c0t0d0s0.org/archives/5906-Thoughts-about-this-DIY-Thumper-and-storage-in-general.html -- pi@opsec.eu +49 171 3101372 11 years to go !
Alexander Motin wrote:> Have you tried new CAM-based ATA subsystem present in 8.x by siis(4) > driver? Work is still in progress there, but it should work with port > multipliers much better then previous implementation.Indeed, the siis(4) driver works MUCH better. However, it's still not always detecting every drive if I fill a port multiplier with 5/5 drives. Sometimes it boots up with 4, sometimes with 5. Snippet from the dmesg in my other reply: siisch4: Timeout on slot 25 siisch4: siis_timeout is 00000000 ss 02000000 rs 02000000 es 00000000 sts 80192000 serr 00000000 (aprobe0:siisch4:0:1:0): SIGNATURE: 0000 (aprobe0:siisch4:0:2:0): SIGNATURE: 0000 (aprobe0:siisch4:0:3:0): SIGNATURE: 0000 (aprobe0:siisch4:0:4:0): SIGNATURE: 0000 ada0 at siisch4 bus 0 target 1 lun 0 ada0: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device ada0: 300.000MB/s transfers ada0: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) ada0: Native Command Queueing enabled siisch4 bus 0 target 0 lun 0 is missing here, due to some kind of timeout. The drives are fine and the missing device does not follow a specific physical drive. Lastly, using camcontrol to rescan port multipliers and attached drives only leads to failure. Rescanning everythign simply loses all but one drive attached to each port multiplier.
Alexander Motin wrote:>> If your conditions permit, you can try to upgrade to recent HEAD to look >> how will it go with newer code. I am periodically merging my work there >> from Perforce. Also I am going to generate new test patch for HEAD, >> which includes reworked PMP support, tomorrow. >> > > You can try this patch against today's HEAD: > http://people.freebsd.org/~mav/cam-ata.20091022.patch > >I tried the patch this morning against a fresh checkout of HEAD. Immediately after boot only one device per PM was detected (I have two hooked up at the moment, 5 drives on one, 1 on the other). However, about two minutes later all of the drives showed up! camcontrol also rescans the entire bus *very* quickly now, and discovers all changes (new/missing disks and port multipliers). Here's some verbose info from /var/log/messages immediately after boot: Oct 22 10:52:03 lovepod kernel: siisch0: Timeout on slot 27 Oct 22 10:52:03 lovepod kernel: siisch0: siis_timeout is 00000000 ss 08000000 rs 08000000 es 00000000 sts 801b2000 serr 00000000 Oct 22 10:52:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:03 lovepod kernel: siisch0: SIIS reset... Oct 22 10:52:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:03 lovepod kernel: siisch0: hardware reset ... Oct 22 10:52:03 lovepod kernel: siisch0: SATA connect timeout status=00000001 Oct 22 10:52:03 lovepod kernel: siisch0: SIIS reset done: phy reset found no device Oct 22 10:52:03 lovepod kernel: (aprobe0:siisch0:0:1:0): Command timed out Oct 22 10:52:03 lovepod kernel: (aprobe0:siisch0:0:1:0): error 5 Oct 22 10:52:03 lovepod kernel: (aprobe0:siisch0:0:1:0): Retries Exhausted Oct 22 10:52:03 lovepod kernel: siisch0: DISCONNECT requested Oct 22 10:52:05 lovepod kernel: siisch0: CONNECT requested Oct 22 10:52:05 lovepod kernel: siisch0: SIIS reset... Oct 22 10:52:05 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:05 lovepod kernel: siisch0: hardware reset ... Oct 22 10:52:05 lovepod kernel: siisch0: SATA connect time=0ms status=00000123 Oct 22 10:52:05 lovepod kernel: siisch0: ready wait time=0ms Oct 22 10:52:05 lovepod kernel: siisch0: SIIS reset done: devices=00000001 Oct 22 10:52:33 lovepod kernel: siisch0: Timeout on slot 28 Oct 22 10:52:33 lovepod kernel: siisch0: siis_timeout is 00000000 ss 10000000 rs 10000000 es 00000000 sts 801c2000 serr 00000000 Oct 22 10:52:33 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:33 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:33 lovepod kernel: siisch0: SIIS reset... Oct 22 10:52:33 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:33 lovepod kernel: siisch0: hardware reset ... Oct 22 10:52:33 lovepod kernel: siisch0: SATA connect timeout status=00000001 Oct 22 10:52:33 lovepod kernel: siisch0: SIIS reset done: phy reset found no device Oct 22 10:52:33 lovepod kernel: (aprobe0:siisch0:0:2:0): Command timed out Oct 22 10:52:33 lovepod kernel: (aprobe0:siisch0:0:2:0): error 5 Oct 22 10:52:33 lovepod kernel: (aprobe0:siisch0:0:2:0): Retries Exhausted Oct 22 10:52:33 lovepod kernel: siisch0: DISCONNECT requested Oct 22 10:52:35 lovepod kernel: siisch0: CONNECT requested Oct 22 10:52:35 lovepod kernel: siisch0: SIIS reset... Oct 22 10:52:35 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:52:35 lovepod kernel: siisch0: hardware reset ... Oct 22 10:52:35 lovepod kernel: siisch0: SATA connect time=0ms status=00000123 Oct 22 10:52:35 lovepod kernel: siisch0: ready wait time=0ms Oct 22 10:52:35 lovepod kernel: siisch0: SIIS reset done: devices=00000001 Oct 22 10:53:03 lovepod kernel: siisch0: Timeout on slot 29 Oct 22 10:53:03 lovepod kernel: siisch0: siis_timeout is 00000000 ss 20000000 rs 20000000 es 00000000 sts 801d2000 serr 00000000 Oct 22 10:53:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:03 lovepod kernel: siisch0: SIIS reset... Oct 22 10:53:03 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:03 lovepod kernel: siisch0: hardware reset ... Oct 22 10:53:03 lovepod kernel: siisch0: SATA connect timeout status=00000001 Oct 22 10:53:03 lovepod kernel: siisch0: SIIS reset done: phy reset found no device Oct 22 10:53:03 lovepod kernel: (aprobe0:siisch0:0:3:0): Command timed out Oct 22 10:53:03 lovepod kernel: (aprobe0:siisch0:0:3:0): error 5 Oct 22 10:53:03 lovepod kernel: (aprobe0:siisch0:0:3:0): Retries Exhausted Oct 22 10:53:03 lovepod kernel: siisch0: DISCONNECT requested Oct 22 10:53:05 lovepod kernel: siisch0: CONNECT requested Oct 22 10:53:05 lovepod kernel: siisch0: SIIS reset... Oct 22 10:53:05 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:05 lovepod kernel: siisch0: hardware reset ... Oct 22 10:53:05 lovepod kernel: siisch0: SATA connect time=0ms status=00000123 Oct 22 10:53:05 lovepod kernel: siisch0: ready wait time=0ms Oct 22 10:53:05 lovepod kernel: siisch0: SIIS reset done: devices=00000001 Oct 22 10:53:34 lovepod kernel: siisch0: Timeout on slot 30 Oct 22 10:53:34 lovepod kernel: siisch0: siis_timeout is 00000000 ss 40000000 rs 40000000 es 00000000 sts 801e2000 serr 00000000 Oct 22 10:53:34 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:34 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:34 lovepod kernel: siisch0: SIIS reset... Oct 22 10:53:34 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:34 lovepod kernel: siisch0: hardware reset ... Oct 22 10:53:34 lovepod kernel: siisch0: SATA connect timeout status=00000001 Oct 22 10:53:34 lovepod kernel: siisch0: SIIS reset done: phy reset found no device Oct 22 10:53:34 lovepod kernel: (aprobe0:siisch0:0:4:0): Command timed out Oct 22 10:53:34 lovepod kernel: (aprobe0:siisch0:0:4:0): error 5 Oct 22 10:53:34 lovepod kernel: (aprobe0:siisch0:0:4:0): Retries Exhausted Oct 22 10:53:34 lovepod kernel: siisch0: DISCONNECT requested Oct 22 10:53:36 lovepod kernel: siisch0: CONNECT requested Oct 22 10:53:36 lovepod kernel: siisch0: SIIS reset... Oct 22 10:53:36 lovepod kernel: siisch0: ready wait time=1ms Oct 22 10:53:36 lovepod kernel: siisch0: hardware reset ... Oct 22 10:53:36 lovepod kernel: siisch0: SATA connect time=0ms status=00000123 Oct 22 10:53:36 lovepod kernel: siisch0: ready wait time=0ms Oct 22 10:53:36 lovepod kernel: siisch0: SIIS reset done: devices=00000001 Oct 22 10:53:36 lovepod kernel: PMP freeze: 0 Oct 22 10:53:36 lovepod kernel: PMP freeze: 1 Oct 22 10:53:36 lovepod kernel: PMP freeze: 2 Oct 22 10:53:36 lovepod kernel: PMP freeze: 3 Oct 22 10:53:36 lovepod kernel: PMP freeze: 4 Oct 22 10:53:51 lovepod kernel: PM ports: 5 Oct 22 10:53:51 lovepod kernel: PM RESET 0 Oct 22 10:53:51 lovepod kernel: PM RESET 1 Oct 22 10:53:51 lovepod kernel: PM RESET 2 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: PM RESET 3 Oct 22 10:53:51 lovepod kernel: PM RESET 4 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: PM reset done Oct 22 10:53:51 lovepod kernel: PM connect done Oct 22 10:53:51 lovepod kernel: PM status: 0 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 1 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 2 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 3 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 4 - 00000123 Oct 22 10:53:51 lovepod kernel: PMP release: 0 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:0:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass4 at siisch0 bus 0 scbus0 target 0 lun 0 Oct 22 10:53:51 lovepod kernel: pass4: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass4: Serial Number 9VS2FJJR Oct 22 10:53:51 lovepod kernel: pass4: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada2 at siisch0 bus 0 scbus0 target 0 lun 0GEOM: new disk ada2 Oct 22 10:53:51 lovepod kernel: ada2: Oct 22 10:53:51 lovepod kernel: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada2: Serial Number 9VS2FJJR Oct 22 10:53:51 lovepod kernel: ada2: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada2: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada2: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: PMP release: 1 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:1:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass5 at siisch0 bus 0 scbus0 target 1 lun 0 Oct 22 10:53:51 lovepod kernel: pass5: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass5: Serial Number 9VS2DYEQ Oct 22 10:53:51 lovepod kernel: pass5: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada3 at siisch0 bus 0 scbus0 target 1 lun 0 Oct 22 10:53:51 lovepod kernel: ada3: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada3: Serial Number 9VS2DYEQ Oct 22 10:53:51 lovepod kernel: ada3: 300.000MB/s transfers Oct 22 10:53:36 lovepod kernel: PMP freeze: 4 Oct 22 10:53:51 lovepod kernel: PM ports: 5 Oct 22 10:53:51 lovepod kernel: PM RESET 0 Oct 22 10:53:51 lovepod kernel: PM RESET 1 Oct 22 10:53:51 lovepod kernel: PM RESET 2 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: PM RESET 3 Oct 22 10:53:51 lovepod kernel: PM RESET 4 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: siisch0: SNTF 0x0000 Oct 22 10:53:51 lovepod kernel: PM reset done Oct 22 10:53:51 lovepod kernel: PM connect done Oct 22 10:53:51 lovepod kernel: PM status: 0 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 1 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 2 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 3 - 00000123 Oct 22 10:53:51 lovepod kernel: PM status: 4 - 00000123 Oct 22 10:53:51 lovepod kernel: PMP release: 0 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:0:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass4 at siisch0 bus 0 scbus0 target 0 lun 0 Oct 22 10:53:51 lovepod kernel: pass4: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass4: Serial Number 9VS2FJJR Oct 22 10:53:51 lovepod kernel: pass4: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada2 at siisch0 bus 0 scbus0 target 0 lun 0GEOM: new disk ada2 Oct 22 10:53:51 lovepod kernel: ada2: Oct 22 10:53:51 lovepod kernel: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada2: Serial Number 9VS2FJJR Oct 22 10:53:51 lovepod kernel: ada2: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada2: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada2: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: PMP release: 1 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:1:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass5 at siisch0 bus 0 scbus0 target 1 lun 0 Oct 22 10:53:51 lovepod kernel: pass5: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass5: Serial Number 9VS2DYEQ Oct 22 10:53:51 lovepod kernel: pass5: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada3 at siisch0 bus 0 scbus0 target 1 lun 0 Oct 22 10:53:51 lovepod kernel: ada3: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada3: Serial Number 9VS2DYEQ Oct 22 10:53:51 lovepod kernel: ada3: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada3: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada3: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: PMP release: 2 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:2:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass6 at siisch0 bus 0 scbus0 target 2 lun 0 Oct 22 10:53:51 lovepod kernel: pass6: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass6: Serial Number 9VS2FJQ0 Oct 22 10:53:51 lovepod kernel: pass6: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada4 at siisch0 bus 0 scbus0 target 2 lun 0 Oct 22 10:53:51 lovepod kernel: ada4: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada4: Serial Number 9VS2FJQ0 Oct 22 10:53:51 lovepod kernel: ada4: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada4: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada4: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: PMP release: 3 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:3:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass7 at siisch0 bus 0 scbus0 target 3 lun 0 Oct 22 10:53:51 lovepod kernel: pass7: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass7: Serial Number 9VS2FG9C Oct 22 10:53:51 lovepod kernel: pass7: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada5 at siisch0 bus 0 scbus0 target 3 lun 0 Oct 22 10:53:51 lovepod kernel: ada5: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada5: Serial Number 9VS2FG9C Oct 22 10:53:51 lovepod kernel: ada5: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada5: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada5: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: PMP release: 4 Oct 22 10:53:51 lovepod kernel: (aprobe0:siisch0:0:4:0): SIGNATURE: 0000 Oct 22 10:53:51 lovepod kernel: pass8 at siisch0 bus 0 scbus0 target 4 lun 0 Oct 22 10:53:51 lovepod kernel: pass8: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: pass8: Serial Number 9VS2DH15 Oct 22 10:53:51 lovepod kernel: pass8: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada6 at siisch0 bus 0 scbus0 target 4 lun 0 Oct 22 10:53:51 lovepod kernel: ada6: <ST31500341AS CC1H> ATA/ATAPI-8 SATA 2.x device Oct 22 10:53:51 lovepod kernel: ada6: Serial Number 9VS2DH15 Oct 22 10:53:51 lovepod kernel: ada6: 300.000MB/s transfers Oct 22 10:53:51 lovepod kernel: ada6: 1430799MB (2930277168 512 byte sectors: 16H 63S/T 16383C) Oct 22 10:53:51 lovepod kernel: ada6: Native Command Queueing enabled Oct 22 10:53:51 lovepod kernel: GEOM: new disk ada3 Oct 22 10:53:51 lovepod kernel: GEOM: new disk ada4 Oct 22 10:53:51 lovepod kernel: GEOM: new disk ada5 Oct 22 10:53:51 lovepod kernel: GEOM: new disk ada6