Re: [PATCH 12/12] MIPS: PCI: Fix IP27 for the PCI_PROBE_ONLY case

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 02/07/2017 13:29, Bjorn Helgaas wrote:
> Hi Joshua,
> 
> First of all, apologies for breaking IP27 and the inconvenience this
> caused you.  And thanks a lot for tracking down the problem and
> proposing a solution!

Eh, don't worry, IP27's been broken and unbroken over the years.  These systems
are becoming difficult to find intact, so these breaks tend to go unnoticed.


> On Tue, Feb 7, 2017 at 12:13 AM, Joshua Kinard <kumba@xxxxxxxxxx> wrote:
>> From: Joshua Kinard <kumba@xxxxxxxxxx>
>>
>> Commit 046136170a56 changed things such that setting PCI_PROBE_ONLY
>> will now explicitly claim PCI resources instead of skipping the sizing
>> of the bridges and assigning resources.  This is okay for IP30's PCI
>> code, which doesn't use physical address space to access I/O resources.
>>
>> However, IP27 is completely different in this regard.  Instead of using
>> ioremapped addresses for I/O, IP27 has a dedicated address range,
>> 0x92xxxxxxxxxxxxxx, that is used for all I/O access.  Since this is
>> uncached physical address space, the generic MIPS PCI code will not
>> probe it correctly and thus, the original behavior of PCI_PROBE_ONLY
>> needs to be restored only for the IP27 platform to bypass this logic
>> and have working PCI, at least for the IO6/IO6G board that houses the
>> base devices, until a better solution is found.
> 
> It sounds like there's something different about how ioremap() works
> on these platforms and PCI probing is tripping over that.  I'd really
> like to understand more about this difference to see if we can
> converge that instead of adding back the PCI_PROBE_ONLY usage.

I'd need to go and dig around in the IP27 headers again for this machine to see
what ioremap() is actually doing, but I *think* it returns uncached physical
addresses in most instances because of a special feature of the CPU, the
R10000-family, which makes uncached access very fast.  I think only the IP27
platform uses this capability.  Other R1x0-based systems don't (although, I
might be wrong about IP27's successor in IP35).


> Drivers shouldn't know whether they're running on IP27 or IP30, and
> they should be using ioremap() in both cases.  Does ioremap() work
> differently on IP27 and IP30?  Does this have something to do with
> plat_ioremap() or fixup_bigphys_addr()?

I believe most drivers won't know about this change.  The patch I proposed
modifies two files very specific to MIPS and SGI systems, one being the PCI
module for "legacy" MIPS systems, and the newly-proposed generic BRIDGE driver
(created by an earlier patch in this patch series).

The BRIDGE ASIC (and its cousin, the XBRIDGE) are only used on SGI systems and
they provide a translation layer from Crosstalk address space (Xtalk, the
system interconnect bus) to PCI devices by translating PCI ops into something
understood by the rest of the system.  BRIDGE is the only thing that needs to
get setup correctly, and then, I think, other drivers should be unaware of the
magic going on behind the scenes.

That said, it's still a hack that I proposed.  IP27 has long had issues with
PCI because it uses addresses differently.  I'm no expert in these systems --
just a hobby of mine I do in my free time -- but I'll refer you to these two
documents, which are archive copies since SGI retired Techpubs last year:

Origin™ and Onyx2™ Theory of Operations Manual:
http://csweb.cs.wfu.edu/~torgerse/Kokua/SGI/007-3439-002/sgi_html/index.html

Origin™ and Onyx2™ Programmer's Reference Manual
http://csweb.cs.wfu.edu/~torgerse/Kokua/SGI/007-3410-001/sgi_html/ch02.html#id5437809

The whole setup is extremely modular, so each node gets a static, fixed portion
of physical address space, regardless if that node is actually present or not.
By setting various bits in the upper part of a memory address, you can do
various things on specific nodes.  See Chapter 1 in the programmer's manual for
the details.

The address space in question here, 0x9200000000000000, is how you tell the HUB
(system controller for each node board) to access I/O space and talk to the
device peripherals.  Since this is physical address space, there's no need to
ioremap, so I think deep in the IP27 headers, ioremap just falls through and
returns one of these physical address, then you add in the needed offsets (node
number, crosstalk port, and PCI address) to get to the device you're trying to
reach.

IP30, SGI Octane, is similar in that it's like a single-node IP27 system.  It
has a HEART as a system controller instead of a HUB, but also uses Crosstalk
devices.  Documentation for the system doesn't really exist -- work on it has
been done via manual reverse engineering by people way better than I at this.
I've just been maintaining the code in external patches over the years.

I think the addresses on that platform *might* also be physical addresses, but
with no documentation on HEART, it's unknown if HEART treats certain address
spaces in special ways like HUB does.


> Is there any chance you can collect complete dmesg logs and
> /proc/iomem contents from IP27 and IP30?  Maybe "lspci -vv" output,
> too?  I'm not sure where to look to understand the ioremap() behavior.

Due to the size, I'll attach the dmesg and lspci outputs from both platforms as
text files, and inline /proc/iomem.  There are three dmesg files for IP27.  One
is a normal boot with enough patches to make PCI work.  Another is without the
PCI_PROBE_ONLY flag and my hack, so it will try to size/assign the resources,
and the last is with PCI_PROBE_ONLY and my hack, so it will try to "claim" the
resources only.  For the last two, each results in different error paths.

A note about IP30, since that's part of an external patch set, the dmesg output
is a little different, as it is using the newer BRIDGE/Xtalk code I just sent
in as patches.  IP27's dmesg output won't be using my full patchset in this
test, so it'll more closely resemble what you'd get out of the existing
mainline code.

Also, IP30 doesn't use the PCI_PROBE_ONLY thing anymore.  This causes
/proc/iomem to be far more detailed than it used to be.

IP30's /proc/iomem:
    00000000-00003fff : reserved
    1d200000-1d9fffff : Bridge MEM
      d080000000-d080003fff : 0001:00:03.0
      1d204000-1d204fff : 0001:00:02.0
      1d205000-1d205fff : 0001:00:02.1
      1d206000-1d206fff : 0001:00:02.2
      1d207000-1d2070ff : 0001:00:02.3
      1d207100-1d20717f : 0001:00:01.0
    1f200000-1f9fffff : Bridge MEM
      f080100000-f0801fffff : 0000:00:02.0
      f080010000-f08001ffff : 0000:00:00.0
      f080030000-f08003ffff : 0000:00:01.0
      f080000000-f080000fff : 0000:00:00.0
      f080020000-f080020fff : 0000:00:01.0
    20004000-209b8fff : reserved
      20004000-206acb13 : Kernel code
      206acb14-208affff : Kernel data
    209b9000-20efffff : System RAM
    20f00000-20ffffff : System RAM
    21000000-9fffffff : System RAM
    f080100000-f0801fffff : ioc3

IP27's /proc/iomem (from the working boot):
    0f600000-0f6fffff : ioc3
      0f680000-0f687fff : rtc-m48t35
    0fa00000-0fafffff : ioc3
    920000000b200000-920000000b9fffff : Bridge MEM
    920000000c200000-920000000c9fffff : Bridge MEM
    920000000f200000-920000000f9fffff : Bridge MEM
      920000000f620170-920000000f620177 : serial
      920000000f620178-920000000f62017f : serial
    920000000fa20170-920000000fa20177 : serial
    920000000fa20178-920000000fa2017f : serial


> What exactly is the PCI probe failure without this patch?  If you have
> a console log (with "ignore_loglevel") it might have a clue, too.
> 
>> Fixes: 046136170a56 ("MIPS/PCI: Claim bus resources on PCI_PROBE_ONLY set-ups")
>> Signed-off-by: Joshua Kinard <kumba@xxxxxxxxxx>
>> Cc: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
>> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@xxxxxxx>
>> Cc: Thomas Bogendoerfer <tsbogend@xxxxxxxxxxxxxxxx>
>> ---
>>  arch/mips/pci/pci-bridge.c | 15 +++++++++++++++
>>  arch/mips/pci/pci-legacy.c | 15 +++++++++++++++
>>  2 files changed, 30 insertions(+)
>>
>> diff --git a/arch/mips/pci/pci-bridge.c b/arch/mips/pci/pci-bridge.c
>> index 9df13ce313b5..af7073dba36b 100644
>> --- a/arch/mips/pci/pci-bridge.c
>> +++ b/arch/mips/pci/pci-bridge.c
>> @@ -62,6 +62,21 @@ bridge_probe(nasid_t nasid, int widget_id, int masterwid)
>>         unsigned long offset = NODE_OFFSET(nasid);
>>         struct bridge_controller *bc;
>>
>> +#ifdef CONFIG_SGI_IP27
> 
> I don't know how MIPS multi-platform support works.  If you enable
> CONFIG_SGI_IP27, does that mean the resulting kernel will *only* run
> on IP27?  Or can you enable several platforms, e.g., SGI_IP22,
> SGI_IP27, SGI_IP28, SGI_IP32, etc., and end up with a kernel that will
> boot on any of those platforms?  From Kconfig, it looks like these
> options are not mutually exclusive, so my guess is maybe the latter?
> 
> If so, I would think whatever we do should be based on a run-time test
> for SGI_IP27 instead of a compile-time test.

Kernels are platform-specific for the SGI machines.  So you need a different
kernel for IP22, IP27, IP30, IP32, etc.  Sometimes, different CPU's in a system
needs a different kernel as well (e.g., IP32 w/ R5000 versus IP32 w/ RM7000,
different kernels for each).

The one *slight* exception is Indy and Indigo2, where one Indigo2 model is just
a larger Indy (both are IP22).  There's two other Indigo2 variants out there
though, the rare Indigo2 Power (IP26) and the Indigo2 Impact (IP28).  These
classify as distinctly-different systems, mostly, and thus need their own
kernels (not that anyone's written code for IP26 yet, but I digress).

Other MIPS platforms may be a bit different.  I can only speak for the SGI
platforms right now.  You can see where all the fun is at...


>> +       /*
>> +        * Commit 046136170a56 changed things such that setting PCI_PROBE_ONLY
>> +        * will now explicitly claim PCI resources instead of skipping the
>> +        * sizing of the bridges and assigning resources.  This is okay for
>> +        * the IP30's PCI code, which uses normal, ioremapped addresses to
>> +        * do I/O.  IP27, however, is different and uses a hardware-specific
>> +        * address range of 0x92xxxxxxxxxxxxxx for all I/O access.  As such,
>> +        * the generic MIPS PCI code will not probe correctly and thus make
>> +        * PCI on IP27 completely unusable.  Thus, we must restore the
>> +        * original logic only for IP27 until a better solution can be found.
>> +        */
>> +       pci_set_flags(PCI_PROBE_ONLY);
>> +#endif
>> +
>>         /* XXX: Temporary until the IP27 "mega update". */
>>         bc = &bridges[num_bridges];
>>         if (!num_bridges)
>> diff --git a/arch/mips/pci/pci-legacy.c b/arch/mips/pci/pci-legacy.c
>> index 68268bbb15b8..5590af4f367f 100644
>> --- a/arch/mips/pci/pci-legacy.c
>> +++ b/arch/mips/pci/pci-legacy.c
>> @@ -107,6 +107,20 @@ static void pcibios_scanbus(struct pci_controller *hose)
>>                 need_domain_info = 1;
>>         }
>>
>> +#ifdef CONFIG_SGI_IP27
>> +       /*
>> +        * Commit 046136170a56 changed things such that setting PCI_PROBE_ONLY
>> +        * will now explicitly claim PCI resources instead of skipping the
>> +        * sizing of the bridges and assigning resources.  This is okay for
>> +        * the IP30's PCI code, which uses normal, ioremapped addresses to
>> +        * do I/O.  IP27, however, is different and uses a hardware-specific
>> +        * address range of 0x92xxxxxxxxxxxxxx for all I/O access.  As such,
>> +        * the generic MIPS PCI code will not probe correctly and thus make
>> +        * PCI on IP27 completely unusable.  Thus, we must restore the
>> +        * original logic only for IP27 until a better solution can be found.
>> +        */
>> +       if (!pci_has_flag(PCI_PROBE_ONLY)) {
>> +#else
>>         /*
>>          * We insert PCI resources into the iomem_resource and
>>          * ioport_resource trees in either pci_bus_claim_resources()
>> @@ -115,6 +129,7 @@ static void pcibios_scanbus(struct pci_controller *hose)
>>         if (pci_has_flag(PCI_PROBE_ONLY)) {
>>                 pci_bus_claim_resources(bus);
>>         } else {
>> +#endif
>>                 pci_bus_size_bridges(bus);
>>                 pci_bus_assign_resources(bus);
>>         }
>> --
>> 2.11.1
>>
> 


-- 
Joshua Kinard
Gentoo/MIPS
kumba@xxxxxxxxxx
6144R/F5C6C943 2015-04-27
177C 1972 1FB8 F254 BAD0 3E72 5C63 F4E3 F5C6 C943

"The past tempts us, the present confuses us, the future frightens us.  And our
lives slip away, moment by moment, lost in that vast, terrible in-between."

--Emperor Turhan, Centauri Republic
[    0.000000] Linux version 4.9.8-mipsgit-20161216 (root@helcaraxe) (gcc version 6.3.0 (Gentoo Hardened 6.3.0 p1.0) ) #1 SMP Sat Feb 4 21:01:37 EST 2017
[    0.000000] ARCH: SGI-IP30
[    0.000000] PROMLIB: ARC firmware Version 64 Revision 0
[    0.000000] bootconsole [early_impact0] enabled
[    0.000000] CPU0 revision is: 00000f24 (R14000)
[    0.000000] FPU revision is: 00000900
[    0.000000] Checking for the multiply/shift bug...
[    0.000000] no.
[    0.000000] Checking for the daddiu bug...
[    0.000000] no.
[    0.000000] Detected 2048MB of physical memory.
[    0.000000] IP30: CPU0: 600 MHz CPU detected.
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 0000000000004000 @ 0000000000000000 (reserved)
[    0.000000]  memory: 00000000009b5000 @ 0000000020004000 (reserved)
[    0.000000]  memory: 0000000000547000 @ 00000000209b9000 (usable)
[    0.000000]  memory: 0000000000100000 @ 0000000020f00000 (ROM data)
[    0.000000]  memory: 000000007f000000 @ 0000000021000000 (usable)
[    0.000000]  memory: 00000000008b0000 @ 0000000020000000 (usable)
[    0.000000] cma: Reserved 512 MiB at 0x0000000080000000
[    0.000000] IP30: Slot: 0, PrID: 00000f24, PhyID: 0, VirtID: 0
[    0.000000] IP30: Slot: 1, PrID: 00000f24, PhyID: 1, VirtID: 1
[    0.000000] IP30: Detected 2 CPU(s) present.
[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    0.000000] Unified secondary cache 2048kB 2-way, linesize 128 bytes.
[    0.000000] Zone ranges:
[    0.000000]   DMA32    [mem 0x0000000020000000-0x00000000ffffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000020000000-0x00000000209affff]
[    0.000000]   node   0: [mem 0x00000000209c0000-0x000000009fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000020000000-0x000000009fffffff]
[    0.000000] On node 0 totalpages: 32767
[    0.000000] free_area_init_node: node 0, pgdat a80000002086a300, node_mem_map a8000000209d0300
[    0.000000]   DMA32 zone: 32 pages used for memmap
[    0.000000]   DMA32 zone: 0 pages reserved
[    0.000000]   DMA32 zone: 32767 pages, LIFO batch:1
[    0.000000] percpu: Embedded 1 pages/cpu @a800000020c00000 s34336 r0 d31200 u65536
[    0.000000] pcpu-alloc: s34336 r0 d31200 u65536 alloc=1*65536
[    0.000000] pcpu-alloc: [0] 0 [0] 1
[    0.000000] Built 1 zonelists in Zone order, mobility grouping off.  Total pages: 32735
[    0.000000] Kernel command line: root=xio(0)pci(15)scsi(0)disk(1)rdisk(0)partition(0) console=tty0 root=/dev/md0 consoleblank=0
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 262144 (order: 5, 2097152 bytes)
[    0.000000] Inode-cache hash table entries: 131072 (order: 4, 1048576 bytes)
[    0.000000] Memory: 1556288K/2097088K available (6817K kernel code, 687K rwdata, 1348K rodata, 320K init, 739K bss, 16512K reserved, 524288K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000] NR_IRQS:128
[    0.000000] IP30: HEART interrupt controller initialized.
[    0.000000] clocksource: HEART: mask: 0xfffffffffffff max_cycles: 0x2e2049cda, max_idle_ns: 440795202628 ns
[    0.000006] sched_clock: 52 bits at 12MHz, resolution 80ns, wraps every 4398046511080ns
[    0.000550] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6369645396 ns
[    0.001086] sched_clock: 32 bits at 300MHz, resolution 3ns, wraps every 7156904958ns
[    0.002520] Console: colour dummy device 80x25
[    0.002875] console [tty0] enabled
[    0.003185] bootconsole [early_impact0] disabled
[    0.003573] Calibrating delay loop... 898.66 BogoMIPS (lpj=4493312)
[    0.090689] pid_max: default: 32768 minimum: 301
[    0.091554] Mount-cache hash table entries: 8192 (order: 0, 65536 bytes)
[    0.091573] Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes)
[    0.093852] Checking for the daddi bug...
[    0.093871] no.
[    6.760385] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    6.760397] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    6.760402] Unified secondary cache 2048kB 2-way, linesize 128 bytes.
[   14.264191] IP30: CPU1: 600 MHz CPU detected.
[   14.264235] CPU1 revision is: 00000f24 (R14000)
[   14.264238] FPU revision is: 00000900
[    0.230963] Synchronize counters for CPU 1:
[    0.230963] done.
[    0.231234] Brought up 2 CPUs
[    0.232749] devtmpfs: initialized
[    0.233747] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.236205] xor: measuring software checksum speed
[    0.330951]    8regs     :   851.200 MB/sec
[    0.431036]    8regs_prefetch:   806.400 MB/sec
[    0.531198]    32regs    :   729.600 MB/sec
[    0.631269]    32regs_prefetch:   748.800 MB/sec
[    0.631299] xor: using function: 8regs (851.200 MB/sec)
[    0.632356] NET: Registered protocol family 16
[    0.671300] cpuidle: using governor ladder
[    0.711323] cpuidle: using governor menu
[    0.711467] xtalk:n0/f bridge widget (rev D) registered as a platform device.
[    0.711544] xtalk:n0/d bridge widget (rev C) registered as a platform device.
[    0.711617] xtalk:n0/c impact widget (rev B) registered as a platform device.
[    0.711690] xtalk:n0/8 heart widget (rev F) registered as a platform device.
[    0.961640] raid6: int64x1  gen()   323 MB/s
[    1.131840] raid6: int64x1  xor()   120 MB/s
[    1.301753] raid6: int64x2  gen()   468 MB/s
[    1.341955] random: fast init done
[    1.472023] raid6: int64x2  xor()   161 MB/s
[    1.642080] raid6: int64x4  gen()   416 MB/s
[    1.812194] raid6: int64x4  xor()   163 MB/s
[    1.982253] raid6: int64x8  gen()   342 MB/s
[    2.152536] raid6: int64x8  xor()   133 MB/s
[    2.152558] raid6: using algorithm int64x2 gen() 468 MB/s
[    2.152578] raid6: .... xor() 161 MB/s, rmw enabled
[    2.152597] raid6: using intx1 recovery algorithm
[    2.152988] SCSI subsystem initialized
[    2.153116] pps_core: LinuxPPS API ver. 1 registered
[    2.153138] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[    2.153188] PTP clock support registered
[    2.154071] clocksource: Switched to clocksource HEART
[    2.154483] FS-Cache: Loaded
[    2.154723] CacheFiles: Loaded
[    2.162091] NET: Registered protocol family 2
[    2.162753] TCP established hash table entries: 16384 (order: 1, 131072 bytes)
[    2.163396] TCP bind hash table entries: 16384 (order: 2, 262144 bytes)
[    2.164403] TCP: Hash tables configured (established 16384 bind 16384)
[    2.164619] UDP hash table entries: 2048 (order: 0, 65536 bytes)
[    2.164892] UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
[    2.165412] NET: Registered protocol family 1
[    2.166001] RPC: Registered named UNIX socket transport module.
[    2.166027] RPC: Registered udp transport module.
[    2.166047] RPC: Registered tcp transport module.
[    2.166066] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.166093] PCI: CLS 0 bytes, default 128
[    2.166728] futex hash table entries: 512 (order: 0, 65536 bytes)
[    2.167250] workingset: timestamp_bits=46 max_order=15 bucket_order=0
[    2.167409] zbud: loaded
[    2.168725] DLM installed
[    2.168790] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.169364] NFS: Registering the id_resolver key type
[    2.169420] Key type id_resolver registered
[    2.169442] Key type id_legacy registered
[    2.169472] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx).
[    2.170214] efs: 1.0a - http://aeschi.ch.eu.org/efs/
[    2.170279] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    2.181274] NET: Registered protocol family 38
[    2.181383] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    2.181422] io scheduler noop registered
[    2.181443] io scheduler deadline registered
[    2.181468] io scheduler bfq registered (default)
[    2.181489] BFQ I/O-scheduler: v8r7
[    2.181668] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.223223] Console: switching to colour frame buffer device 160x64
[    2.255766] fb0: ImpactSR 1RSS frame buffer device
[    2.317384] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.327988] loop: module loaded
[    2.328851] mousedev: PS/2 mouse device common for all mice
[    2.329536] md: raid6 personality registered for level 6
[    2.329752] md: raid5 personality registered for level 5
[    2.329961] md: raid4 personality registered for level 4
[    2.330336] PCI host bridge to bus 0000:00
[    2.330521] pci_bus 0000:00: root bus resource [mem 0x1f200000-0x1f9fffff]
[    2.330794] pci_bus 0000:00: root bus resource [io  0x1fa00000-0x1fbfffff]
[    2.331068] pci_bus 0000:00: root bus resource [bus 00-ff]
[    2.331330] pci 0000:00:00.0: [1077:1020] type 00 class 0x010000
[    2.331378] pci 0000:00:00.0: reg 0x10: [io  0x200000-0x2000ff]
[    2.331402] pci 0000:00:00.0: reg 0x14: [mem 0x00200000-0x00200fff]
[    2.331483] pci 0000:00:00.0: reg 0x30: [mem 0x00210000-0x0021ffff pref]
[    2.331704] pci 0000:00:01.0: [1077:1020] type 00 class 0x010000
[    2.331738] pci 0000:00:01.0: reg 0x10: [io  0x400000-0x4000ff]
[    2.331761] pci 0000:00:01.0: reg 0x14: [mem 0x00400000-0x00400fff]
[    2.331843] pci 0000:00:01.0: reg 0x30: [mem 0x00410000-0x0041ffff pref]
[    2.332030] pci 0000:00:02.0: [10a9:0003] type 00 class 0xff0000
[    2.332068] pci 0000:00:02.0: reg 0x10: [mem 0x00500000-0x005fffff]
[    2.332345] pci 0000:00:03.0: [10a9:0005] type 00 class 0x000000
[    2.332377] pci 0000:00:03.0: reg 0x10: [mem 0x00600000-0x00601fff]
[    2.332727] pci 0000:00:02.0: BAR 0: assigned [mem 0x1f200000-0x1f2fffff]
[    2.333011] pci 0000:00:00.0: BAR 6: assigned [mem 0x1f300000-0x1f30ffff pref]
[    2.333298] pci 0000:00:01.0: BAR 6: assigned [mem 0x1f310000-0x1f31ffff pref]
[    2.333582] pci 0000:00:00.0: BAR 1: assigned [mem 0x1f320000-0x1f320fff]
[    2.333856] pci 0000:00:01.0: BAR 1: assigned [mem 0x1f321000-0x1f321fff]
[    2.334181] pci 0000:00:00.0: BAR 0: assigned [io  0x1fa00000-0x1fa000ff]
[    2.334456] pci 0000:00:01.0: BAR 0: assigned [io  0x1fa00400-0x1fa004ff]
[    2.334795] qla1280: QLA1040 found on PCI bus 0, dev 0
[    2.335016] ip30-bridge: 0000:00:00.0 Bar 0 with size 0x00000100 at bus 0x00000000 vma 0x000000f100000000 is Direct I/O.
[    2.335435] ip30-bridge: 0000:00:00.0 Bar 1 with size 0x00001000 at bus 0x00000000 vma 0x000000f080000000 is Direct 64-bit.
[    2.335862] ip30-bridge: 0000:00:00.0 Bar 6 with size 0x00010000 at bus 0x00010000 vma 0x000000f080010000 is Direct 64-bit.
[    2.336287] PCI: Enabling device 0000:00:00.0 (0006 -> 0007)
[    2.337044] scsi(0): Enabling vchannel on BRIDGE for SGI/MIPS
[    2.738704] random: crng init done
[    2.923416] scsi(0:0): Resetting SCSI BUS
[    6.004087] scsi host0: QLogic QLA1040 PCI to SCSI Host Adapter
                      Firmware version:  7.65.06, Driver version 3.27.1
[    6.010788] qla1280: QLA1040 found on PCI bus 0, dev 1
[    6.011039] ip30-bridge: 0000:00:01.0 Bar 0 with size 0x00000100 at bus 0x00000100 vma 0x000000f100000100 is Direct I/O.
[    6.011464] ip30-bridge: 0000:00:01.0 Bar 1 with size 0x00001000 at bus 0x00020000 vma 0x000000f080020000 is Direct 64-bit.
[    6.011895] ip30-bridge: 0000:00:01.0 Bar 6 with size 0x00010000 at bus 0x00030000 vma 0x000000f080030000 is Direct 64-bit.
[    6.012324] PCI: Enabling device 0000:00:01.0 (0006 -> 0007)
[   13.185643] scsi 0:0:1:0: Direct-Access     IBM-ESXS ST973401LC    FN B41D PQ: 0 ANSI: 4
[   13.186771] scsi(0:0:1:0):
[   13.186889]  Sync: period 10, offset 12
[   13.187053] , Wide
[   13.187089] , Tagged queuing: depth 31

[   13.962105] scsi 0:0:2:0: Direct-Access     IBM-ESXS ST973401LC    FN B41D PQ: 0 ANSI: 4
[   13.963095] scsi(0:0:2:0):
[   13.963212]  Sync: period 10, offset 12
[   13.972934] , Wide
[   13.973098] , Tagged queuing: depth 31

[   14.175153] scsi 0:0:3:0: Direct-Access     IBM-ESXS ST973401LC    FN B41D PQ: 0 ANSI: 4
[   14.186715] scsi(0:0:3:0):
[   14.186837]  Sync: period 10, offset 12
[   14.197546] , Wide
[   14.197712] , Tagged queuing: depth 31

[   14.511621] scsi(1:0): Resetting SCSI BUS
[   19.044315] scsi host1: QLogic QLA1040 PCI to SCSI Host Adapter
                      Firmware version:  7.65.06, Driver version 3.27.1
[   19.070925] ip30-bridge: 0000:00:02.0 Bar 0 with size 0x00100000 at bus 0x00100000 vma 0x000000f080100000 is Direct 64-bit.
[   21.194039] ioc3: part: [030-0891-003], serial: [KBB731] => class IP30 System Board
[   21.207013] ioc3-eth: Ethernet address is 08:00:69:0e:11:0c.
[   21.218711] IOC3 0000:00:02.0 eth0: link up, 100Mbps, full-duplex, lpa 0x05E1
[   21.229449] eth0: Using PHY 1, vendor 0x15f42, model 2, rev 3.
[   21.240215] eth0: IOC3 SSRAM has 128 kbyte.
[   21.251666] rtc-ds1685 rtc-ds1685: rtc core: registered rtc-ds1685 as rtc0
[   21.287565] 0000:00:02.0: ttyS0 at IOC3 0xf080120178 (irq = 0, base_baud = 458333) is a 16550A
[   21.319087] 0000:00:02.0: ttyS1 at IOC3 0xf080120170 (irq = 0, base_baud = 458333) is a 16550A
[   21.330079] IOC3 Master Driver loaded for 0000:00:02.0
[   21.340951] PCI host bridge to bus 0001:00
[   21.351657] pci_bus 0001:00: root bus resource [mem 0x1d200000-0x1d9fffff]
[   21.362655] pci_bus 0001:00: root bus resource [io  0x1da00000-0x1dbfffff]
[   21.373502] pci_bus 0001:00: root bus resource [bus 01-ff]
[   21.384204] pci 0001:00:01.0: [11fe:080e] type 00 class 0x078000
[   21.384251] pci 0001:00:01.0: reg 0x10: [mem 0x00200000-0x0020007f]
[   21.384274] pci 0001:00:01.0: reg 0x14: [io  0x200000-0x20007f]
[   21.384297] pci 0001:00:01.0: reg 0x18: [io  0x204000-0x2040ff]
[   21.384578] pci 0001:00:02.0: [10b9:5237] type 00 class 0x0c0310
[   21.384618] pci 0001:00:02.0: reg 0x10: [mem 0x00300000-0x00300fff]
[   21.384778] pci 0001:00:02.0: PME# supported from D0 D1 D3hot D3cold
[   21.384951] pci 0001:00:02.1: [10b9:5237] type 00 class 0x0c0310
[   21.384987] pci 0001:00:02.1: reg 0x10: [mem 0x00000000-0x00000fff]
[   21.385126] pci 0001:00:02.1: PME# supported from D0 D1 D3hot D3cold
[   21.385291] pci 0001:00:02.2: [10b9:5237] type 00 class 0x0c0310
[   21.385327] pci 0001:00:02.2: reg 0x10: [mem 0x00000000-0x00000fff]
[   21.385466] pci 0001:00:02.2: PME# supported from D0 D1 D3hot D3cold
[   21.385636] pci 0001:00:02.3: [10b9:5239] type 00 class 0x0c0320
[   21.385676] pci 0001:00:02.3: reg 0x10: [mem 0x00000000-0x000000ff]
[   21.385828] pci 0001:00:02.3: PME# supported from D0 D3hot D3cold
[   21.386004] pci 0001:00:03.0: [10a9:0009] type 00 class 0x020000
[   21.386039] pci 0001:00:03.0: reg 0x10: [mem 0x00400000-0x00403fff]
[   21.386395] pci 0001:00:03.0: BAR 0: assigned [mem 0x1d200000-0x1d203fff]
[   21.397018] pci 0001:00:02.0: BAR 0: assigned [mem 0x1d204000-0x1d204fff]
[   21.407552] pci 0001:00:02.1: BAR 0: assigned [mem 0x1d205000-0x1d205fff]
[   21.417945] pci 0001:00:02.2: BAR 0: assigned [mem 0x1d206000-0x1d206fff]
[   21.428185] pci 0001:00:01.0: BAR 2: assigned [io  0x1da00000-0x1da000ff]
[   21.438321] pci 0001:00:02.3: BAR 0: assigned [mem 0x1d207000-0x1d2070ff]
[   21.448373] pci 0001:00:01.0: BAR 0: assigned [mem 0x1d207100-0x1d20717f]
[   21.458433] pci 0001:00:01.0: BAR 1: assigned [io  0x1da00400-0x1da0047f]
[   21.468646] acenic.c: v0.92 08/05/2002  Jes Sorensen, linux-acenic@xxxxxxxxxx
                                           http://home.cern.ch/~jes/gige/acenic.html
[   21.488947] ip30-bridge: 0001:00:03.0 Bar 0 with size 0x00004000 at bus 0x00000000 vma 0x000000d080000000 is Direct 64-bit.
[   21.499592] 0001:00:03.0: SGI AceNIC
[   21.499804] Gigabit Ethernet at 0xd080000000,
[   21.510369] irq 4
[   21.521387]   Tigon II (Rev. 6), Firmware: 0.0.0,
[   21.526945] MAC: 08:00:69:14:69:9c
[   21.537682]   PCI cache line size set incorrectly (0 bytes) by BIOS/FW,
[   21.538031] correcting to 128
[   21.549022]   PCI bus width: 64 bits, speed: 33MHz, latency: 64 clks
[   21.609244] 0001:00:03.0: Firmware up and running
[   21.621834] NET: Registered protocol family 26
[   21.633741] NET: Registered protocol family 10
[   21.646997] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[   21.659228] NET: Registered protocol family 17
[   21.670539] NET: Registered protocol family 4
[   21.681995] 8021q: 802.1Q VLAN Support v1.8
[   21.693639] sctp: Hash tables configured (bind 4096/4096)
[   21.705107] Key type dns_resolver registered
[   21.717647] rtc-ds1685 rtc-ds1685: setting system clock to 2017-02-08 06:26:13 UTC (1486535173)
[   21.847090] input: AT Raw Set 2 keyboard as /devices/pci0000:00/0000:00:02.0/serio0/input/input0
[   22.077817] input: ImPS/2 Logitech Wheel Mouse as /devices/pci0000:00/0000:00:02.0/serio1/input/input2
[   23.593306] sd 0:0:1:0: [sda] 143374000 512-byte logical blocks: (73.4 GB/68.4 GiB)
[   23.605279] sd 0:0:2:0: [sdb] 143374000 512-byte logical blocks: (73.4 GB/68.4 GiB)
[   23.605350] sd 0:0:3:0: [sdc] 143374000 512-byte logical blocks: (73.4 GB/68.4 GiB)
[   23.608552] sd 0:0:1:0: [sda] Write Protect is off
[   23.608562] sd 0:0:1:0: [sda] Mode Sense: b3 00 10 08
[   23.608736] sd 0:0:3:0: [sdc] Write Protect is off
[   23.608746] sd 0:0:3:0: [sdc] Mode Sense: b3 00 10 08
[   23.610832] sd 0:0:1:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   23.611019] sd 0:0:3:0: [sdc] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   23.630520]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc9 sdc11
[   23.634527]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda9 sda11
[   23.641757] sd 0:0:3:0: [sdc] Attached SCSI disk
[   23.643655] sd 0:0:1:0: [sda] Attached SCSI disk
[   23.720715] sd 0:0:2:0: [sdb] Write Protect is off
[   23.731276] sd 0:0:2:0: [sdb] Mode Sense: b3 00 10 08
[   23.735226] sd 0:0:2:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   23.767686]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb9 sdb11
[   23.786987] sd 0:0:2:0: [sdb] Attached SCSI disk
[   27.778038] eth1: Optical link UP (Full Duplex, Flow Control: TX RX)
[   29.454240] md: Waiting for all devices to be available before autodetect
[   29.464960] md: If you don't use raid, use raid=noautodetect
[   29.476420] md: Autodetecting RAID arrays.
[   29.618865] md: Scanned 15 and added 15 devices.
[   29.629579] md: autorun ...
[   29.640073] md: considering sdb6 ...
[   29.650393] md:  adding sdb6 ...
[   29.660352] md: sdb5 has different UUID to sdb6
[   29.670272] md: sdb4 has different UUID to sdb6
[   29.679984] md: sdb3 has different UUID to sdb6
[   29.689514] md: sdb1 has different UUID to sdb6
[   29.698907] md:  adding sda6 ...
[   29.708151] md: sda5 has different UUID to sdb6
[   29.717293] md: sda4 has different UUID to sdb6
[   29.726434] md: sda3 has different UUID to sdb6
[   29.735366] md: sda1 has different UUID to sdb6
[   29.744150] md:  adding sdc6 ...
[   29.752762] md: sdc5 has different UUID to sdb6
[   29.761561] md: sdc4 has different UUID to sdb6
[   29.770264] md: sdc3 has different UUID to sdb6
[   29.778788] md: sdc1 has different UUID to sdb6
[   29.788125] md: created md4
[   29.796582] md: bind<sdc6>
[   29.805174] md: bind<sda6>
[   29.813663] md: bind<sdb6>
[   29.822159] md: running:
[   29.822307] <sdb6>
[   29.830737] <sda6>
[   29.830883] <sdc6>

[   29.848811] md/raid:md4: device sdb6 operational as raid disk 1
[   29.857310] md/raid:md4: device sda6 operational as raid disk 0
[   29.865556] md/raid:md4: device sdc6 operational as raid disk 2
[   29.875656] md/raid:md4: allocated 49386kB
[   29.883462] md/raid:md4: raid level 5 active with 3 out of 3 devices, algorithm 2
[   29.891223] RAID conf printout:
[   29.891230]  --- level:5 rd:3 wd:3
[   29.891236]  disk 0, o:1, dev:sda6
[   29.891241]  disk 1, o:1, dev:sdb6
[   29.891246]  disk 2, o:1, dev:sdc6
[   29.930444] created bitmap (1 pages) for device md4
[   29.942220] md4: bitmap initialized from disk: read 1 pages, set 0 of 5 bits
[   29.955188] md4: detected capacity change from 0 to 2263613440
[   29.962791] md: considering sdb5 ...
[   29.970412] md:  adding sdb5 ...
[   29.978015] md: sdb4 has different UUID to sdb5
[   29.985631] md: sdb3 has different UUID to sdb5
[   29.993100] md: sdb1 has different UUID to sdb5
[   30.000602] md:  adding sda5 ...
[   30.008021] md: sda4 has different UUID to sdb5
[   30.015457] md: sda3 has different UUID to sdb5
[   30.022727] md: sda1 has different UUID to sdb5
[   30.029792] md:  adding sdc5 ...
[   30.036613] md: sdc4 has different UUID to sdb5
[   30.043326] md: sdc3 has different UUID to sdb5
[   30.049785] md: sdc1 has different UUID to sdb5
[   30.056974] md: created md3
[   30.063332] md: bind<sdc5>
[   30.069777] md: bind<sda5>
[   30.076087] md: bind<sdb5>
[   30.082235] md: running:
[   30.082403] <sdb5>
[   30.088532] <sda5>
[   30.088677] <sdc5>

[   30.101736] md/raid:md3: device sdb5 operational as raid disk 1
[   30.107954] md/raid:md3: device sda5 operational as raid disk 0
[   30.114238] md/raid:md3: device sdc5 operational as raid disk 2
[   30.122570] md/raid:md3: allocated 49386kB
[   30.128738] md/raid:md3: raid level 5 active with 3 out of 3 devices, algorithm 2
[   30.134803] RAID conf printout:
[   30.134809]  --- level:5 rd:3 wd:3
[   30.134814]  disk 0, o:1, dev:sda5
[   30.134819]  disk 1, o:1, dev:sdb5
[   30.134824]  disk 2, o:1, dev:sdc5
[   30.135368] created bitmap (1 pages) for device md3
[   30.141770] md3: bitmap initialized from disk: read 1 pages, set 0 of 9 bits
[   30.151821] md3: detected capacity change from 0 to 4714135552
[   30.157929] md: considering sdb4 ...
[   30.163894] md:  adding sdb4 ...
[   30.169855] md: sdb3 has different UUID to sdb4
[   30.175818] md: sdb1 has different UUID to sdb4
[   30.181669] md:  adding sda4 ...
[   30.187556] md: sda3 has different UUID to sdb4
[   30.193472] md: sda1 has different UUID to sdb4
[   30.199386] md:  adding sdc4 ...
[   30.205261] md: sdc3 has different UUID to sdb4
[   30.211266] md: sdc1 has different UUID to sdb4
[   30.218075] md: created md2
[   30.223942] md: bind<sdc4>
[   30.229963] md: bind<sda4>
[   30.235856] md: bind<sdb4>
[   30.241738] md: running:
[   30.241910] <sdb4>
[   30.247783] <sda4>
[   30.247927] <sdc4>

[   30.260739] md/raid:md2: device sdb4 operational as raid disk 1
[   30.266922] md/raid:md2: device sda4 operational as raid disk 0
[   30.273147] md/raid:md2: device sdc4 operational as raid disk 2
[   30.281542] md/raid:md2: allocated 49386kB
[   30.287799] md/raid:md2: raid level 5 active with 3 out of 3 devices, algorithm 2
[   30.294168] RAID conf printout:
[   30.294173]  --- level:5 rd:3 wd:3
[   30.294179]  disk 0, o:1, dev:sda4
[   30.294185]  disk 1, o:1, dev:sdb4
[   30.294190]  disk 2, o:1, dev:sdc4
[   30.294759] created bitmap (1 pages) for device md2
[   30.301603] md2: bitmap initialized from disk: read 1 pages, set 0 of 204 bits
[   30.314853] md2: detected capacity change from 0 to 109521403904
[   30.321657] md: considering sdb3 ...
[   30.328478] md:  adding sdb3 ...
[   30.335220] md: sdb1 has different UUID to sdb3
[   30.341980] md:  adding sda3 ...
[   30.348792] md: sda1 has different UUID to sdb3
[   30.355738] md:  adding sdc3 ...
[   30.362566] md: sdc1 has different UUID to sdb3
[   30.370189] md: created md1
[   30.376794] md: bind<sdc3>
[   30.383346] md: bind<sda3>
[   30.389765] md: bind<sdb3>
[   30.395951] md: running:
[   30.396102] <sdb3>
[   30.402210] <sda3>
[   30.402374] <sdc3>

[   30.415789] md/raid:md1: device sdb3 operational as raid disk 1
[   30.422276] md/raid:md1: device sda3 operational as raid disk 0
[   30.428822] md/raid:md1: device sdc3 operational as raid disk 2
[   30.437351] md/raid:md1: allocated 49386kB
[   30.443851] md/raid:md1: raid level 5 active with 3 out of 3 devices, algorithm 2
[   30.450498] RAID conf printout:
[   30.450504]  --- level:5 rd:3 wd:3
[   30.450509]  disk 0, o:1, dev:sda3
[   30.450514]  disk 1, o:1, dev:sdb3
[   30.450519]  disk 2, o:1, dev:sdc3
[   30.451066] created bitmap (1 pages) for device md1
[   30.458150] md1: bitmap initialized from disk: read 1 pages, set 0 of 44 bits
[   30.478655] md1: detected capacity change from 0 to 23622057984
[   30.485668] md: considering sdb1 ...
[   30.492746] md:  adding sdb1 ...
[   30.499820] md:  adding sda1 ...
[   30.506833] md:  adding sdc1 ...
[   30.513823] md: created md0
[   30.520890] md: bind<sdc1>
[   30.527969] md: bind<sda1>
[   30.534841] md: bind<sdb1>
[   30.541634] md: running:
[   30.541804] <sdb1>
[   30.548437] <sda1>
[   30.548581] <sdc1>

[   30.563131] md/raid:md0: device sdb1 operational as raid disk 1
[   30.570154] md/raid:md0: device sda1 operational as raid disk 0
[   30.577066] md/raid:md0: device sdc1 operational as raid disk 2
[   30.585924] md/raid:md0: allocated 49386kB
[   30.592560] md/raid:md0: raid level 5 active with 3 out of 3 devices, algorithm 2
[   30.599202] RAID conf printout:
[   30.599207]  --- level:5 rd:3 wd:3
[   30.599213]  disk 0, o:1, dev:sda1
[   30.599218]  disk 1, o:1, dev:sdb1
[   30.599223]  disk 2, o:1, dev:sdc1
[   30.599790] created bitmap (1 pages) for device md0
[   30.606979] md0: bitmap initialized from disk: read 1 pages, set 7 of 8 bits
[   30.622820] md0: detected capacity change from 0 to 4294705152
[   30.629693] md: ... autorun DONE.
[   31.634010] XFS (md0): Mounting V4 Filesystem
[   34.170302] XFS (md0): Ending clean mount
[   34.177482] VFS: Mounted root (xfs filesystem) readonly on device 9:0.
[   34.187355] devtmpfs: mounted
[   34.195485] Freeing unused kernel memory: 320K (a8000000208b0000 - a800000020900000)
[   34.202859] This architecture does not have kernel memory protection.
[   46.575416] udevd[593]: starting version 3.2.1
[   47.260061] udevd[593]: specified group 'video' unknown
[   47.261061] udevd[593]: specified group 'tape' unknown
[   47.378114] udevd[594]: starting eudev-3.2.1
[   47.849194] udevd[594]: specified group 'video' unknown
[   47.850206] udevd[594]: specified group 'tape' unknown
[   51.867298] Adding 1048512k swap on /dev/sda2.  Priority:1 extents:1 across:1048512k
[   51.883342] Adding 1048512k swap on /dev/sdb2.  Priority:1 extents:1 across:1048512k
[   51.906315] Adding 1048512k swap on /dev/sdc2.  Priority:1 extents:1 across:1048512k
[   52.273998] XFS (md1): Mounting V5 Filesystem
[   54.356290] XFS (md1): Ending clean mount
[   54.378647] XFS (md2): Mounting V5 Filesystem
[   54.877762] XFS (md2): Ending clean mount
[   54.934648] XFS (md3): Mounting V5 Filesystem
[   55.402402] XFS (md3): Ending clean mount
[   55.418250] XFS (md4): Mounting V5 Filesystem
[   55.950290] XFS (md4): Ending clean mount
0000:00:00.0 SCSI storage controller: QLogic Corp. ISP1020 Fast-wide SCSI (rev 05)
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64, Cache Line Size: 256 bytes
        Interrupt: pin A routed to IRQ 0
        Region 0: I/O ports at f100000000 [size=257]
        Region 1: [virtual] Memory at f080000000 (32-bit, non-prefetchable) [size=4097]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at f080010000 [disabled] [size=65537]
        Kernel driver in use: qla1280
lspci: Unable to load libkmod resources: error -12

0000:00:01.0 SCSI storage controller: QLogic Corp. ISP1020 Fast-wide SCSI (rev 05)
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64, Cache Line Size: 256 bytes
        Interrupt: pin A routed to IRQ 1
        Region 0: I/O ports at f100000100 [size=257]
        Region 1: Memory at f080020000 (32-bit, non-prefetchable) [size=4097]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at f080030000 [disabled] [size=65537]
        Kernel driver in use: qla1280

0000:00:02.0 Unassigned class [ff00]: Silicon Graphics Intl. Corp. IOC3 I/O controller (rev 01)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64
        Interrupt: pin A routed to IRQ 2
        Region 0: Memory at f080100000 (32-bit, non-prefetchable) [size=1048577]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Kernel driver in use: IOC3

0000:00:03.0 Non-VGA unclassified device: Silicon Graphics Intl. Corp. RAD Audio (rev c0)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=slow >TAbort+ <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 255
        Region 0: Memory at 00600000 (32-bit, non-prefetchable) [size=8193]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]

0001:00:01.0 Communication controller: Comtrol Corporation Device 080e (rev 01)
        Subsystem: Comtrol Corporation Device 080e
        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ 0
        Region 0: Memory at 1d207100 (32-bit, non-prefetchable) [size=129]
        Region 1: I/O ports at 1da00400 [size=129]
        Region 2: I/O ports at 1da00000 [size=257]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]

0001:00:02.0 USB controller: ULi Electronics Inc. USB 1.1 Controller (rev 03) (prog-if 10 [OHCI])
        Subsystem: ULi Electronics Inc. ASRock 939Dual-SATA2 Motherboard
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 16 (20000ns max)
        Interrupt: pin B routed to IRQ 0
        Region 0: Memory at 1d204000 (32-bit, non-prefetchable) [size=4097]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Capabilities: [60] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2-,D3hot+,D3cold+)
                Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-

0001:00:02.1 USB controller: ULi Electronics Inc. USB 1.1 Controller (rev 03) (prog-if 10 [OHCI])
        Subsystem: ULi Electronics Inc. ASRock 939Dual-SATA2 Motherboard
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin C routed to IRQ 0
        Region 0: Memory at 1d205000 (32-bit, non-prefetchable) [disabled] [size=4097]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Capabilities: [60] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2-,D3hot+,D3cold+)
                Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-

0001:00:02.2 USB controller: ULi Electronics Inc. USB 1.1 Controller (rev 03) (prog-if 10 [OHCI])
        Subsystem: ULi Electronics Inc. ASRock 939Dual-SATA2 Motherboard
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin D routed to IRQ 0
        Region 0: Memory at 1d206000 (32-bit, non-prefetchable) [disabled] [size=4097]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Capabilities: [60] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1+,D2-,D3hot+,D3cold+)
                Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-

0001:00:02.3 USB controller: ULi Electronics Inc. USB 2.0 Controller (rev 01) (prog-if 20 [EHCI])
        Subsystem: ULi Electronics Inc. ASRock 939Dual-SATA2 Motherboard
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Interrupt: pin A routed to IRQ 0
        Region 0: Memory at 1d207000 (32-bit, non-prefetchable) [disabled] [size=257]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Capabilities: [50] Power Management version 2
                Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
                Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
        Capabilities: [58] Debug port: BAR=1 offset=0090

0001:00:03.0 Ethernet controller: Silicon Graphics Intl. Corp. AceNIC Gigabit Ethernet (rev 01)
        Subsystem: Silicon Graphics Intl. Corp. AceNIC Gigabit Ethernet
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64 (16000ns min), Cache Line Size: 128 bytes
        Interrupt: pin A routed to IRQ 4
        Region 0: [virtual] Memory at d080000000 (32-bit, non-prefetchable) [size=16385]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Kernel driver in use: acenic
0001:00:00.0 Unassigned class [ff00]: Silicon Graphics Intl. Corp. Linc I/O controller
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        NUMA node: 0
        Region 0: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=134217729]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
lspci: Unable to load libkmod resources: error -12

0001:00:01.0 Unassigned class [ff00]: Silicon Graphics Intl. Corp. Linc I/O controller
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        NUMA node: 0
        Region 0: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=134217729]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]

0002:00:00.0 SCSI storage controller: QLogic Corp. ISP1020 Fast-wide SCSI (rev 05)
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64, Cache Line Size: 256 bytes
        Interrupt: pin A routed to IRQ 1
        NUMA node: 0
        Region 0: I/O ports at f200000 [size=257]
        Region 1: Memory at 0f200000 (32-bit, non-prefetchable) [size=4097]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=65537]
        Kernel driver in use: qla1280

0002:00:01.0 SCSI storage controller: QLogic Corp. ISP1020 Fast-wide SCSI (rev 05)
        Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 64, Cache Line Size: 256 bytes
        Interrupt: pin A routed to IRQ 2
        NUMA node: 0
        Region 0: I/O ports at f400000 [size=257]
        Region 1: Memory at 0f400000 (32-bit, non-prefetchable) [size=4097]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=65537]
        Kernel driver in use: qla1280

0002:00:02.0 Unassigned class [ff00]: Silicon Graphics Intl. Corp. IOC3 I/O controller (rev 01)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 255
        Interrupt: pin A routed to IRQ 3
        NUMA node: 0
        Region 0: Memory at 0f600000 (32-bit, non-prefetchable) [size=1048577]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Kernel driver in use: ioc3-eth

0002:00:06.0 Unassigned class [ff00]: Silicon Graphics Intl. Corp. IOC3 I/O controller (rev 01)
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 255
        Interrupt: pin A routed to IRQ 4
        NUMA node: 0
        Region 0: Memory at 0fa00000 (32-bit, non-prefetchable) [size=1048577]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
        Kernel driver in use: ioc3-eth

0002:00:07.0 Non-VGA unclassified device: Silicon Graphics Intl. Corp. RAD Audio (rev 70)
        Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
        Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=slow >TAbort+ <TAbort- <MAbort- >SERR- <PERR- INTx-
        NUMA node: 0
        Region 0: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=8193]
        Region 1: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 2: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 3: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 4: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Region 5: Memory at <unassigned> (32-bit, non-prefetchable) [disabled] [size=2]
        Expansion ROM at <unassigned> [disabled] [size=2]
[    0.000000] Linux version 4.10.0-rc7 (root@helcaraxe) (gcc version 6.3.0 (Gentoo Hardened 6.3.0 p1.0) ) #1 SMP Wed Feb 8 03:55:04 EST 2017
[    0.000000] ARCH: SGI-IP27
[    0.000000] PROMLIB: ARC firmware Version 64 Revision 0
[    0.000000] Discovered 4 cpus on 2 nodes
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] ************** Topology ********************
[    0.000000]
[    0.000000] 00
[    0.000000] 01

[    0.000000] 00
[    0.000000] 255
[    0.000000] 255

[    0.000000] 01
[    0.000000] 255
[    0.000000] 255

[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 00000f14 (R14000)
[    0.000000] FPU revision is: 00000900
[    0.000000] Checking for the multiply/shift bug... no.
[    0.000000] Checking for the daddiu bug... no.
[    0.000000] IP27: Running on node 0.
[    0.000000] Node 0 has a primary CPU, CPU is running.
[    0.000000] Node 0 has a secondary CPU, CPU is running.
[    0.000000] Machine is in M mode.
[    0.000000] Cpu 0, Nasid 0x0: partnum 0x0 is
[    0.000000] is xbow
[    0.000000] Cpu 0, Nasid 0x0, widget 0x8 (partnum 0xc102) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xb (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xc (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xd (partnum 0xc003) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xf (partnum 0xc002) is
[    0.000000] CPU 0 clock is 500MHz.
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 00000000006e0000 @ 0000000000010000 (usable)
[    0.000000]  memory: 0000000000050000 @ 00000000006f0000 (usable after init)
[    0.000000] cma: Reserved 512 MiB at 0x00000001e0000000
[    0.000000] REPLICATION: ON nasid 0, ktext from nasid 0, kdata from nasid 0
[    0.000000] REPLICATION: ON nasid 1, ktext from nasid 0, kdata from nasid 0
[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    0.000000] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000]   node   1: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000] On node 0 totalpages: 65536
[    0.000000] free_area_init_node: node 0, pgdat a8000000007f0000, node_mem_map a800000001000000
[    0.000000]   Normal zone: 64 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 65536 pages, LIFO batch:1
[    0.000000] Initmem setup node 1 [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] On node 1 totalpages: 65536
[    0.000000] free_area_init_node: node 1, pgdat a800000100030000, node_mem_map a800000100050000
[    0.000000]   Normal zone: 64 pages used for memmap
[    0.000000]   Normal zone: 0 pages reserved
[    0.000000]   Normal zone: 65536 pages, LIFO batch:1
[    0.000000] percpu: Embedded 2 pages/cpu @a800000001430000 s60064 r0 d71008 u131072
[    0.000000] pcpu-alloc: s60064 r0 d71008 u131072 alloc=2*65536
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Built 2 zonelists in Node order, mobility grouping on.  Total pages: 130944
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=dksc(0,1,0) console=ttyS0,9600 root=/dev/md0
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Memory: 7846784K/8388608K available (5172K kernel code, 678K rwdata, 1116K rodata, 320K init, 700K bss, 17536K reserved, 524288K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:256
[    0.000000] clocksource: HUB-RT: mask: 0xfffffffffffff max_cycles: 0x127350b88, max_idle_ns: 1763180808480 ns
[    0.000012] sched_clock: 52 bits at 1250kHz, resolution 800ns, wraps every 4398046510800ns
[    0.103175] Console: colour dummy device 80x25
[    0.156244] Calibrating delay loop... 749.56 BogoMIPS (lpj=3747840)
[    0.318496] pid_max: default: 32768 minimum: 301
[    0.378324] Dentry cache hash table entries: 1048576 (order: 7, 8388608 bytes)
[    0.577930] Inode-cache hash table entries: 524288 (order: 6, 4194304 bytes)
[    0.720390] Mount-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.801233] Mountpoint-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.900780] Checking for the daddi bug... no.
[    0.957828] smp: Bringing up secondary CPUs ...
[    1.012770] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.012786] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.012794] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.015959] CPU 1 clock is 500MHz.
[    1.015981] CPU1 revision is: 00000f14 (R14000)
[    1.015984] FPU revision is: 00000900
[    1.054076] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.054096] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.054105] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.057333] Cpu 2, Nasid 0x1: partnum 0x0 is
[    1.057356] is xbow
[    1.057400] CPU 2 clock is 500MHz.
[    1.057417] CPU2 revision is: 00000f14 (R14000)
[    1.057421] FPU revision is: 00000900
[    1.094440] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.094459] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.094468] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.097704] CPU 3 clock is 500MHz.
[    1.097732] CPU3 revision is: 00000f14 (R14000)
[    1.097736] FPU revision is: 00000900
[    1.131286] smp: Brought up 2 nodes, 4 CPUs
[    2.425108] devtmpfs: initialized
[    2.464264] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    2.585991] xor: measuring software checksum speed
[    2.741920]    8regs     :   710.400 MB/sec
[    2.890564]    8regs_prefetch:   684.800 MB/sec
[    3.043377]    32regs    :   659.200 MB/sec
[    3.171273] random: fast init done
[    3.191971]    32regs_prefetch:   640.000 MB/sec
[    3.191979] xor: using function: 8regs (710.400 MB/sec)
[    3.329553] NET: Registered protocol family 16
[    3.442067] cpuidle: using governor ladder
[    3.571538] cpuidle: using governor menu
[    3.907402] raid6: int64x1  gen()   309 MB/s
[    4.127084] raid6: int64x1  xor()    62 MB/s
[    4.346824] raid6: int64x2  gen()   444 MB/s
[    4.566655] raid6: int64x2  xor()   152 MB/s
[    4.786336] raid6: int64x4  gen()   387 MB/s
[    5.006111] raid6: int64x4  xor()   141 MB/s
[    5.225866] raid6: int64x8  gen()   315 MB/s
[    5.445840] raid6: int64x8  xor()   116 MB/s
[    5.495273] raid6: using algorithm int64x2 gen() 444 MB/s
[    5.560206] raid6: .... xor() 152 MB/s, rmw enabled
[    5.618856] raid6: using intx1 recovery algorithm
[    5.675924] SCSI subsystem initialized
[    5.721236] PCI host bridge to bus 0002:00
[    5.769704] pci_bus 0002:00: root bus resource [mem 0x920000000f200000-0x920000000f9fffff]
[    5.869182] pci_bus 0002:00: root bus resource [io  0x920000000fa00000-0x920000000fbfffff]
[    5.968680] pci_bus 0002:00: root bus resource [bus 02-ff]
[    6.034717] pci 0002:00:00.0: [1077:1020] type 00 class 0x010000
[    6.034773] pci 0002:00:00.0: reg 0x10: [io  0xf200000-0xf2000ff]
[    6.034800] pci 0002:00:00.0: reg 0x14: [mem 0x0f200000-0x0f200fff]
[    6.034893] pci 0002:00:00.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    6.035175] pci 0002:00:01.0: [1077:1020] type 00 class 0x010000
[    6.035213] pci 0002:00:01.0: reg 0x10: [io  0xf400000-0xf4000ff]
[    6.035240] pci 0002:00:01.0: reg 0x14: [mem 0x0f400000-0x0f400fff]
[    6.035333] pci 0002:00:01.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[    6.035599] pci 0002:00:02.0: [10a9:0003] type 00 class 0xff0000
[    6.035641] pci 0002:00:02.0: reg 0x10: [mem 0x0f600000-0x0f6fffff]
[    6.036013] pci 0002:00:06.0: [10a9:0003] type 00 class 0xff0000
[    6.036056] pci 0002:00:06.0: reg 0x10: [mem 0x0fa00000-0x0fafffff]
[    6.036401] pci 0002:00:07.0: [10a9:0005] type 00 class 0x000000
[    6.036433] pci 0002:00:07.0: reg 0x10: [mem 0x00000000-0x00001fff]
[    6.036933] PCI host bridge to bus 0001:00
[    6.084311] pci_bus 0001:00: root bus resource [mem 0x920000000c200000-0x920000000c9fffff]
[    6.183803] pci_bus 0001:00: root bus resource [io  0x920000000ca00000-0x920000000cbfffff]
[    6.283297] pci_bus 0001:00: root bus resource [bus 01-ff]
[    6.349329] pci 0001:00:00.0: [10a9:0002] type 00 class 0xff0000
[    6.349369] pci 0001:00:00.0: reg 0x10: [mem 0x00000000-0x07ffffff]
[    6.349771] pci 0001:00:01.0: [10a9:0002] type 00 class 0xff0000
[    6.349811] pci 0001:00:01.0: reg 0x10: [mem 0x00000000-0x07ffffff]
[    6.350376] PCI host bridge to bus 0000:00
[    6.398511] pci_bus 0000:00: root bus resource [mem 0x920000000b200000-0x920000000b9fffff]
[    6.498002] pci_bus 0000:00: root bus resource [io  0x920000000ba00000-0x920000000bbfffff]
[    6.597500] pci_bus 0000:00: root bus resource [bus 00-ff]
[    6.664580] clocksource: Switched to clocksource HUB-RT
[    6.737340] NET: Registered protocol family 2
[    6.788631] TCP established hash table entries: 65536 (order: 3, 524288 bytes)
[    6.877860] TCP bind hash table entries: 65536 (order: 4, 1048576 bytes)
[    6.961938] TCP: Hash tables configured (established 65536 bind 65536)
[    7.038796] UDP hash table entries: 4096 (order: 1, 131072 bytes)
[    7.112666] UDP-Lite hash table entries: 4096 (order: 1, 131072 bytes)
[    7.191678] NET: Registered protocol family 1
[    7.243000] PCI: CLS 256 bytes, default 128
[    7.244032] futex hash table entries: 1024 (order: 1, 131072 bytes)
[    7.319896] workingset: timestamp_bits=40 max_order=17 bucket_order=0
[    7.396183] zbud: loaded
[    7.428650] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    7.519969] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    7.607150] io scheduler noop registered
[    7.654268] io scheduler deadline registered
[    7.705641] io scheduler cfq registered (default)
[    7.825919] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    7.915337] loop: module loaded
[    7.951330] qla1280: QLA1040 found on PCI bus 0, dev 0
[    8.013015] PCI: Enabling device 0002:00:00.0 (0006 -> 0007)
[    8.583489] random: crng init done
[    8.843500] scsi(0:0): Resetting SCSI BUS
[   11.914788] scsi host0: QLogic QLA1040 PCI to SCSI Host Adapter
                      Firmware version:  7.65.06, Driver version 3.27.1
[   12.068902] qla1280: QLA1040 found on PCI bus 0, dev 1
[   12.128824] PCI: Enabling device 0002:00:01.0 (0006 -> 0007)
[   12.240023] scsi 0:0:1:0: Direct-Access     SEAGATE  SX150176LC       BA12 PQ: 0 ANSI: 2
[   12.336821] scsi(0:0:1:0):
[   12.336828]  Sync: period 10, offset 12
[   12.367970] , Wide
[   12.414054] , Tagged queuing: depth 31

[   12.507613] scsi 0:0:2:0: Direct-Access     SEAGATE  SX150176LC       BA08 PQ: 0 ANSI: 2
[   12.604289] scsi(0:0:2:0):
[   12.604296]  Sync: period 10, offset 12
[   12.635564] , Wide
[   12.681648] , Tagged queuing: depth 31

[   12.775169] scsi 0:0:3:0: Direct-Access     SEAGATE  SX150176LC       BA08 PQ: 0 ANSI: 2
[   12.871848] scsi(0:0:3:0):
[   12.871856]  Sync: period 10, offset 12
[   12.903159] , Wide
[   12.949242] , Tagged queuing: depth 31
[   12.961432] scsi(1:0): Resetting SCSI BUS

[   15.858292] scsi 0:0:4:0: Direct-Access     SEAGATE  SX150176LC       BA11 PQ: 0 ANSI: 2
[   15.954656] scsi(0:0:4:0):
[   15.954664]  Sync: period 10, offset 12
[   15.986201] , Wide
[   16.032286] , Tagged queuing: depth 31

[   16.119472] scsi host1: QLogic QLA1040 PCI to SCSI Host Adapter
                      Firmware version:  7.65.06, Driver version 3.27.1
[   16.275065] console [ttyS0] disabled
[   16.336528] serial8250: ttyS0 at MMIO 0x920000000f620178 (irq = 0, base_baud = 458333) is a 16550A
[   16.442612] console [ttyS0] enabled
[   16.525366] bootconsole [early0] disabled
[   16.646656] serial8250: ttyS1 at MMIO 0x920000000f620170 (irq = 0, base_baud = 458333) is a 16550A
[   16.754744] scsi 0:0:5:0: Direct-Access     SEAGATE  SX150176LC       BA11 PQ: 0 ANSI: 2
[   16.855313] scsi(0:0:5:0):
[   16.855329]  Sync: period 10, offset 12
[   16.887944] , Wide
[   16.889739] Found DS1981U NIC
[   16.889748]  registration number 5e:57:03:00:70:5e, CRC 52
[   16.889750] .
[   16.905995] Ethernet address is 08:00:69:05:64:74.
[   16.907374] ioc3-eth 0002:00:02.0 eth0: link up, 100Mbps, full-duplex, lpa 0x8DE1
[   16.907381] eth0: Using PHY 31, vendor 0x20005c0, model 0, rev 0.
[   16.907384] eth0: IOC3 SSRAM has 128 kbyte.
[   16.929432] serial8250: ttyS2 at MMIO 0x920000000fa20178 (irq = 0, base_baud = 458333) is a 16550A
[   16.950337] serial8250: ttyS3 at MMIO 0x920000000fa20170 (irq = 0, base_baud = 458333) is a 16550A
[   16.954048] NIC search failed (not fatal).
[   16.956507] NIC search failed (not fatal).
[   16.957008] Failed to read MAC address
[   16.957012] Ethernet address is 00:00:00:00:00:00.
[   16.958135] ioc3-eth 0002:00:06.0 eth1: link down
[   16.958142] eth1: Using PHY 31, vendor 0x0, model 0, rev 0.
[   16.958145] eth1: IOC3 SSRAM has 64 kbyte.
[   16.959185] NET: Registered protocol family 17
[   16.959732] rtc-m48t35 rtc-m48t35: rtc core: registered m48t35 as rtc0
[   18.073532] , Tagged queuing: depth 31

[   18.136683] rtc-m48t35 rtc-m48t35: setting system clock to 2017-02-08 08:57:44 UTC (1486544264)
[   18.249152] scsi 0:0:6:0: CD-ROM            TOSHIBA  CD-ROM XM-5701TA 0167 PQ: 0 ANSI: 2
[   18.347391] scsi(0:0:6:0):
[   18.347396]  Sync: period 10, offset 12

[   19.841973] sd 0:0:3:0: [sdc] 97693755 512-byte logical blocks: (50.0 GB/46.6 GiB)
[   19.844598] sr 0:0:6:0: [sr0] scsi-1 drive
[   19.844606] cdrom: Uniform CD-ROM driver Revision: 3.20
[   19.845324] sr 0:0:6:0: Attached scsi CD-ROM sr0
[   19.934698] sd 0:0:2:0: [sdb] 97693755 512-byte logical blocks: (50.0 GB/46.6 GiB)
[   19.934807] sd 0:0:1:0: [sda] 97693755 512-byte logical blocks: (50.0 GB/46.6 GiB)
[   19.934986] sd 0:0:4:0: [sdd] 97693755 512-byte logical blocks: (50.0 GB/46.6 GiB)
[   19.935572] sd 0:0:5:0: [sde] 97693755 512-byte logical blocks: (50.0 GB/46.6 GiB)
[   19.936993] sd 0:0:2:0: [sdb] Write Protect is off
[   19.937004] sd 0:0:2:0: [sdb] Mode Sense: cb 00 10 08
[   19.937556] sd 0:0:1:0: [sda] Write Protect is off
[   19.937565] sd 0:0:1:0: [sda] Mode Sense: cb 00 10 08
[   19.937803] sd 0:0:4:0: [sdd] Write Protect is off
[   19.937812] sd 0:0:4:0: [sdd] Mode Sense: cb 00 10 08
[   19.938310] sd 0:0:5:0: [sde] Write Protect is off
[   19.938320] sd 0:0:5:0: [sde] Mode Sense: cb 00 10 08
[   19.939948] sd 0:0:2:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   19.940496] sd 0:0:1:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   19.940944] sd 0:0:4:0: [sdd] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   19.941212] sd 0:0:5:0: [sde] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   20.002748]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda9 sda11
[   20.013020]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6 sdd9 sdd11
[   20.014354]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb9 sdb11
[   20.024588] sd 0:0:5:0: [sde] Attached SCSI disk
[   20.025291] sd 0:0:1:0: [sda] Attached SCSI disk
[   20.026150] sd 0:0:2:0: [sdb] Attached SCSI disk
[   20.026569] sd 0:0:4:0: [sdd] Attached SCSI disk
[   21.481104] sd 0:0:3:0: [sdc] Write Protect is off
[   21.538895] sd 0:0:3:0: [sdc] Mode Sense: cb 00 10 08
[   21.541780] sd 0:0:3:0: [sdc] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   21.694266]  sdc: sdc1 sdc2 sdc3 sdc4 sdc5 sdc6 sdc9 sdc11
[   21.770364] sd 0:0:3:0: [sdc] Attached SCSI disk
[   21.826524] md: Waiting for all devices to be available before autodetect
[   21.908398] md: If you don't use raid, use raid=noautodetect
[   21.977995] md: Autodetecting RAID arrays.
[   22.112008] md: invalid raid superblock magic on sdd3
[   22.172984] md: sdd3 does not have a valid v0.90 superblock, not importing!
[   22.272565] md: invalid raid superblock magic on sdd4
[   22.333508] md: sdd4 does not have a valid v0.90 superblock, not importing!
[   22.543056] md: autorun ...
[   22.576739] md: sdc5 has different UUID to sdc6
[   22.631360] md: sdc4 has different UUID to sdc6
[   22.686052] md: sdc3 has different UUID to sdc6
[   22.740709] md: sdc1 has different UUID to sdc6
[   22.795447] md: sdd5 has different UUID to sdc6
[   22.850064] md: sdb5 has different UUID to sdc6
[   22.904724] md: sdb4 has different UUID to sdc6
[   22.959392] md: sdb3 has different UUID to sdc6
[   23.014086] md: sdb1 has different UUID to sdc6
[   23.068748] md: sdd1 has different UUID to sdc6
[   23.123434] md: sda5 has different UUID to sdc6
[   23.178092] md: sda4 has different UUID to sdc6
[   23.232752] md: sda3 has different UUID to sdc6
[   23.287422] md: sda1 has different UUID to sdc6
[   23.343672] md: running: <sdc6><sdd6><sdb6><sda6>
[   23.402609] md/raid:md4: device sdc6 operational as raid disk 2
[   23.473960] md/raid:md4: device sdb6 operational as raid disk 1
[   23.545358] md/raid:md4: device sda6 operational as raid disk 0
[   23.620651] md/raid:md4: raid level 5 active with 3 out of 3 devices, algorithm 2
[   23.731897] md4: detected capacity change from 0 to 1940914176
[   23.802401] md: sdc4 has different UUID to sdc5
[   23.857115] md: sdc3 has different UUID to sdc5
[   23.911764] md: sdc1 has different UUID to sdc5
[   23.966428] md: sdd5 has different UUID to sdc5
[   24.021133] md: sdb4 has different UUID to sdc5
[   24.075753] md: sdb3 has different UUID to sdc5
[   24.130442] md: sdb1 has different UUID to sdc5
[   24.185126] md: sdd1 has different UUID to sdc5
[   24.239785] md: sda4 has different UUID to sdc5
[   24.294452] md: sda3 has different UUID to sdc5
[   24.349137] md: sda1 has different UUID to sdc5
[   24.405311] md: running: <sdc5><sdb5><sda5>
[   24.457636] md/raid:md3: device sdc5 operational as raid disk 2
[   24.529063] md/raid:md3: device sdb5 operational as raid disk 1
[   24.600456] md/raid:md3: device sda5 operational as raid disk 0
[   24.675431] md/raid:md3: raid level 5 active with 3 out of 3 devices, algorithm 2
[   24.789229] md3: detected capacity change from 0 to 4013686784
[   24.859652] md: sdc3 has different UUID to sdc4
[   24.914292] md: sdc1 has different UUID to sdc4
[   24.968933] md: sdd5 has different UUID to sdc4
[   25.023626] md: sdb3 has different UUID to sdc4
[   25.078273] md: sdb1 has different UUID to sdc4
[   25.132940] md: sdd1 has different UUID to sdc4
[   25.187633] md: sda3 has different UUID to sdc4
[   25.242286] md: sda1 has different UUID to sdc4
[   25.298457] md: running: <sdc4><sdb4><sda4>
[   25.350924] md/raid:md2: device sdc4 operational as raid disk 2
[   25.422336] md/raid:md2: device sdb4 operational as raid disk 1
[   25.493740] md/raid:md2: device sda4 operational as raid disk 0
[   25.568663] md/raid:md2: raid level 5 active with 3 out of 3 devices, algorithm 2
[   25.681053] md2: detected capacity change from 0 to 80015261696
[   25.752544] md: sdc1 has different UUID to sdc3
[   25.807252] md: sdd5 has different UUID to sdc3
[   25.861928] md: sdb1 has different UUID to sdc3
[   25.916728] md: sdd1 has different UUID to sdc3
[   25.971376] md: sda1 has different UUID to sdc3
[   26.027416] md: running: <sdc3><sdb3><sda3>
[   26.079824] md/raid:md1: device sdc3 operational as raid disk 2
[   26.151284] md/raid:md1: device sdb3 operational as raid disk 1
[   26.222664] md/raid:md1: device sda3 operational as raid disk 0
[   26.297448] md/raid:md1: raid level 5 active with 3 out of 3 devices, algorithm 2
[   26.400761] md1: detected capacity change from 0 to 12008554496
[   26.472253] md: sdd5 has different UUID to sdc1
[   26.527422] md: running: <sdc1><sdb1><sdd1><sda1>
[   26.586161] md/raid:md0: device sdc1 operational as raid disk 2
[   26.657569] md/raid:md0: device sdb1 operational as raid disk 1
[   26.728956] md/raid:md0: device sda1 operational as raid disk 0
[   26.804247] md/raid:md0: raid level 5 active with 3 out of 3 devices, algorithm 2
[   26.909265] md0: detected capacity change from 0 to 1019740160
[   26.979722] md: md3 already running, cannot run sdd5
[   27.039662] md: ... autorun DONE.
[   27.151464] UDF-fs: warning (device md0): udf_fill_super: No partition found (2)
[   27.268270] XFS (md0): Mounting V5 Filesystem
[   30.003679] XFS (md0): Ending clean mount
[   30.052192] VFS: Mounted root (xfs filesystem) readonly on device 9:0.
[   30.136790] devtmpfs: mounted
[   30.174297] Freeing unused kernel memory: 320K
[   30.227891] This architecture does not have kernel memory protection.
[   40.863143] udevd[585]: starting version 3.2.1
[   40.938693] udevd[585]: specified group 'video' unknown
[   40.939862] udevd[585]: specified group 'tape' unknown
[   40.997900] udevd[586]: starting eudev-3.2.1
[   41.517564] udevd[586]: specified group 'video' unknown
[   41.518745] udevd[586]: specified group 'tape' unknown
[   48.072540] Adding 449728k swap on /dev/sda2.  Priority:1 extents:1 across:449728k
[   48.111252] Adding 449728k swap on /dev/sdb2.  Priority:1 extents:1 across:449728k
[   48.219132] Adding 449728k swap on /dev/sdc2.  Priority:1 extents:1 across:449728k
[   48.685496] XFS (md1): Mounting V5 Filesystem
[   51.388111] XFS (md1): Ending clean mount
[   51.577772] XFS (md2): Mounting V5 Filesystem
[   54.300352] XFS (md2): Ending clean mount
[   54.600708] XFS (md3): Mounting V5 Filesystem
[   57.382781] XFS (md3): Ending clean mount
[   57.485516] XFS (md4): Mounting V5 Filesystem
[   60.223068] XFS (md4): Ending clean mount
[    0.000000] Linux version 4.10.0-rc7 (root@helcaraxe) (gcc version 6.3.0 (Gentoo Hardened 6.3.0 p1.0) ) #2 SMP Wed Feb 8 04:07:11 EST 2017
[    0.000000] ARCH: SGI-IP27
[    0.000000] PROMLIB: ARC firmware Version 64 Revision 0
[    0.000000] Discovered 4 cpus on 2 nodes
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] ************** Topology ********************
[    0.000000]
[    0.000000] 00
[    0.000000] 01
[    0.000000]
[    0.000000] 00
[    0.000000] 255
[    0.000000] 255
[    0.000000]
[    0.000000] 01
[    0.000000] 255
[    0.000000] 255
[    0.000000]
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 00000f14 (R14000)
[    0.000000] FPU revision is: 00000900
[    0.000000] Checking for the multiply/shift bug... no.
[    0.000000] Checking for the daddiu bug... no.
[    0.000000] IP27: Running on node 0.
[    0.000000] Node 0 has a primary CPU, CPU is running.
[    0.000000] Node 0 has a secondary CPU, CPU is running.
[    0.000000] Machine is in M mode.
[    0.000000] Cpu 0, Nasid 0x0: partnum 0x0 is
[    0.000000] is xbow
[    0.000000] Cpu 0, Nasid 0x0, widget 0x8 (partnum 0xc102) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xb (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xc (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xd (partnum 0xc003) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xf (partnum 0xc002) is
[    0.000000] CPU 0 clock is 500MHz.
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 00000000006e0000 @ 0000000000010000 (usable)
[    0.000000]  memory: 0000000000050000 @ 00000000006f0000 (usable after init)
[    0.000000] cma: Reserved 512 MiB at 0x00000001e0000000
[    0.000000] REPLICATION: ON nasid 0, ktext from nasid 0, kdata from nasid 0
[    0.000000] REPLICATION: ON nasid 1, ktext from nasid 0, kdata from nasid 0
[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    0.000000] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000]   node   1: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000] Initmem setup node 1 [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] percpu: Embedded 2 pages/cpu @a800000001430000 s60064 r0 d71008 u131072
[    0.000000] Built 2 zonelists in Node order, mobility grouping on.  Total pages: 130944
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=dksc(0,1,0) console=ttyS0,9600 root=/dev/md0
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Memory: 7846784K/8388608K available (5172K kernel code, 678K rwdata, 1116K rodata, 320K init, 700K bss, 17536K reserved, 524288K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:256
[    0.000000] clocksource: HUB-RT: mask: 0xfffffffffffff max_cycles: 0x127350b88, max_idle_ns: 1763180808480 ns
[    0.000012] sched_clock: 52 bits at 1250kHz, resolution 800ns, wraps every 4398046510800ns
[    0.103183] Console: colour dummy device 80x25
[    0.156258] Calibrating delay loop... 749.56 BogoMIPS (lpj=3747840)
[    0.318497] pid_max: default: 32768 minimum: 301
[    0.378347] Dentry cache hash table entries: 1048576 (order: 7, 8388608 bytes)
[    0.577889] Inode-cache hash table entries: 524288 (order: 6, 4194304 bytes)
[    0.720380] Mount-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.801235] Mountpoint-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.900788] Checking for the daddi bug... no.
[    0.957852] smp: Bringing up secondary CPUs ...
[    1.012850] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.012866] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.012873] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.016040] CPU 1 clock is 500MHz.
[    1.016063] CPU1 revision is: 00000f14 (R14000)
[    1.016067] FPU revision is: 00000900
[    1.054189] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.054209] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.054219] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.057447] Cpu 2, Nasid 0x1: partnum 0x0 is
[    1.057471] is xbow
[    1.057513] CPU 2 clock is 500MHz.
[    1.057532] CPU2 revision is: 00000f14 (R14000)
[    1.057536] FPU revision is: 00000900
[    1.094532] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.094550] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.094560] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.097795] CPU 3 clock is 500MHz.
[    1.097823] CPU3 revision is: 00000f14 (R14000)
[    1.097827] FPU revision is: 00000900
[    1.131387] smp: Brought up 2 nodes, 4 CPUs
[    2.425207] devtmpfs: initialized
[    2.464376] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    2.586105] xor: measuring software checksum speed
[    2.742023]    8regs     :   710.400 MB/sec
[    2.890670]    8regs_prefetch:   684.800 MB/sec
[    3.043481]    32regs    :   659.200 MB/sec
[    3.171390] random: fast init done
[    3.192078]    32regs_prefetch:   640.000 MB/sec
[    3.192086] xor: using function: 8regs (710.400 MB/sec)
[    3.329769] NET: Registered protocol family 16
[    3.442281] cpuidle: using governor ladder
[    3.549724] cpuidle: using governor menu
[    3.902207] raid6: int64x1  gen()   304 MB/s
[    4.122196] raid6: int64x1  xor()    64 MB/s
[    4.341936] raid6: int64x2  gen()   446 MB/s
[    4.561720] raid6: int64x2  xor()   152 MB/s
[    4.781428] raid6: int64x4  gen()   386 MB/s
[    5.001245] raid6: int64x4  xor()   141 MB/s
[    5.221081] raid6: int64x8  gen()   315 MB/s
[    5.440814] raid6: int64x8  xor()   116 MB/s
[    5.490252] raid6: using algorithm int64x2 gen() 446 MB/s
[    5.555184] raid6: .... xor() 152 MB/s, rmw enabled
[    5.613836] raid6: using intx1 recovery algorithm
[    5.670909] SCSI subsystem initialized
[    5.716212] PCI host bridge to bus 0002:00
[    5.764684] pci_bus 0002:00: root bus resource [mem 0x920000000f200000-0x920000000f9fffff]
[    5.864163] pci_bus 0002:00: root bus resource [io  0x920000000fa00000-0x920000000fbfffff]
[    5.963663] pci_bus 0002:00: root bus resource [bus 02-ff]
[    6.031825] pci 0002:00:02.0: BAR 0: no space for [mem size 0x00100000]
[    6.109557] pci 0002:00:02.0: BAR 0: failed to assign [mem size 0x00100000]
[    6.193341] pci 0002:00:06.0: BAR 0: no space for [mem size 0x00100000]
[    6.272936] pci 0002:00:06.0: BAR 0: failed to assign [mem size 0x00100000]
[    6.356740] pci 0002:00:00.0: BAR 6: no space for [mem size 0x00010000 pref]
[    6.441558] pci 0002:00:00.0: BAR 6: failed to assign [mem size 0x00010000 pref]
[    6.530583] pci 0002:00:01.0: BAR 6: no space for [mem size 0x00010000 pref]
[    6.615415] pci 0002:00:01.0: BAR 6: failed to assign [mem size 0x00010000 pref]
[    6.704440] pci 0002:00:00.0: BAR 1: no space for [mem size 0x00001000]
[    6.784036] pci 0002:00:00.0: BAR 1: failed to assign [mem size 0x00001000]
[    6.867824] pci 0002:00:01.0: BAR 1: no space for [mem size 0x00001000]
[    6.947420] pci 0002:00:01.0: BAR 1: failed to assign [mem size 0x00001000]
[    7.031210] pci 0002:00:00.0: BAR 0: no space for [io  size 0x0100]
[    7.106623] pci 0002:00:00.0: BAR 0: failed to assign [io  size 0x0100]
[    7.186215] pci 0002:00:01.0: BAR 0: no space for [io  size 0x0100]
[    7.261620] pci 0002:00:01.0: BAR 0: failed to assign [io  size 0x0100]
[    7.341358] PCI host bridge to bus 0001:00
[    7.390455] pci_bus 0001:00: root bus resource [mem 0x920000000c200000-0x920000000c9fffff]
[    7.489945] pci_bus 0001:00: root bus resource [io  0x920000000ca00000-0x920000000cbfffff]
[    7.589441] pci_bus 0001:00: root bus resource [bus 01-ff]
[    7.656392] pci 0001:00:00.0: BAR 0: no space for [mem size 0x08000000]
[    7.735022] pci 0001:00:00.0: BAR 0: failed to assign [mem size 0x08000000]
[    7.818808] pci 0001:00:01.0: BAR 0: no space for [mem size 0x08000000]
[    7.898403] pci 0001:00:01.0: BAR 0: failed to assign [mem size 0x08000000]
[    7.982315] PCI host bridge to bus 0000:00
[    8.031416] pci_bus 0000:00: root bus resource [mem 0x920000000b200000-0x920000000b9fffff]
[    8.130914] pci_bus 0000:00: root bus resource [io  0x920000000ba00000-0x920000000bbfffff]
[    8.230410] pci_bus 0000:00: root bus resource [bus 00-ff]
[    8.297487] clocksource: Switched to clocksource HUB-RT
[    8.370358] NET: Registered protocol family 2
[    8.421632] TCP established hash table entries: 65536 (order: 3, 524288 bytes)
[    8.510880] TCP bind hash table entries: 65536 (order: 4, 1048576 bytes)
[    8.594960] TCP: Hash tables configured (established 65536 bind 65536)
[    8.671821] UDP hash table entries: 4096 (order: 1, 131072 bytes)
[    8.745673] UDP-Lite hash table entries: 4096 (order: 1, 131072 bytes)
[    8.824692] NET: Registered protocol family 1
[    8.877054] futex hash table entries: 1024 (order: 1, 131072 bytes)
[    8.953001] workingset: timestamp_bits=40 max_order=17 bucket_order=0
[    9.029206] zbud: loaded
[    9.061660] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    9.153560] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    9.240707] io scheduler noop registered
[    9.287809] io scheduler deadline registered
[    9.339188] io scheduler cfq registered (default)
[    9.460018] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[   13.353990] loop: module loaded
[   13.389999] qla1280: QLA1040 found on PCI bus 0, dev 0
[   13.452304] qla1280 0002:00:00.0: can't ioremap BAR 1: [??? 0x00000000 flags 0x0]
[   13.541691] qla1280: Unable to map I/O memory
[   13.594332] qla1280: QLA1040 found on PCI bus 0, dev 1
[   13.656402] qla1280 0002:00:01.0: can't ioremap BAR 1: [??? 0x00000000 flags 0x0]
[   13.745916] qla1280: Unable to map I/O memory
[   13.809256] Data bus error, epc == a8000000003fdb74, ra == a8000000003fe4f0
[   13.891137] Oops[#1]:
[   13.918372] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.10.0-rc7 #2
[   13.993771] task: a8000000e077dc80 task.stack: a8000000e0780000
[   14.064988] $ 0   : 0000000000000000 ffffffff94001ce0 00000000000800c0 ffffffffefffffff
[   14.161342] $ 4   : 9200000000020178 ffffffff94001ce1 ffffffffa8000000 0000000000000000
[   14.257697] $ 8   : 0000000000000001 a8000001c09d4070 a8000001c09d4060 ffffffffffffffff
[   14.354051] $12   : 0000000000000000 a80000000032f1ec 0000000000000000 a8000000e078fd74
[   14.450406] $16   : 9200000000000000 a8000001c08b4800 0000000000020000 a8000001c09d4700
[   14.546761] $20   : 0000000000000000 a8000000007e0000 a8000001c09d4000 a8000000006f045c
[   14.643116] $24   : 0000000000000000 0000000000680000
[   14.739472] $28   : a8000000e0780000 a8000000e078fc30 a800000000760000 a8000000003fe4f0
[   14.835827] Hi    : 0000000000000000
[   14.878768] Lo    : 000000000000b400
[   14.921724] epc   : a8000000003fdb74 ioc3_probe+0x1dc/0xda0
[   14.988744] ra    : a8000000003fe4f0 ioc3_probe+0xb58/0xda0
[   15.055767] Status: 94001ce3 KX SX UX KERNEL EXL IE
[   15.115467] Cause : 0000d01c (ExcCode 07)
[   15.163644] PrId  : 00000f14 (R14000)
[   15.207636] Process swapper/0 (pid: 1, threadinfo=a8000000e0780000, task=a8000000e077dc80, tls=0000000000000000)
[   15.330169] Stack : a8000001c06b6978 a8000001c0d6cc60 a8000001c08b4800 a8000001c08b4800
[   15.426524]         a8000000006a2dc0 a800000000696bd0 0000000000000000 a8000000007e0000
[   15.522879]         a8000000006a2e28 a8000000006f045c a800000000760000 a800000000371f94
[   15.619234]         a8000001c08b4898 a800000000372a28 a8000000006a2dc0 a8000001c08b4800
[   15.715588]         a800000000588550 a8000000003c2824 a80000000062a410 a8000000007d0000
[   15.811944]         a8000001c08b4898 a8000000007e0000 0000000000000000 a8000000003c2e58
[   15.908298]         a8000001c08b4898 a8000000006a2e28 a8000001c08b48f8 a800000000696bd0
[   16.004653]         a80000000071bf30 a800000000760000 0000000000000007 a8000000003c30c8
[   16.101008]         0000000000000000 a8000000006a2e28 a8000000003c2fd8 a8000000003c0ca4
[   16.197364]         a8000000e093a0a0 a8000001c0708568 a8000000006a2e28 a8000001c0d19f00
[   16.293718]         ...
[   16.323046] Call Trace:
[   16.352376] [<a8000000003fdb74>] ioc3_probe+0x1dc/0xda0
[   16.415232] [<a800000000371f94>] local_pci_probe+0x2c/0x98
[   16.481201] [<a800000000372a28>] pci_device_probe+0x140/0x1b8
[   16.550325] [<a8000000003c2e58>] really_probe+0x1b0/0x330
[   16.615259] [<a8000000003c30c8>] __driver_attach+0xf0/0xf8
[   16.681248] [<a8000000003c0ca4>] bus_for_each_dev+0x6c/0xb8
[   16.748272] [<a8000000003c1960>] bus_add_driver+0x1c8/0x330
[   16.815301] [<a8000000003c3d34>] driver_register+0x84/0x150
[   16.882340] [<a8000000006f109c>] do_one_initcall+0xc4/0x1b4
[   16.949360] [<a8000000006f1478>] kernel_init_freeable+0x2ec/0x3e8
[   17.022675] [<a80000000051fdd0>] kernel_init+0x10/0x1c0
[   17.085519] [<a800000000025968>] ret_from_kernel_thread+0x14/0x1c
[   17.158823] Code: 8e020034  0204202d  ae000058 <8e020058> ae00005c  8e02005c  8e0200b8  00431024  ae0200b8
[   17.276122]
[   17.294049] ---[ end trace 027164ad3883b4c1 ]---
[   17.349485] Kernel panic - not syncing: Fatal exception
[   17.412320] Reboot started from CPU 0
[    0.000000] Linux version 4.10.0-rc7 (root@helcaraxe) (gcc version 6.3.0 (Gentoo Hardened 6.3.0 p1.0) ) #3 SMP Wed Feb 8 04:13:21 EST 2017
[    0.000000] ARCH: SGI-IP27
[    0.000000] PROMLIB: ARC firmware Version 64 Revision 0
[    0.000000] Discovered 4 cpus on 2 nodes
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] node_distance: router_a NULL
[    0.000000] ************** Topology ********************
[    0.000000]
[    0.000000] 00
[    0.000000] 01
[    0.000000]
[    0.000000] 00
[    0.000000] 255
[    0.000000] 255
[    0.000000]
[    0.000000] 01
[    0.000000] 255
[    0.000000] 255
[    0.000000]
[    0.000000] bootconsole [early0] enabled
[    0.000000] CPU0 revision is: 00000f14 (R14000)
[    0.000000] FPU revision is: 00000900
[    0.000000] Checking for the multiply/shift bug... no.
[    0.000000] Checking for the daddiu bug... no.
[    0.000000] IP27: Running on node 0.
[    0.000000] Node 0 has a primary CPU, CPU is running.
[    0.000000] Node 0 has a secondary CPU, CPU is running.
[    0.000000] Machine is in M mode.
[    0.000000] Cpu 0, Nasid 0x0: partnum 0x0 is
[    0.000000] is xbow
[    0.000000] Cpu 0, Nasid 0x0, widget 0x8 (partnum 0xc102) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xb (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xc (partnum 0xc002) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xd (partnum 0xc003) is
[    0.000000] Cpu 0, Nasid 0x0, widget 0xf (partnum 0xc002) is
[    0.000000] CPU 0 clock is 500MHz.
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 00000000006e0000 @ 0000000000010000 (usable)
[    0.000000]  memory: 0000000000050000 @ 00000000006f0000 (usable after init)
[    0.000000] cma: Reserved 512 MiB at 0x00000001e0000000
[    0.000000] REPLICATION: ON nasid 0, ktext from nasid 0, kdata from nasid 0
[    0.000000] REPLICATION: ON nasid 1, ktext from nasid 0, kdata from nasid 0
[    0.000000] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    0.000000] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    0.000000] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    0.000000] Zone ranges:
[    0.000000]   Normal   [mem 0x0000000000000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000]   node   1: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x00000000ffffffff]
[    0.000000] Initmem setup node 1 [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] percpu: Embedded 2 pages/cpu @a800000001430000 s60064 r0 d71008 u131072
[    0.000000] Built 2 zonelists in Node order, mobility grouping on.  Total pages: 130944
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: root=dksc(0,1,0) console=ttyS0,9600 root=/dev/md0
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Memory: 7846784K/8388608K available (5172K kernel code, 678K rwdata, 1116K rodata, 320K init, 700K bss, 17536K reserved, 524288K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:256
[    0.000000] clocksource: HUB-RT: mask: 0xfffffffffffff max_cycles: 0x127350b88, max_idle_ns: 1763180808480 ns
[    0.000012] sched_clock: 52 bits at 1250kHz, resolution 800ns, wraps every 4398046510800ns
[    0.103168] Console: colour dummy device 80x25
[    0.156248] Calibrating delay loop... 749.56 BogoMIPS (lpj=3747840)
[    0.318496] pid_max: default: 32768 minimum: 301
[    0.378314] Dentry cache hash table entries: 1048576 (order: 7, 8388608 bytes)
[    0.577879] Inode-cache hash table entries: 524288 (order: 6, 4194304 bytes)
[    0.720390] Mount-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.801234] Mountpoint-cache hash table entries: 16384 (order: 1, 131072 bytes)
[    0.900782] Checking for the daddi bug... no.
[    0.957853] smp: Bringing up secondary CPUs ...
[    1.012864] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.012880] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.012888] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.016053] CPU 1 clock is 500MHz.
[    1.016076] CPU1 revision is: 00000f14 (R14000)
[    1.016080] FPU revision is: 00000900
[    1.054200] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.054220] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.054229] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.057457] Cpu 2, Nasid 0x1: partnum 0x0 is
[    1.057480] is xbow
[    1.057523] CPU 2 clock is 500MHz.
[    1.057540] CPU2 revision is: 00000f14 (R14000)
[    1.057544] FPU revision is: 00000900
[    1.094540] Primary instruction cache 32kB, VIPT, 2-way, linesize 64 bytes.
[    1.094559] Primary data cache 32kB, 2-way, VIPT, no aliases, linesize 32 bytes
[    1.094568] Unified secondary cache 8192kB 2-way, linesize 128 bytes.
[    1.097801] CPU 3 clock is 500MHz.
[    1.097830] CPU3 revision is: 00000f14 (R14000)
[    1.097833] FPU revision is: 00000900
[    1.131379] smp: Brought up 2 nodes, 4 CPUs
[    2.425205] devtmpfs: initialized
[    2.464371] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    2.586100] xor: measuring software checksum speed
[    2.741957]    8regs     :   710.400 MB/sec
[    2.890575]    8regs_prefetch:   684.800 MB/sec
[    3.043334]    32regs    :   659.200 MB/sec
[    3.171378] random: fast init done
[    3.191971]    32regs_prefetch:   640.000 MB/sec
[    3.191979] xor: using function: 8regs (710.400 MB/sec)
[    3.329660] NET: Registered protocol family 16
[    3.442177] cpuidle: using governor ladder
[    3.539610] cpuidle: using governor menu
[    3.862130] raid6: int64x1  gen()   304 MB/s
[    4.082259] raid6: int64x1  xor()    65 MB/s
[    4.301996] raid6: int64x2  gen()   445 MB/s
[    4.521803] raid6: int64x2  xor()   152 MB/s
[    4.741596] raid6: int64x4  gen()   387 MB/s
[    4.961463] raid6: int64x4  xor()   141 MB/s
[    5.181241] raid6: int64x8  gen()   315 MB/s
[    5.401104] raid6: int64x8  xor()   116 MB/s
[    5.450556] raid6: using algorithm int64x2 gen() 445 MB/s
[    5.515490] raid6: .... xor() 152 MB/s, rmw enabled
[    5.574141] raid6: using intx1 recovery algorithm
[    5.631217] SCSI subsystem initialized
[    5.676508] PCI host bridge to bus 0002:00
[    5.724989] pci_bus 0002:00: root bus resource [mem 0x920000000f200000-0x920000000f9fffff]
[    5.824467] pci_bus 0002:00: root bus resource [io  0x920000000fa00000-0x920000000fbfffff]
[    5.923966] pci_bus 0002:00: root bus resource [bus 02-ff]
[    5.992099] pci 0002:00:00.0: can't claim BAR 0 [io  0xf200000-0xf2000ff]: no compatible bridge window
[    6.102330] pci 0002:00:00.0: can't claim BAR 1 [mem 0x0f200000-0x0f200fff]: no compatible bridge window
[    6.216484] pci 0002:00:00.0: can't claim BAR 6 [mem 0x00000000-0x0000ffff pref]: no compatible bridge window
[    6.335894] pci 0002:00:01.0: can't claim BAR 0 [io  0xf400000-0xf4000ff]: no compatible bridge window
[    6.447946] pci 0002:00:01.0: can't claim BAR 1 [mem 0x0f400000-0x0f400fff]: no compatible bridge window
[    6.562105] pci 0002:00:01.0: can't claim BAR 6 [mem 0x00000000-0x0000ffff pref]: no compatible bridge window
[    6.681501] pci 0002:00:02.0: can't claim BAR 0 [mem 0x0f600000-0x0f6fffff]: no compatible bridge window
[    6.795661] pci 0002:00:06.0: can't claim BAR 0 [mem 0x0fa00000-0x0fafffff]: no compatible bridge window
[    6.909821] pci 0002:00:07.0: can't claim BAR 0 [mem 0x00000000-0x00001fff]: no compatible bridge window
[    7.024114] PCI host bridge to bus 0001:00
[    7.073200] pci_bus 0001:00: root bus resource [mem 0x920000000c200000-0x920000000c9fffff]
[    7.172704] pci_bus 0001:00: root bus resource [io  0x920000000ca00000-0x920000000cbfffff]
[    7.272200] pci_bus 0001:00: root bus resource [bus 01-ff]
[    7.339148] pci 0001:00:00.0: can't claim BAR 0 [mem 0x00000000-0x07ffffff]: no compatible bridge window
[    7.452346] pci 0001:00:01.0: can't claim BAR 0 [mem 0x00000000-0x07ffffff]: no compatible bridge window
[    7.566625] PCI host bridge to bus 0000:00
[    7.615733] pci_bus 0000:00: root bus resource [mem 0x920000000b200000-0x920000000b9fffff]
[    7.715232] pci_bus 0000:00: root bus resource [io  0x920000000ba00000-0x920000000bbfffff]
[    7.814720] pci_bus 0000:00: root bus resource [bus 00-ff]
[    7.881790] clocksource: Switched to clocksource HUB-RT
[    7.954615] NET: Registered protocol family 2
[    8.005935] TCP established hash table entries: 65536 (order: 3, 524288 bytes)
[    8.095191] TCP bind hash table entries: 65536 (order: 4, 1048576 bytes)
[    8.179264] TCP: Hash tables configured (established 65536 bind 65536)
[    8.256130] UDP hash table entries: 4096 (order: 1, 131072 bytes)
[    8.329975] UDP-Lite hash table entries: 4096 (order: 1, 131072 bytes)
[    8.409000] NET: Registered protocol family 1
[    8.461360] futex hash table entries: 1024 (order: 1, 131072 bytes)
[    8.537336] workingset: timestamp_bits=40 max_order=17 bucket_order=0
[    8.613510] zbud: loaded
[    8.645971] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[    8.737724] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    8.824909] io scheduler noop registered
[    8.872006] io scheduler deadline registered
[    8.923377] io scheduler cfq registered (default)
[    9.043624] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    9.133084] loop: module loaded
[    9.169123] qla1280: QLA1040 found on PCI bus 0, dev 0
[    9.230776] PCI: Enabling device 0002:00:00.0 (0006 -> 0007)
[    9.299489] qla1280 0002:00:00.0: can't ioremap BAR 1: [mem size 0x00001000]
[    9.383644] qla1280: Unable to map I/O memory
[    9.436303] qla1280: QLA1040 found on PCI bus 0, dev 1
[    9.497807] PCI: Enabling device 0002:00:01.0 (0006 -> 0007)
[    9.566389] qla1280 0002:00:01.0: can't ioremap BAR 1: [mem size 0x00001000]
[    9.650713] qla1280: Unable to map I/O memory
[    9.872302] console [ttyS0] enabledd¦[    9.766238] serial8250: ttyS0 at MMIO 0x920000000f620178 (irq = 0, base_baud = 458333) is a 16550A
[    9.872302] console [ttyS0] enabled
[    9.955067] bootconsole [early0] disabled
[    9.955067] bootconsole [early0] disabled
[   10.073000] serial8250: ttyS1 at MMIO 0x920000000f620170 (irq = 0, base_baud = 458333) is a 16550A
[   10.216100] Found DS1981U NIC
[   10.216112]  registration number 5e:57:03:00:70:5e, CRC 52
[   10.251922] .
[   10.353129] Ethernet address is 08:00:69:05:64:74.
[   10.412166] ioc3-eth 0002:00:02.0 eth0: link up, 100Mbps, full-duplex, lpa 0x8DE1
[   10.502356] eth0: Using PHY 31, vendor 0x20005c0, model 0, rev 0.
[   10.575863] eth0: IOC3 SSRAM has 128 kbyte.
[   10.646991] serial8250: ttyS2 at MMIO 0x920000000fa20178 (irq = 0, base_baud = 458333) is a 16550A
[   10.775950] serial8250: ttyS3 at MMIO 0x920000000fa20170 (irq = 0, base_baud = 458333) is a 16550A
[   10.887716] NIC search failed (not fatal).
[   10.939561] NIC search failed (not fatal).
[   10.989434] Failed to read MAC address
[   11.034612] Ethernet address is 00:00:00:00:00:00.
[   11.093536] ioc3-eth 0002:00:06.0 eth1: link down
[   11.150237] eth1: Using PHY 31, vendor 0x0, model 0, rev 0.
[   11.217496] eth1: IOC3 SSRAM has 64 kbyte.
[   11.267928] NET: Registered protocol family 17
[   11.322106] rtc-m48t35 rtc-m48t35: rtc core: registered m48t35 as rtc0
[   11.402360] rtc-m48t35 rtc-m48t35: setting system clock to 2017-02-08 09:13:55 UTC (1486545235)
[   11.509220] md: Waiting for all devices to be available before autodetect
[   11.591060] md: If you don't use raid, use raid=noautodetect
[   11.660780] md: Autodetecting RAID arrays.
[   11.710168] md: autorun ...
[   11.743888] md: ... autorun DONE.
[   11.784804] isofs_fill_super: bread failed, dev=md0, iso_blknum=16, block=32
[   11.870695] UDF-fs: error (device md0): udf_read_tagged: read failed, block=256, location=256
[   11.973747] UDF-fs: error (device md0): udf_read_tagged: read failed, block=512, location=512
[   12.077091] UDF-fs: error (device md0): udf_read_tagged: read failed, block=256, location=256
[   12.179999] UDF-fs: error (device md0): udf_read_tagged: read failed, block=512, location=512
[   12.282824] UDF-fs: warning (device md0): udf_fill_super: No partition found (1)
[   12.375128] VFS: Cannot open root device "md0" or unknown-block(9,0): error -5
[   12.462245] Please append a correct "root=" boot option; here are the available partitions:
[   12.563018] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(9,0)
[   12.662695] Reboot started from CPU 0
[   12.706844] ------------[ cut here ]------------
[   12.762483] WARNING: CPU: 0 PID: 1 at kernel/smp.c:405 smp_call_function_many+0x18c/0x430
[   12.861020] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.10.0-rc7 #3
[   12.936526] Stack : 0000000000000006 a8000000007714a2 0000000000000000 a80000000009ed58
[   13.032980]         ffffffff94001ce0 0000000000000000 0000000000000000 a800000000770000
[   13.129440]         a80000000067bcf7 a800000000610a50 a8000000e0772880 0000000000000000
[   13.225900]         0000000000000001 a800000000769670 a800000000030460 0000000000000000
[   13.322360]         a800000000670000 a800000000102298 a8000000e078fb78 a8000000000494dc
[   13.418820]         ffffffff94001ce0 a8000000000a09a0 00000000000000f3 a800000000610a50
[   13.515279]         0000000000000000 0000000000000001 0000000000000000 0000000000000000
[   13.611740]         0000000000000000 a8000000e078fac0 0000000000000000 a80000000031e6ec
[   13.708199]         0000000000000000 0000000000000000 0000000000000000 00ffffff94001ce0
[   13.804660]         a800000000690000 a80000000002bb88 0000000000000000 a80000000031e6ec
[   13.901120]         ...
[   13.930552] Call Trace:
[   13.959995] [<a80000000002bb88>] show_stack+0x88/0xb8
[   14.020854] [<a80000000031e6ec>] dump_stack+0xac/0xe0
[   14.081687] [<a8000000000498a4>] __warn+0x144/0x168
[   14.140444] [<a8000000000ce86c>] smp_call_function_many+0x18c/0x430
[   14.215957] [<a8000000000ceb48>] smp_call_function+0x38/0x48
[   14.284137] [<a80000000001ec18>] ip27_machine_restart+0x30/0x50
[   14.355462] [<a800000000029ea4>] machine_restart+0x34/0x90
[   14.421552] [<a8000000001020cc>] panic+0x29c/0x324
[   14.479268] [<a8000000006f1c1c>] mount_block_root+0x418/0x444
[   14.548488] [<a8000000006f1f2c>] prepare_namespace+0x21c/0x294
[   14.618764] [<a8000000006f1544>] kernel_init_freeable+0x3b8/0x3e8
[   14.692187] [<a80000000051fdf0>] kernel_init+0x10/0x1c0
[   14.755124] [<a800000000025968>] ret_from_kernel_thread+0x14/0x1c
[   14.828542] ---[ end trace 6891c236c4efea54 ]---

[Index of Archives]     [Linux MIPS Home]     [LKML Archive]     [Linux ARM Kernel]     [Linux ARM]     [Linux]     [Git]     [Yosemite News]     [Linux SCSI]     [Linux Hams]

  Powered by Linux