You are not logged in.

#1 2010-07-26 23:08:22

Alethos
Member
Registered: 2006-01-05
Posts: 84

BTRFS multi-disc persistent mount?

How do you make a raid10 btrfs ... ah ... pool, I guess is the right word, persistent? After a reboot I have to

btrfsctl -a

then

mount -U 11d8ccf8-0eb4-4787-94ba-ff5e1fb508ef /thulcandra-extra

Would be preferable to have it mount at boot but when I tried putting the mount line in fstab it complained.

Offline

#2 2010-07-28 15:23:35

Aedit
Member
Registered: 2009-10-29
Posts: 138

Re: BTRFS multi-disc persistent mount?

Putting both commands in /etc/rc.local works. One should not need to do that of course. Could you write a bug report?

Offline

#3 2010-07-28 15:26:03

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

Is it simply not possible (at this point)?

From the BTRFS wiki:
After a reboot or reloading the btrfs module, you'll need to use btrfsctl -a to discover all multi-device filesystems on the machine.

then it goes on to give the command I listed previously (btrfsctl -a).

Offline

#4 2010-07-28 15:27:15

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

Aedit wrote:

Putting both commands in /etc/rc.local works. One should not need to do that of course. Could you write a bug report?

Perhaps it's not a bug...it's a feature! Won't auto load (w/out intervention as you mention) for file checking purposes or somesuch?

Offline

#5 2010-07-28 15:57:02

Aedit
Member
Registered: 2009-10-29
Posts: 138

Re: BTRFS multi-disc persistent mount?

Can't think of any advantage, or any good reason the device discovery had not been done before fstab except the novelty of btrfs. The question now is what is the most appropriate way to run the "btrfsctl -a".

Last edited by Aedit (2010-07-28 16:05:18)

Offline

#6 2010-07-28 16:07:50

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

Likely its a similar reason that multi device discovery doesn't "just happen" in the case of LVM or RAID. Feel free to add "btrfs" to  your hooks in mkinitcpio. This was added in mkinitcpio 0.6.7 and simply runs 'btrfsctl -a' at boot.

If you want to boot off this device, you'll need a more advanced btrfs hook

Last edited by falconindy (2010-07-28 16:09:09)

Offline

#7 2010-07-28 18:02:13

Aedit
Member
Registered: 2009-10-29
Posts: 138

Re: BTRFS multi-disc persistent mount?

Nice there is a hook now, I hadn't looked at this for a while. The hook happens before rc.sysinit, which is OK, but you might not have all the devices to scan until the middle of rc.sysinit.

Last edited by Aedit (2010-07-28 18:06:20)

Offline

#8 2010-07-28 18:11:38

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

Aedit wrote:

Nice there is a hook now, I hadn't looked at this for a while. The hook happens before rc.sysinit, which is OK, but you might not have all the devices to scan until the middle of rc.sysinit.

I don't follow. If you're missing a device that you need at early on, add the appropriate modules to your initcpio so that you do have it before rc.sysinit.

Offline

#9 2010-07-28 22:33:48

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

Added btrfs to mkinitcpio.conf hooks line before filesystems (as in the wiki example lvm was before, not sure if placement within the hook line matters)

HOOKS="base udev autodetect pata scsi sata btrfs filesystems"

rebuilt image

sudo mkinitcpio -p kernel26

added mount to fstab

UUID=11d8ccf8-0eb4-4787-94ba-ff5e1fb508ef /thulcandra-extra btrfs gid=101 0 0

Still, boot complains (wrong fs or bad superblock msg - same as before). However, I tried to manually mount the FS and as a test I tried w/out running btrfsctl -a first and lo and behold it mounted. So the hook is working, just not before the FS is mounted at boot.

Offline

#10 2010-07-28 22:54:53

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

Well, order does matter but in this case I think you're safe. However, I'm suspicious that the correct modules are being added. Merge the following into your MODULES in mkinitcpio.conf:

btrfs
libcrc32c
crc32c
zlib_deflate

Regenerate, reboot. If this works, a bug report is in order.

Offline

#11 2010-07-28 23:12:09

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

Added modules to mkinitcpio.conf

MODULES="btrfs libcrc32c crc32c zlib_deflate"

regenerated sucessfully (by regenerate, I gather you to mean mkinitcpio -p kernel26), rebooted and still same error message

Offline

#12 2010-07-28 23:29:27

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

Could you post your blkid and pastie dmesg?

Offline

#13 2010-07-28 23:47:56

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

$ blkid
/dev/sdb: LABEL="thulcandra-extra" UUID="11d8ccf8-0eb4-4787-94ba-ff5e1fb508ef" UUID_SUB="35445cb2-93d7-481a-9646-9d9ac33fd271" TYPE="btrfs" 
/dev/sdc: LABEL="thulcandra-extra" UUID="11d8ccf8-0eb4-4787-94ba-ff5e1fb508ef" UUID_SUB="74ac369f-cde4-4b69-88dd-6deb1e743c7d" TYPE="btrfs" 
/dev/sdd: LABEL="thulcandra-extra" UUID="11d8ccf8-0eb4-4787-94ba-ff5e1fb508ef" UUID_SUB="5eba2397-284f-4c59-8b75-9584caa990a4" TYPE="btrfs"
Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.34-ARCH (tobias@T-POWA-LX) (gcc version 4.5.0 20100610 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Jul 5 22:12:11 CEST 2010
Command line: root=/dev/disk/by-uuid/190ba343-46f1-47fe-9c68-26b5204ccc67 ro
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
 BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
 BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
 BIOS-e820: 0000000000100000 - 00000000cfea0000 (usable)
 BIOS-e820: 00000000cfea0000 - 00000000cfeb0000 (ACPI data)
 BIOS-e820: 00000000cfeb0000 - 00000000cfee0000 (ACPI NVS)
 BIOS-e820: 00000000cfee0000 - 00000000cff00000 (reserved)
 BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
 BIOS-e820: 0000000100000000 - 0000000120000000 (usable)
NX (Execute Disable) protection: active
DMI present.
AMI BIOS detected: BIOS may corrupt low RAM, working around it.
e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
No AGP bridge found
last_pfn = 0x120000 max_arch_pfn = 0x400000000
MTRR default type: uncachable
MTRR fixed ranges enabled:
  00000-9FFFF write-back
  A0000-EFFFF uncachable
  F0000-FFFFF write-protect
MTRR variable ranges enabled:
  0 base 000000000000 mask FFFF80000000 write-back
  1 base 000080000000 mask FFFFC0000000 write-back
  2 base 0000C0000000 mask FFFFF0000000 write-back
  3 disabled
  4 disabled
  5 disabled
  6 disabled
  7 disabled
TOM2: 0000000130000000 aka 4864M
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved)
last_pfn = 0xcfea0 max_arch_pfn = 0x400000000
Scanning 0 areas for low memory corruption
modified physical RAM map:
 modified: 0000000000000000 - 0000000000010000 (reserved)
 modified: 0000000000010000 - 000000000009f800 (usable)
 modified: 000000000009f800 - 00000000000a0000 (reserved)
 modified: 00000000000e6000 - 0000000000100000 (reserved)
 modified: 0000000000100000 - 00000000cfea0000 (usable)
 modified: 00000000cfea0000 - 00000000cfeb0000 (ACPI data)
 modified: 00000000cfeb0000 - 00000000cfee0000 (ACPI NVS)
 modified: 00000000cfee0000 - 00000000cff00000 (reserved)
 modified: 00000000fff00000 - 0000000100000000 (reserved)
 modified: 0000000100000000 - 0000000120000000 (usable)
initial memory mapped : 0 - 20000000
found SMP MP-table at [ffff8800000ff780] ff780
Using GB pages for direct mapping
init_memory_mapping: 0000000000000000-00000000cfea0000
 0000000000 - 00c0000000 page 1G
 00c0000000 - 00cfe00000 page 2M
 00cfe00000 - 00cfea0000 page 4k
kernel direct mapping tables up to cfea0000 @ 16000-19000
init_memory_mapping: 0000000100000000-0000000120000000
 0100000000 - 0120000000 page 2M
kernel direct mapping tables up to 120000000 @ 18000-1a000
RAMDISK: 37e10000 - 37ff0000
ACPI: RSDP 00000000000fb6b0 00014 (v00 ACPIAM)
ACPI: RSDT 00000000cfea0000 0003C (v01 112609 RSDT1711 20091126 MSFT 00000097)
ACPI: FACP 00000000cfea0200 00084 (v01 A_M_I  OEMFACP  12000601 MSFT 00000097)
ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0000000000000000/1 (20100121/tbfadt-557)
ACPI: DSDT 00000000cfea0450 0910A (v01  AS265 AS265111 00000111 INTL 20051117)
ACPI: FACS 00000000cfeb0000 00040
ACPI: APIC 00000000cfea0390 0007C (v01 112609 APIC1711 20091126 MSFT 00000097)
ACPI: MCFG 00000000cfea0410 0003C (v01 112609 OEMMCFG  20091126 MSFT 00000097)
ACPI: OEMB 00000000cfeb0040 00072 (v01 112609 OEMB1711 20091126 MSFT 00000097)
ACPI: AAFT 00000000cfeaa450 00027 (v01 112609 OEMAAFT  20091126 MSFT 00000097)
ACPI: HPET 00000000cfeaa480 00038 (v01 112609 OEMHPET  20091126 MSFT 00000097)
ACPI: Local APIC address 0xfee00000
 [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff880002000000-ffff8800055fffff] on node 0
Zone PFN ranges:
  DMA      0x00000010 -> 0x00001000
  DMA32    0x00001000 -> 0x00100000
  Normal   0x00100000 -> 0x00120000
Movable zone start PFN for each node
early_node_map[3] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x000cfea0
    0: 0x00100000 -> 0x00120000
On node 0 totalpages: 982575
  DMA zone: 56 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 3927 pages, LIFO batch:0
  DMA32 zone: 14280 pages used for memmap
  DMA32 zone: 833240 pages, LIFO batch:31
  Normal zone: 1792 pages used for memmap
  Normal zone: 129280 pages, LIFO batch:31
ACPI: PM-Timer IO Port: 0x808
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
ACPI: IRQ0 used by override.
ACPI: IRQ2 used by override.
ACPI: IRQ9 used by override.
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8300 base: 0xfed00000
SMP: Allowing 6 CPUs, 4 hotplug CPUs
nr_irqs_gsi: 24
early_res array is doubled to 64 at [191e0 - 199df]
PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000
PM: Registered nosave memory: 00000000000e6000 - 0000000000100000
PM: Registered nosave memory: 00000000cfea0000 - 00000000cfeb0000
PM: Registered nosave memory: 00000000cfeb0000 - 00000000cfee0000
PM: Registered nosave memory: 00000000cfee0000 - 00000000cff00000
PM: Registered nosave memory: 00000000cff00000 - 00000000fff00000
PM: Registered nosave memory: 00000000fff00000 - 0000000100000000
Allocating PCI resources starting at cff00000 (gap: cff00000:30000000)
Booting paravirtualized kernel on bare hardware
setup_percpu: NR_CPUS:16 nr_cpumask_bits:16 nr_cpu_ids:6 nr_node_ids:1
PERCPU: Embedded 29 pages/cpu @ffff880001800000 s88232 r8192 d22360 u262144
pcpu-alloc: s88232 r8192 d22360 u262144 alloc=1*2097152
pcpu-alloc: [0] 0 1 2 3 4 5 - - 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 966447
Kernel command line: root=/dev/disk/by-uuid/190ba343-46f1-47fe-9c68-26b5204ccc67 ro
PID hash table entries: 4096 (order: 3, 32768 bytes)
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Checking aperture...
No AGP bridge found
Node 0: aperture @ 20000000 size 32 MB
Aperture pointing to e820 RAM. Ignoring.
Your BIOS doesn't leave a aperture memory hole
Please enable the IOMMU option in the BIOS setup
This costs you 64 MB of RAM
Mapping aperture over 65536 KB of RAM @ 20000000
PM: Registered nosave memory: 0000000020000000 - 0000000024000000
early_res array is doubled to 128 at [199e0 - 1a9df]
Subtract (60 early reservations)
  #1 [0001000000 - 00016e1178]   TEXT DATA BSS
  #2 [0037e10000 - 0037ff0000]         RAMDISK
  #3 [00016e2000 - 00016e2173]             BRK
  #4 [00000ff790 - 0000100000]   BIOS reserved
  #5 [00000ff780 - 00000ff790]    MP-table mpf
  #6 [000009f800 - 00000fd330]   BIOS reserved
  #7 [00000fd474 - 00000ff780]   BIOS reserved
  #8 [00000fd330 - 00000fd474]    MP-table mpc
  #9 [0000010000 - 0000012000]      TRAMPOLINE
  #10 [0000012000 - 0000016000]     ACPI WAKEUP
  #11 [0000016000 - 0000018000]         PGTABLE
  #12 [0000018000 - 0000019000]         PGTABLE
  #13 [00016e2180 - 00016e3180]         BOOTMEM
  #14 [0000019000 - 00000191e0]         BOOTMEM
  #15 [0001ee4000 - 0001ee5000]         BOOTMEM
  #16 [0001ee5000 - 0001ee6000]         BOOTMEM
  #17 [0002000000 - 0005600000]        MEMMAP 0
  #18 [00016e3180 - 00016fb180]         BOOTMEM
  #19 [00016fb180 - 0001713180]         BOOTMEM
  #20 [0001713180 - 000172b180]         BOOTMEM
  #21 [000172c000 - 000172d000]         BOOTMEM
  #22 [00016e1180 - 00016e11c1]         BOOTMEM
  #23 [00016e1200 - 00016e1243]         BOOTMEM
  #24 [00016e1280 - 00016e14b0]         BOOTMEM
  #25 [00016e14c0 - 00016e1528]         BOOTMEM
  #26 [00016e1540 - 00016e15a8]         BOOTMEM
  #27 [00016e15c0 - 00016e1628]         BOOTMEM
  #28 [00016e1640 - 00016e16a8]         BOOTMEM
  #29 [00016e16c0 - 00016e1728]         BOOTMEM
  #30 [00016e1740 - 00016e17a8]         BOOTMEM
  #31 [00016e17c0 - 00016e1828]         BOOTMEM
  #32 [00016e1840 - 00016e18a8]         BOOTMEM
  #33 [00016e18c0 - 00016e1928]         BOOTMEM
  #34 [00016e1940 - 00016e1960]         BOOTMEM
  #35 [00016e1980 - 00016e19a0]         BOOTMEM
  #36 [00016e19c0 - 00016e19ff]         BOOTMEM
  #37 [00016e1a00 - 00016e1a3f]         BOOTMEM
  #38 [0001800000 - 000181d000]         BOOTMEM
  #39 [0001840000 - 000185d000]         BOOTMEM
  #40 [0001880000 - 000189d000]         BOOTMEM
  #41 [00018c0000 - 00018dd000]         BOOTMEM
  #42 [0001900000 - 000191d000]         BOOTMEM
  #43 [0001940000 - 000195d000]         BOOTMEM
  #44 [00016e1a40 - 00016e1a48]         BOOTMEM
  #45 [00016e1a80 - 00016e1a88]         BOOTMEM
  #46 [00016e1ac0 - 00016e1ad8]         BOOTMEM
  #47 [00016e1b00 - 00016e1b30]         BOOTMEM
  #48 [00016e1b40 - 00016e1c60]         BOOTMEM
  #49 [00016e1c80 - 00016e1cc8]         BOOTMEM
  #50 [00016e1d00 - 00016e1d48]         BOOTMEM
  #51 [000172d000 - 0001735000]         BOOTMEM
  #52 [000195d000 - 0001d5d000]         BOOTMEM
  #53 [0005600000 - 0005800000]         BOOTMEM
  #54 [0020000000 - 0024000000]         BOOTMEM
  #55 [00016e1d80 - 00016e1da0]         BOOTMEM
  #56 [0005800000 - 0009800000]         BOOTMEM
  #57 [0001735000 - 0001755000]         BOOTMEM
  #58 [0001755000 - 0001795000]         BOOTMEM
  #59 [000001aa00 - 0000022a00]         BOOTMEM
Memory: 3727324k/4718592k available (3484k kernel code, 788292k absent, 202976k reserved, 1796k data, 480k init)
SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
Hierarchical RCU implementation.
NR_IRQS:768
Console: colour VGA+ 80x25
console [tty0] enabled
allocated 39321600 bytes of page_cgroup
please try 'cgroup_disable=memory' option if you don't want memory cgroups
hpet clockevent registered
Fast TSC calibration using PIT
Detected 3113.304 MHz processor.
Calibrating delay loop (skipped), value calculated using timer frequency.. 6229.04 BogoMIPS (lpj=10377666)
Security Framework initialized
Mount-cache hash table entries: 256
Initializing cgroup subsys ns
Initializing cgroup subsys cpuacct
Initializing cgroup subsys memory
Initializing cgroup subsys devices
Initializing cgroup subsys freezer
Initializing cgroup subsys net_cls
tseg: 0000000000
CPU: Physical Processor ID: 0
CPU: Processor Core ID: 0
mce: CPU supports 6 MCE banks
Performance Events: AMD PMU driver.
... version:                0
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             00007fffffffffff
... fixed-purpose events:   0
... event mask:             000000000000000f
ACPI: Core revision 20100121
Setting APIC routing to flat
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
CPU0: AMD Athlon(tm) II X2 255 Processor stepping 02
Booting Node   0, Processors  #1
Brought up 2 CPUs
Total of 2 processors activated (12457.41 BogoMIPS).
devtmpfs: initialized
NET: Registered protocol family 16
node 0 link 0: io port [1000, ffffff]
TOM: 00000000d0000000 aka 3328M
Fam 10h mmconf [e0000000, efffffff]
node 0 link 0: mmio [a0000, bffff]
node 0 link 0: mmio [d0000000, efffffff] ==> [d0000000, dfffffff]
node 0 link 0: mmio [f0000000, fe8fffff]
node 0 link 0: mmio [fe900000, feafffff]
node 0 link 0: mmio [feb00000, ffefffff]
TOM2: 0000000130000000 aka 4864M
bus: [00, 07] on node 0 link 0
bus: 00 index 0 [io  0x0000-0xffff]
bus: 00 index 1 [mem 0x000a0000-0x000bffff]
bus: 00 index 2 [mem 0xd0000000-0xdfffffff]
bus: 00 index 3 [mem 0xf0000000-0xffffffff]
bus: 00 index 4 [mem 0x130000000-0xfcffffffff]
ACPI: bus type pci registered
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: not using MMCONFIG
PCI: Using configuration type 1 for base access
PCI: Using configuration type 1 for extended access
bio: create slab <bio-0> at 0
ACPI: EC: Look up EC in DSDT
ACPI: Executed 4 blocks of module-level executable AML code
ACPI: Interpreter enabled
ACPI: (supports S0 S1 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
ACPI: No dock devices found.
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (0000:00)
pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xdfffffff]
pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
pci 0000:00:0a.0: PME# disabled
pci 0000:00:11.0: reg 10: [io  0xc000-0xc007]
pci 0000:00:11.0: reg 14: [io  0xb000-0xb003]
pci 0000:00:11.0: reg 18: [io  0xa000-0xa007]
pci 0000:00:11.0: reg 1c: [io  0x9000-0x9003]
pci 0000:00:11.0: reg 20: [io  0x8000-0x800f]
pci 0000:00:11.0: reg 24: [mem 0xfe8ffc00-0xfe8fffff]
pci 0000:00:12.0: reg 10: [mem 0xfe8fe000-0xfe8fefff]
pci 0000:00:12.1: reg 10: [mem 0xfe8fd000-0xfe8fdfff]
pci 0000:00:12.2: reg 10: [mem 0xfe8ff800-0xfe8ff8ff]
pci 0000:00:12.2: supports D1 D2
pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
pci 0000:00:12.2: PME# disabled
pci 0000:00:13.0: reg 10: [mem 0xfe8fc000-0xfe8fcfff]
pci 0000:00:13.1: reg 10: [mem 0xfe8f7000-0xfe8f7fff]
pci 0000:00:13.2: reg 10: [mem 0xfe8ff400-0xfe8ff4ff]
pci 0000:00:13.2: supports D1 D2
pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
pci 0000:00:13.2: PME# disabled
pci 0000:00:14.1: reg 10: [io  0x0000-0x0007]
pci 0000:00:14.1: reg 14: [io  0x0000-0x0003]
pci 0000:00:14.1: reg 18: [io  0x0000-0x0007]
pci 0000:00:14.1: reg 1c: [io  0x0000-0x0003]
pci 0000:00:14.1: reg 20: [io  0xff00-0xff0f]
pci 0000:00:14.5: reg 10: [mem 0xfe8f6000-0xfe8f6fff]
pci 0000:01:05.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
pci 0000:01:05.0: reg 14: [io  0xd000-0xd0ff]
pci 0000:01:05.0: reg 18: [mem 0xfeaf0000-0xfeafffff]
pci 0000:01:05.0: reg 24: [mem 0xfe900000-0xfe9fffff]
pci 0000:01:05.0: supports D1 D2
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
pci 0000:00:01.0:   bridge window [mem 0xfe900000-0xfeafffff]
pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:02:00.0: reg 10: [io  0xe800-0xe8ff]
pci 0000:02:00.0: reg 18: [mem 0xfdfff000-0xfdffffff 64bit pref]
pci 0000:02:00.0: reg 20: [mem 0xfdff8000-0xfdffbfff 64bit pref]
pci 0000:02:00.0: reg 30: [mem 0xfebe0000-0xfebfffff pref]
pci 0000:02:00.0: supports D1 D2
pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
pci 0000:02:00.0: PME# disabled
pci 0000:00:0a.0: PCI bridge to [bus 02-02]
pci 0000:00:0a.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:0a.0:   bridge window [mem 0xfeb00000-0xfebfffff]
pci 0000:00:0a.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
pci 0000:00:14.4: PCI bridge to [bus 03-03] (subtractive decode)
pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0xcff00000-0xdfffffff] (subtractive decode)
pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
pci_bus 0000:00: on NUMA node 0
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCEA._PRT]
ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
ACPI: PCI Interrupt Link [LNKA] (IRQs 4 *7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKB] (IRQs *4 7 10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 *10 11 12 14 15)
ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 12 14 15) *0, disabled.
ACPI: PCI Interrupt Link [LNKG] (IRQs 4 10 *11 12 14 15)
ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 12 14 15) *0, disabled.
vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
PCI: Using ACPI for IRQ routing
PCI: pci_cache_line_size set to 64 bytes
reserve RAM buffer: 000000000009f800 - 000000000009ffff 
reserve RAM buffer: 00000000cfea0000 - 00000000cfffffff 
NetLabel: Initializing
NetLabel:  domain hash size = 128
NetLabel:  protocols = UNLABELED CIPSOv4
NetLabel:  unlabeled traffic allowed by default
hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
hpet0: 4 comparators, 32-bit 14.318180 MHz counter
Switching to clocksource tsc
pnp: PnP ACPI init
ACPI: bus type pnp registered
pnp: PnP ACPI: found 12 devices
ACPI: ACPI bus type pnp unregistered
system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
system 00:08: [io  0x04d0-0x04d1] has been reserved
system 00:08: [io  0x040b] has been reserved
system 00:08: [io  0x04d6] has been reserved
system 00:08: [io  0x0c00-0x0c01] has been reserved
system 00:08: [io  0x0c14] has been reserved
system 00:08: [io  0x0c50-0x0c51] has been reserved
system 00:08: [io  0x0c52] has been reserved
system 00:08: [io  0x0c6c] has been reserved
system 00:08: [io  0x0c6f] has been reserved
system 00:08: [io  0x0cd0-0x0cd1] has been reserved
system 00:08: [io  0x0cd2-0x0cd3] has been reserved
system 00:08: [io  0x0cd4-0x0cd5] has been reserved
system 00:08: [io  0x0cd6-0x0cd7] has been reserved
system 00:08: [io  0x0cd8-0x0cdf] has been reserved
system 00:08: [io  0x0800-0x089f] has been reserved
system 00:08: [io  0x0b00-0x0b0f] has been reserved
system 00:08: [io  0x0b20-0x0b3f] has been reserved
system 00:08: [io  0x0900-0x090f] has been reserved
system 00:08: [io  0x0910-0x091f] has been reserved
system 00:08: [io  0xfe00-0xfefe] has been reserved
system 00:08: [mem 0xffb80000-0xffbfffff] has been reserved
system 00:08: [mem 0xfec10000-0xfec1001f] has been reserved
system 00:09: [io  0x0280-0x028f] has been reserved
system 00:09: [io  0x0290-0x029f] has been reserved
system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
system 00:0b: [mem 0x000c0000-0x000cffff] has been reserved
system 00:0b: [mem 0x000e0000-0x000fffff] could not be reserved
system 00:0b: [mem 0x00100000-0xcfefffff] could not be reserved
system 00:0b: [mem 0xfec00000-0xffffffff] could not be reserved
pci 0000:00:01.0: PCI bridge to [bus 01-01]
pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
pci 0000:00:01.0:   bridge window [mem 0xfe900000-0xfeafffff]
pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
pci 0000:00:0a.0: PCI bridge to [bus 02-02]
pci 0000:00:0a.0:   bridge window [io  0xe000-0xefff]
pci 0000:00:0a.0:   bridge window [mem 0xfeb00000-0xfebfffff]
pci 0000:00:0a.0:   bridge window [mem 0xfdf00000-0xfdffffff 64bit pref]
pci 0000:00:14.4: PCI bridge to [bus 03-03]
pci 0000:00:14.4:   bridge window [io  disabled]
pci 0000:00:14.4:   bridge window [mem disabled]
pci 0000:00:14.4:   bridge window [mem pref disabled]
pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
pci 0000:00:0a.0: setting latency timer to 64
pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
pci_bus 0000:00: resource 8 [mem 0xcff00000-0xdfffffff]
pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
pci_bus 0000:01: resource 1 [mem 0xfe900000-0xfeafffff]
pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
pci_bus 0000:02: resource 1 [mem 0xfeb00000-0xfebfffff]
pci_bus 0000:02: resource 2 [mem 0xfdf00000-0xfdffffff 64bit pref]
pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7]
pci_bus 0000:03: resource 5 [io  0x0d00-0xffff]
pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff]
pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff]
pci_bus 0000:03: resource 8 [mem 0xcff00000-0xdfffffff]
pci_bus 0000:03: resource 9 [mem 0xf0000000-0xfebfffff]
NET: Registered protocol family 2
IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
TCP: Hash tables configured (established 262144 bind 65536)
TCP reno registered
UDP hash table entries: 2048 (order: 4, 65536 bytes)
UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
NET: Registered protocol family 1
pci 0000:01:05.0: Boot video device
PCI: CLS 64 bytes, default 64
Unpacking initramfs...
Freeing initrd memory: 1920k freed
PCI-DMA: Disabling AGP.
PCI-DMA: aperture base @ 20000000 size 65536 KB
PCI-DMA: using GART IOMMU.
PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
Scanning for low memory corruption every 60 seconds
audit: initializing netlink socket (disabled)
type=2000 audit(1280358465.392:1): initialized
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
msgmni has been set to 7412
alg: No test for stdrng (krng)
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered (default)
pcieport 0000:00:0a.0: setting latency timer to 64
pcieport 0000:00:0a.0: irq 24 for MSI/MSI-X
pcieport 0000:00:0a.0: Requesting control of PCIe PME from ACPI BIOS
Firmware did not grant requested _OSC control
pcieport 0000:00:0a.0: Failed to receive control of PCIe PME service: no _OSC support
pcie_pme: probe of 0000:00:0a.0:pcie01 failed with error -13
Linux agpgart interface v0.103
Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
PNP: No PS/2 controller found. Probing ports directly.
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mice: PS/2 mouse device common for all mice
cpuidle: using governor ladder
cpuidle: using governor menu
TCP cubic registered
NET: Registered protocol family 17
PM: Resume from disk failed.
registered taskstats version 1
Initalizing network drop monitor service
Freeing unused kernel memory: 480k freed
udev: starting version 160
Btrfs loaded
SCSI subsystem initialized
libata version 3.00 loaded.
pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
pata_acpi 0000:00:14.1: setting latency timer to 64
ahci 0000:00:11.0: version 3.0
ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
ata1: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffd00 irq 22
ata2: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffd80 irq 22
ata3: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffe00 irq 22
ata4: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8ffe80 irq 22
ata5: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8fff00 irq 22
ata6: SATA max UDMA/133 abar m1024@0xfe8ffc00 port 0xfe8fff80 irq 22
scsi6 : pata_atiixp
scsi7 : pata_atiixp
ata7: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
ata8: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
ata8.00: ATA-6: ST3200822A, 3.01, max UDMA/100
ata8.00: 390721968 sectors, multi 16: LBA48 
ata8.00: configured for UDMA/100
ata5: SATA link down (SStatus 0 SControl 300)
ata6: SATA link down (SStatus 0 SControl 300)
ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata1.00: ATA-8: WDC WD10EARS-00Y5B1, 80.00A80, max UDMA/133
ata2.00: ATA-8: WDC WD10EARS-00Y5B1, 80.00A80, max UDMA/133
ata2.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata1.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
ata4.00: ATA-8: WDC WD10EACS-65D6B0, 01.01A01, max UDMA/133
ata1.00: configured for UDMA/133
ata4.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata2.00: configured for UDMA/133
ata3.00: ATA-8: WDC WD10EARS-00Y5B1, 80.00A80, max UDMA/133
ata3.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
ata4.00: configured for UDMA/133
ata3.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EARS-00Y 80.0 PQ: 0 ANSI: 5
scsi 1:0:0:0: Direct-Access     ATA      WDC WD10EARS-00Y 80.0 PQ: 0 ANSI: 5
scsi 2:0:0:0: Direct-Access     ATA      WDC WD10EARS-00Y 80.0 PQ: 0 ANSI: 5
scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EACS-65D 01.0 PQ: 0 ANSI: 5
scsi 7:0:0:0: Direct-Access     ATA      ST3200822A       3.01 PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 1:0:0:0: [sdb] Write Protect is off
sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdb:
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 3:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
sd 3:0:0:0: [sdd] Write Protect is off
sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdd:
sd 7:0:0:0: [sde] 390721968 512-byte logical blocks: (200 GB/186 GiB)
sd 7:0:0:0: [sde] Write Protect is off
sd 7:0:0:0: [sde] Mode Sense: 00 3a 00 00
sd 7:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sde:
sd 2:0:0:0: [sdc] Write Protect is off
sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
 sda:
sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
 sdc: unknown partition table
sd 3:0:0:0: [sdd] Attached SCSI disk
 unknown partition table
sd 1:0:0:0: [sdb] Attached SCSI disk
 unknown partition table
 sde1 sde2 sde3
sd 2:0:0:0: [sdc] Attached SCSI disk
 unknown partition table
sd 0:0:0:0: [sda] Attached SCSI disk
sd 7:0:0:0: [sde] Attached SCSI disk
device label thulcandra-extra devid 2 transid 385 /dev/sdc
device label thulcandra-extra devid 4 transid 385 /dev/sdd
device label thulcandra-extra devid 3 transid 385 /dev/sda
device label thulcandra-extra devid 1 transid 385 /dev/sdb
EXT4-fs (sde3): mounted filesystem with ordered data mode
rtc_cmos 00:03: RTC can wake from S4
rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
udev: starting version 160
input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
ACPI: Power Button [PWRB]
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
ACPI: Power Button [PWRF]
ACPI: WMI: Mapper loaded
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
sd 0:0:0:0: Attached scsi generic sg0 type 0
sd 1:0:0:0: Attached scsi generic sg1 type 0
sd 2:0:0:0: Attached scsi generic sg2 type 0
sd 3:0:0:0: Attached scsi generic sg3 type 0
sd 7:0:0:0: Attached scsi generic sg4 type 0
k10temp 0000:00:18.3: unreliable CPU thermal sensor; monitoring disabled
ACPI: resource piix4_smbus [io  0x0b00-0x0b07] conflicts with ACPI region SOR1 [mem 0x00000b00-0x00000b0f pref disabled]
ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
r8169 0000:02:00.0: setting latency timer to 64
r8169 0000:02:00.0: irq 25 for MSI/MSI-X
r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xffffc90010210000, 00:25:22:19:98:cc, XID 081000c0 IRQ 25
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
input: PC Speaker as /devices/platform/pcspkr/input/input2
[drm] Initialized drm 1.1.0 20060810
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
ehci_hcd 0000:00:12.2: EHCI Host Controller
ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
ehci_hcd 0000:00:12.2: debug port 1
ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe8ff800
ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 6 ports detected
ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
ehci_hcd 0000:00:13.2: EHCI Host Controller
ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
ehci_hcd 0000:00:13.2: debug port 1
ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe8ff400
ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 6 ports detected
EDAC MC: Ver: 2.1.0 Jul  5 2010
EDAC amd64_edac:  Ver: 3.3.0 Jul  5 2010
EDAC amd64: This node reports that Memory ECC is currently disabled, set F3x44[22] (0000:00:18.3).
EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
 Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
 (Note that use of the override may cause unknown side effects.)
amd64_edac: probe of 0000:00:18.2 failed with error -22
[drm] radeon defaulting to kernel modesetting.
[drm] radeon kernel modesetting enabled.
radeon 0000:01:05.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
radeon 0000:01:05.0: setting latency timer to 64
[drm] initializing kernel modesetting (RS880 0x1002:0x9710).
[drm] register mmio base: 0xFEAF0000
[drm] register mmio size: 65536
ATOM BIOS: B43106_DVI
[drm] Clocks initialized !
[drm] 1 Power State(s)
[drm] State 0 Default (default)
[drm]     1 Clock Mode(s)
[drm]         0 engine: 830000
[drm] radeon: power management initialized
radeon 0000:01:05.0: VRAM: 256M 0xC0000000 - 0xCFFFFFFF (256M used)
radeon 0000:01:05.0: GTT: 512M 0xA0000000 - 0xBFFFFFFF
[drm] Detected VRAM RAM=256M, BAR=256M
[drm] RAM width 32bits DDR
[TTM] Zone  kernel: Available graphics memory: 1897836 kiB.
[drm] radeon: 256M of VRAM memory ready
[drm] radeon: 512M of GTT memory ready.
[drm] radeon: irq initialized.
[drm] GART: num cpu pages 131072, num gpu pages 131072
[drm] Loading RS780 Microcode
platform radeon_cp.0: firmware: requesting radeon/RS780_pfp.bin
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.0: OHCI Host Controller
ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe8fe000
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 3 ports detected
ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
ohci_hcd 0000:00:12.1: OHCI Host Controller
ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe8fd000
hub 4-0:1.0: USB hub found
hub 4-0:1.0: 3 ports detected
ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.0: OHCI Host Controller
ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe8fc000
hub 5-0:1.0: USB hub found
hub 5-0:1.0: 3 ports detected
ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:13.1: OHCI Host Controller
ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe8f7000
platform radeon_cp.0: firmware: requesting radeon/RS780_me.bin
hub 6-0:1.0: USB hub found
hub 6-0:1.0: 3 ports detected
ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
ohci_hcd 0000:00:14.5: OHCI Host Controller
ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe8f6000
hub 7-0:1.0: USB hub found
hub 7-0:1.0: 2 ports detected
platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin
usb 3-2: new low speed USB device using ohci_hcd and address 2
[drm] ring test succeeded in 0 usecs
[drm] radeon: ib pool ready.
[drm] ib test succeeded in 0 usecs
[drm] Enabling audio support
[drm] Unknown TV standard; defaulting to NTSC
[drm] Radeon Display Connectors
[drm] Connector 0:
[drm]   VGA
[drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
[drm]   Encoders:
[drm]     CRT1: INTERNAL_KLDSCP_DAC1
[drm] Connector 1:
[drm]   DVI-D
[drm]   HPD3
[drm]   DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c
[drm]   Encoders:
[drm]     DFP3: INTERNAL_KLDSCP_LVTMA
[drm] fb mappable at 0xD0141000
[drm] vram apper at 0xD0000000
[drm] size 5242880
[drm] fb depth is 24
[drm]    pitch is 5120
Console: switching to colour frame buffer device 160x64
fb0: radeondrmfb frame buffer device
registered panic notifier
[drm] Initialized radeon 2.3.0 20080528 for 0000:01:05.0 on minor 0
usb 5-1: new low speed USB device using ohci_hcd and address 2
usbcore: registered new interface driver hiddev
input: CHICONY Compaq USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.0/input/input3
generic-usb 0003:049F:0051.0001: input,hidraw0: USB HID v1.10 Keyboard [CHICONY Compaq USB Keyboard] on usb-0000:00:12.0-2/input0
input: CHICONY Compaq USB Keyboard as /devices/pci0000:00/0000:00:12.0/usb3/3-2/3-2:1.1/input/input4
generic-usb 0003:049F:0051.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [CHICONY Compaq USB Keyboard] on usb-0000:00:12.0-2/input1
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
input: Logitech USB Receiver as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.0/input/input5
generic-usb 0003:046D:C510.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:13.0-1/input0
device label thulcandra-extra devid 3 transid 385 /dev/sda
btrfs: unrecognized mount option 'gid=101'
btrfs: open_ctree failed
Adding 4000180k swap on /dev/sde2.  Priority:-1 extents:1 across:4000180k 
r8169 0000:02:00.0: eth0: link up
r8169 0000:02:00.0: eth0: link up
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
eth0: no IPv6 routers present
fuse init (API version 7.13)
device label thulcandra-extra devid 3 transid 385 /dev/sda

Offline

#14 2010-07-29 00:22:53

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

btrfsctl is failing to find anything, and I'm not sure why. You should be seeing discovered drives. Something like...

Btrfs loaded
device label Gluttony devid 1 transid 75112 /dev/sdd1
device label Entropy devid 1 transid 5009 /dev/sdb4
device label root devid 2 transid 20801 /dev/sdb3
device label root devid 1 transid 20801 /dev/sda2
device label root devid 1 transid 20801 /dev/disk/by-uuid/254d2593-b402-42be-8a18-9dc5cc64c18

Anything peculiar about these drives, or are they just your average run of the mill internal disks? Perhaps try the other hook from the AUR? I'm running out of ideas...

Aside: Am I really seeing that blkid correctly? You fed entire drives, without partitioning to mkfs.btrfs?

Last edited by falconindy (2010-07-29 00:23:25)

Offline

#15 2010-07-29 00:50:59

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

Run of the mill disks, yep. WD green tb's. btrfs loads a smidgin before the devices are listed in dmesg, could this be the issue as Aedit mentioned or are those modules you had me load good enough?

You are reading that correctly, i fed entire devices, no partitioning. This is the first I've messed with any type of raid. I didn't know if partitions were necessary if the whole drive was going to be used. I followed the btrfs wiki for multi-drive setups, their example is whole devices, not partitions.

# Create a filesystem across four drives
mkfs.btrfs /dev/sdb /dev/sdc /dev/sdd /dev/sde

So, to answer your question I did mkfs.btrfs, just not partition level.

A side thought from me...my btrfs raid is spanning 4 drives, wonder why blkid is only showing 3/ once the FS is mounted, it is the proper size for 4 disks.

I'll keep looking online and poking around.

Last edited by Alethos (2010-07-29 01:24:44)

Offline

#16 2010-07-29 14:55:06

yejun
Member
Registered: 2009-10-21
Posts: 66

Re: BTRFS multi-disc persistent mount?

btrfs: unrecognized mount option 'gid=101'
btrfs: open_ctree failed
Adding 4000180k swap on /dev/sde2.  Priority:-1 extents:1 across:4000180k

Maybe fixed the mount option. And how is it possible to use both sde2 and sde?

Offline

#17 2010-07-29 15:18:38

falconindy
Developer
From: New York, USA
Registered: 2009-10-22
Posts: 4,111
Website

Re: BTRFS multi-disc persistent mount?

Those messages late enough that they're likely being generated by mount -a when called from rc.sysinit. The bad mount option shouldn't prevent the volume from being mounted. The line after is the effect from the failed mount. It's something you see when not all the required modules are loaded for btrfs -- perhaps there's other triggers as well.

The very last line of the log I can only assume is the OP running btrfsctl -a manually.

edit: I'm curious about about the sde2 && sde thing as well now... hmm

Last edited by falconindy (2010-07-29 15:19:52)

Offline

#18 2010-07-30 13:19:18

Alethos
Member
Registered: 2006-01-05
Posts: 84

Re: BTRFS multi-disc persistent mount?

In post 16 the code I have is from the btrfs wiki, not necessarily what I have on my machine. sde is my OS drive partitioned out with boot swap and root. sda, b, c and d are the storage drives. Sorry for the confusion.

Offline

Board footer

Powered by FluxBB