• Exadata Server Hardware Details


    Exadata Server Hardware Details:
    [oracle@maclean01 ~]$ cat /proc/cpuinfo
    processor       : 0
    vendor_id       : GenuineIntel
    cpu family      : 6
    model           : 26
    model name      : Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz
    stepping        : 5
    cpu MHz         : 2527.101
    cache size      : 8192 KB
    physical id     : 0
    siblings        : 8
    core id         : 0
    cpu cores       : 4
    apicid          : 0
    fpu             : yes
    fpu_exception   : yes
    cpuid level     : 11
    wp              : yes
    flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush
    dts acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc ida nonstop_tsc pni monitor
    ds_cpl vmx est tm2 cx16 xtpr popcnt lahf_lm
    bogomips        : 5057.83
    clflush size    : 64
    cache_alignment : 64
    address sizes   : 40 bits physical, 48 bits virtual
    power management: [8]
    
    [oracle@maclean01 ~]$ cat /proc/meminfo
    MemTotal:     74027752 kB
    MemFree:       3911016 kB
    Buffers:        842416 kB
    Cached:       48064504 kB
    SwapCached:       4984 kB
    Active:       46733632 kB
    Inactive:     10013672 kB
    HighTotal:           0 kB
    HighFree:            0 kB
    LowTotal:     74027752 kB
    LowFree:       3911016 kB
    SwapTotal:    16771852 kB
    SwapFree:     16617108 kB
    Dirty:           25944 kB
    Writeback:           0 kB
    AnonPages:     7832000 kB
    Mapped:       29202808 kB
    Slab:          1834104 kB
    PageTables:   11127904 kB
    NFS_Unstable:        0 kB
    Bounce:              0 kB
    CommitLimit:  53785728 kB
    Committed_AS: 49850764 kB
    VmallocTotal: 34359738367 kB
    VmallocUsed:    290128 kB
    VmallocChunk: 34359447675 kB
    HugePages_Total:     0
    HugePages_Free:      0
    HugePages_Rsvd:      0
    Hugepagesize:     2048 kB
    
    [oracle@maclean01 ~]$ cat /etc/sysctl.conf
    # Kernel sysctl configuration file for Red Hat Linux
    #
    # For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and
    # sysctl.conf(5) for more details.
    
    # Controls IP packet forwarding
    net.ipv4.ip_forward = 0
    
    # Controls source route verification
    net.ipv4.conf.default.rp_filter = 1
    
    # Do not accept source routing
    net.ipv4.conf.default.accept_source_route = 0
    
    # Controls the System Request debugging functionality of the kernel
    kernel.sysrq = 1
    
    # Controls whether core dumps will append the PID to the core filename
    # Useful for debugging multi-threaded applications
    kernel.core_uses_pid = 1
    
    # Controls the use of TCP syncookies
    net.ipv4.tcp_syncookies = 1
    
    # Controls the maximum size of a message, in bytes
    kernel.msgmnb = 65536
    
    # Controls the default maxmimum size of a mesage queue
    kernel.msgmax = 65536
    
    # Controls the maximum shared segment size, in bytes
    kernel.shmmax = 68719476736
    
    # Controls the maximum number of shared memory segments, in pages
    kernel.shmall = 4294967296
    
    ########### BEGIN DO NOT REMOVE Added by Oracle Exadata ###########
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    # bug 8311668 file-max and aio-max-nr
    fs.file-max = 6815744
    # DB install guide says the above
    fs.aio-max-nr = 1048576
    # 8976963
    net.ipv4.neigh.bond0.locktime=0
    net.ipv4.ip_local_port_range = 9000 65500
    # DB install guide says the above
    net.core.rmem_default = 4194304
    net.core.wmem_default = 262144
    net.core.rmem_max = 4194304
    net.core.wmem_max = 2097152
    # The original DB deployment was net.core.wmem_max = 1048586 but IB works
    # best for Exadata at the above net.core settings
    # bug 8268393 remove vm.nr_hugepages = 2048
    # bug 8778821 system reboots after 60 sec on panic
    kernel.panic=60
    ########### END DO NOT REMOVE Added by Oracle Exadata ###########
    
    ########### BEGIN DO NOT REMOVE Added by Oracle Exadata ###########
    kernel.shmmax = 64547735961
    kernel.shmall = 15758724
    ########### END DO NOT REMOVE Added by Oracle Exadata ###########
    
    [oracle@maclean01 ~]$ cat /etc/security/limits.conf
    # /etc/security/limits.conf
    #
    #Each line describes a limit for a user in the form:
    #
    #
    #
    #Where:
    # can be:
    #        - an user name
    #        - a group name, with @group syntax
    #        - the wildcard *, for default entry
    #        - the wildcard %, can be also used with %group syntax,
    #                 for maxlogin limit
    #
    # can have the two values:
    #        - "soft" for enforcing the soft limits
    #        - "hard" for enforcing hard limits
    #
    # can be one of the following:
    #        - core - limits the core file size (KB)
    #        - data - max data size (KB)
    #        - fsize - maximum filesize (KB)
    #        - memlock - max locked-in-memory address space (KB)
    #        - nofile - max number of open files
    #        - rss - max resident set size (KB)
    #        - stack - max stack size (KB)
    #        - cpu - max CPU time (MIN)
    #        - nproc - max number of processes
    #        - as - address space limit
    #        - maxlogins - max number of logins for this user
    #        - maxsyslogins - max number of logins on the system
    #        - priority - the priority to run user process with
    #        - locks - max number of file locks the user can hold
    #        - sigpending - max number of pending signals
    #        - msgqueue - max memory used by POSIX message queues (bytes)
    #        - nice - max nice priority allowed to raise to
    #        - rtprio - max realtime priority
    #
    #
    #
    
    #*               soft    core            0
    #*               hard    rss             10000
    #@student        hard    nproc           20
    #@faculty        soft    nproc           20
    #@faculty        hard    nproc           50
    #ftp             hard    nproc           0
    #@student        -       maxlogins       4
    
    ########### BEGIN DO NOT REMOVE Added by Oracle Deployment Scripts ###########
    
    oracle     soft    nproc       2047
    oracle     hard    nproc       16384
    oracle     soft    nofile      65536
    oracle     hard    nofile      65536
    
    ########### END DO NOT REMOVE Added by Oracle Deployment Scripts ###########
    # End of file
    
    [oracle@maclean01 ~]$ cat /etc/hosts
    ### Only  consider using this file if the customer does not have any DNS
    # If the customer has DNS DO NOT USE THIS FILE
    # you will have to decide on which scan address to uncomment - choose only  1
    
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1   localhost.localdomain   localhost
    
    ### Compute Node [eth0] Interface details
    ### Compute Node Client Access [bond1] Interface details
    ### Compute Node Client Access VIP [bond1] Interface details
    ### Compute Node Client Access SCAN [bond1] Interface details
    ### Cell Node Admin [eth0] Interface details
    ### Compute and Cell ILOM [ilom] Interface details
    ### Switches on Admin [eth0] Network
    ### Compute Node Private Interface details
    ### CELL Node Private Interface details
    ### Compute Node Private Interface details
    ### CELL Node Private Interface details
    ### Switch details
    # The following 5 IP addresses are for reference only. You may
    # not be able to reach these IP addresses from this machine
    
    [oracle@maclean01 ~]$ /sbin/lspci
    00:00.0 Host bridge: Intel Corporation X58 I/O Hub to ESI Port (rev 13)
    00:01.0 PCI bridge: Intel Corporation X58 I/O Hub PCI Express Root Port 1 (rev 13)
    00:02.0 PCI bridge: Intel Corporation X58 I/O Hub PCI Express Root Port 2 (rev 13)
    00:03.0 PCI bridge: Intel Corporation X58 I/O Hub PCI Express Root Port 3 (rev 13)
    00:07.0 PCI bridge: Intel Corporation X58 I/O Hub PCI Express Root Port 7 (rev 13)
    00:09.0 PCI bridge: Intel Corporation X58 I/O Hub PCI Express Root Port 9 (rev 13)
    00:13.0 PIC: Intel Corporation X58 I/O Hub I/OxAPIC Interrupt Controller (rev 13)
    00:14.0 PIC: Intel Corporation X58 I/O Hub System Management Registers (rev 13)
    00:14.1 PIC: Intel Corporation X58 I/O Hub GPIO and Scratch Pad Registers (rev 13)
    00:14.2 PIC: Intel Corporation X58 I/O Hub Control Status and RAS Registers (rev 13)
    00:14.3 PIC: Intel Corporation X58 I/O Hub Throttle Registers (rev 13)
    00:16.0 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.1 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.2 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.3 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.4 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.5 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.6 System peripheral: Intel Corporation X58 Chipset QuickData Technology Device (rev 13)
    00:16.7 System peripheral: Intel Corporation DMA Engine (rev 13)
    00:1a.0 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #4
    00:1a.1 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #5
    00:1a.2 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #6
    00:1a.7 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #2
    00:1d.0 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #1
    00:1d.1 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #2
    00:1d.2 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #3
    00:1d.7 USB Controller: Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #1
    00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 90)
    00:1f.0 ISA bridge: Intel Corporation 82801JIR (ICH10R) LPC Interface Controller
    00:1f.2 SATA controller: Intel Corporation 82801JI (ICH10 Family) SATA AHCI Controller
    00:1f.3 SMBus: Intel Corporation 82801JI (ICH10 Family) SMBus Controller
    01:00.0 Ethernet controller: Intel Corporation 82575EB Gigabit Network Connection (rev 02)
    01:00.1 Ethernet controller: Intel Corporation 82575EB Gigabit Network Connection (rev 02)
    07:00.0 Ethernet controller: Intel Corporation 82575EB Gigabit Network Connection (rev 02)
    07:00.1 Ethernet controller: Intel Corporation 82575EB Gigabit Network Connection (rev 02)
    0d:00.0 RAID bus controller: LSI Logic / Symbios Logic Unknown device 0079 (rev 03)
    19:00.0 InfiniBand: Mellanox Technologies MT26428 [ConnectX IB QDR, PCIe 2.0 5GT/s] (rev a0)
    1f:05.0 VGA compatible controller: ASPEED Technology, Inc. AST2000 (rev 10)
    
    [oracle@maclean01 ~]$ uname -a
    Linux maclean01.shmcc.com 2.6.18-128.1.16.0.1.el5 #1 SMP Tue Jun 30 16:48:30 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux
    
    [oracle@maclean01 ~]$ uname -r
    2.6.18-128.1.16.0.1.el5
    
    [oracle@maclean01 ~]$ /sbin/lsusb
    Bus 003 Device 006: ID 046b:ff10 American Megatrends, Inc.
    Bus 003 Device 001: ID 0000:0000
    Bus 005 Device 001: ID 0000:0000
    Bus 005 Device 002: ID 0624:0307 Avocent Corp.
    Bus 004 Device 001: ID 0000:0000
    Bus 008 Device 001: ID 0000:0000
    Bus 008 Device 002: ID 04b4:6560 Cypress Semiconductor Corp. CY7C65640 USB-2.0 "TetraHub"
    Bus 006 Device 001: ID 0000:0000
    Bus 007 Device 009: ID 046b:ff01 American Megatrends, Inc.
    Bus 007 Device 001: ID 0000:0000
    Bus 001 Device 001: ID 0000:0000
    Bus 002 Device 001: ID 0000:0000  
    
    [oracle@maclean01 ~]$ dmesg
    Linux version 2.6.18-128.1.16.0.1.el5 (mockbuild@ca-build9.us.oracle.com) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-44)) #1 SMP Tue Jun 30 16:48:30 EDT 2009
    Command line: root=LABEL=oracle ro bootarea=oracle rhgb debug console=ttyS0,115200n8 console=tty1 crashkernel=128M@16M numa=off
    BIOS-provided physical RAM map:
     BIOS-e820: 0000000000000000 - 000000000009ac00 (usable)
     BIOS-e820: 000000000009ac00 - 00000000000a0000 (reserved)
     BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
     BIOS-e820: 0000000000100000 - 000000007f780000 (usable)
     BIOS-e820: 000000007f78e000 - 000000007f790000 type 9
     BIOS-e820: 000000007f790000 - 000000007f79e000 (ACPI data)
     BIOS-e820: 000000007f79e000 - 000000007f7d0000 (ACPI NVS)
     BIOS-e820: 000000007f7d0000 - 000000007f7e0000 (reserved)
     BIOS-e820: 000000007f7ec000 - 0000000080000000 (reserved)
     BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
     BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
     BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
     BIOS-e820: 0000000100000000 - 0000001280000000 (usable)
    DMI present.
    ACPI: RSDP (v002 SUN                                   ) @ 0x00000000000fa3e0
    ACPI: XSDT (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f790100
    ACPI: FADT (v004 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f790290
    ACPI: MADT (v002 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f790390
    ACPI: MCFG (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f7904c0
    ACPI: SLIT (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f790500
    ACPI: SPMI (v005 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f790530
    ACPI: OEMB (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79e040
    ACPI: HPET (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79a580
    ACPI: DMAR (v001 SUN    Xxx70    0x00000001 MSFT 0x00000097) @ 0x000000007f79e100
    ACPI: SRAT (v001 SUN    Xxx70    0x00000001 INTC 0x00000001) @ 0x000000007f79a5c0
    ACPI: SSDT (v001  SUN   Xxx70    0x00000012 INTL 0x20051117) @ 0x000000007f7a32b0
    ACPI: EINJ (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79a790
    ACPI: BERT (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79a920
    ACPI: ERST (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79a950
    ACPI: HEST (v001 SUN    Xxx70    0x20090619 MSFT 0x00000097) @ 0x000000007f79ab00
    ACPI: DSDT (v002 SUN    Xxx70    0x00000002 INTL 0x20051117) @ 0x0000000000000000
    NUMA turned off
    Faking a node at 0000000000000000-0000001280000000
    Bootmem setup node 0 0000000000000000-0000001280000000
    On node 0 totalpages: 18605538
      DMA zone: 2602 pages, LIFO batch:0
      DMA32 zone: 503736 pages, LIFO batch:31
      Normal zone: 18099200 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x808
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Processor #0 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Processor #2 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Processor #4 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    Processor #6 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x05] lapic_id[0x10] enabled)
    Processor #16 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x06] lapic_id[0x12] enabled)
    Processor #18 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x07] lapic_id[0x14] enabled)
    Processor #20 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x08] lapic_id[0x16] enabled)
    Processor #22 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x09] lapic_id[0x01] enabled)
    Processor #1 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x03] enabled)
    Processor #3 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x05] enabled)
    Processor #5 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x07] enabled)
    Processor #7 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x11] enabled)
    Processor #17 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x13] enabled)
    Processor #19 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x15] enabled)
    Processor #21 7:10 APIC version 21
    ACPI: LAPIC (acpi_id[0x10] lapic_id[0x17] enabled)
    Processor #23 7:10 APIC version 21
    ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
    ACPI: IOAPIC (id[0x09] address[0xfec8a000] gsi_base[24])
    IOAPIC[1]: apic_id 9, version 32, address 0xfec8a000, GSI 24-47
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Setting APIC routing to clustered
    ACPI: HPET id: 0xffffffff base: 0xfed00000
    Using ACPI (MADT) for SMP configuration information
    Nosave address range: 000000000009a000 - 000000000009b000
    Nosave address range: 000000000009b000 - 00000000000a0000
    Nosave address range: 00000000000a0000 - 00000000000e0000
    Nosave address range: 00000000000e0000 - 0000000000100000
    Nosave address range: 000000007f780000 - 000000007f78e000
    Nosave address range: 000000007f78e000 - 000000007f790000
    Nosave address range: 000000007f790000 - 000000007f79e000
    Nosave address range: 000000007f79e000 - 000000007f7d0000
    Nosave address range: 000000007f7d0000 - 000000007f7e0000
    Nosave address range: 000000007f7e0000 - 000000007f7ec000
    Nosave address range: 000000007f7ec000 - 0000000080000000
    Nosave address range: 0000000080000000 - 00000000e0000000
    Nosave address range: 00000000e0000000 - 00000000f0000000
    Nosave address range: 00000000f0000000 - 00000000fee00000
    Nosave address range: 00000000fee00000 - 00000000fee01000
    Nosave address range: 00000000fee01000 - 00000000ffb00000
    Nosave address range: 00000000ffb00000 - 0000000100000000
    Allocating PCI resources starting at 88000000 (gap: 80000000:60000000)
    SMP: Allowing 16 CPUs, 0 hotplug CPUs
    Built 1 zonelists.  Total pages: 18605538
    Kernel command line: root=LABEL=oracle ro bootarea=oracle rhgb debug console=ttyS0,115200n8
    console=tty1 crashkernel=128M@16M numa=off
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 32768 bytes)
    Console: colour VGA+ 80x25
    Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes)
    Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes)
    Checking aperture...
    PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Placing software IO TLB between 0x150a1000 - 0x190a1000
    Memory: 74025464k/77594624k available (2499k kernel code, 1462896k reserved, 1261k data, 200k init)
    Calibrating delay using timer specific routine.. 5057.83 BogoMIPS (lpj=2528915)
    Security Framework v1.0.0 initialized
    SELinux:  Initializing.
    SELinux:  Starting in permissive mode
    selinux_register_security:  Registering secondary module capability
    Capability LSM initialized as secondary
    Mount-cache hash table entries: 256
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    using mwait in idle threads.
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    CPU0: Thermal monitoring enabled (TM1)
    SMP alternatives: switching to UP code
    ACPI: Core revision 20060707
    Using local APIC timer interrupts.
    result 3398092
    Detected 3.398 MHz APIC timer.
    SMP alternatives: switching to SMP code
    Booting processor 1/16 APIC 0x2
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 5053.96 BogoMIPS (lpj=2526984)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    CPU1: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 2/16 APIC 0x4
    Initializing CPU#2
    Calibrating delay using timer specific routine.. 5053.97 BogoMIPS (lpj=2526986)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 2
    CPU2: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 3/16 APIC 0x6
    Initializing CPU#3
    Calibrating delay using timer specific routine.. 5053.89 BogoMIPS (lpj=2526948)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 3
    CPU3: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 4/16 APIC 0x10
    Initializing CPU#4
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527005)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 0
    CPU4: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 5/16 APIC 0x12
    Initializing CPU#5
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527007)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 1
    CPU5: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 6/16 APIC 0x14
    Initializing CPU#6
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527008)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 2
    CPU6: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 7/16 APIC 0x16
    Initializing CPU#7
    Calibrating delay using timer specific routine.. 5054.02 BogoMIPS (lpj=2527010)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 3
    CPU7: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 8/16 APIC 0x1
    Initializing CPU#8
    Calibrating delay using timer specific routine.. 5054.00 BogoMIPS (lpj=2527002)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    CPU8: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 9/16 APIC 0x3
    Initializing CPU#9
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527005)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    CPU9: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 10/16 APIC 0x5
    Initializing CPU#10
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527006)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 2
    CPU10: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 11/16 APIC 0x7
    Initializing CPU#11
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527006)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 3
    CPU11: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 12/16 APIC 0x11
    Initializing CPU#12
    Calibrating delay using timer specific routine.. 5054.04 BogoMIPS (lpj=2527023)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 0
    CPU12: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 13/16 APIC 0x13
    Initializing CPU#13
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527008)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 1
    CPU13: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 14/16 APIC 0x15
    Initializing CPU#14
    Calibrating delay using timer specific routine.. 5054.01 BogoMIPS (lpj=2527009)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 2
    CPU14: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    SMP alternatives: switching to SMP code
    Booting processor 15/16 APIC 0x17
    Initializing CPU#15
    Calibrating delay using timer specific routine.. 5053.94 BogoMIPS (lpj=2526973)
    CPU: L1 I cache: 32K, L1 D cache: 32K
    CPU: L2 cache: 256K
    CPU: L3 cache: 8192K
    CPU: Physical Processor ID: 1
    CPU: Processor Core ID: 3
    CPU15: Thermal monitoring enabled (TM1)
    Intel(R) Xeon(R) CPU           E5540  @ 2.53GHz stepping 05
    Brought up 16 CPUs
    testing NMI watchdog ... OK.
    time.c: Using 14.318180 MHz WALL HPET GTOD HPET/TSC timer.
    time.c: Detected 2527.101 MHz processor.
    sizeof(vma)=176 bytes
    sizeof(page)=56 bytes
    sizeof(inode)=560 bytes
    sizeof(dentry)=216 bytes
    sizeof(ext3inode)=760 bytes
    sizeof(buffer_head)=96 bytes
    sizeof(skbuff)=240 bytes
    migration_cost=2,22,1217
    checking if image is initramfs... it is
    Freeing initrd memory: 2086k freed
    NET: Registered protocol family 16
    No dock devices found.
    ACPI: bus type pci registered
    PCI: Using MMCONFIG at e0000000
    ACPI: Interpreter enabled
    ACPI: Using IOAPIC for interrupt routing
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    Boot video device is 0000:1f:05.0
    PCI: Transparent bridge - 0000:00:1e.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE1._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE2._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE3._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE7._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.NPE9._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12 14 *15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12 *14 15)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
    ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 6 7 10 11 12 14 15)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    pnp: PnP ACPI: found 15 devices
    usbcore: registered new driver usbfs
    usbcore: registered new driver hub
    PCI: Using ACPI for IRQ routing
    PCI: If a device doesn't work, try "pci=routeirq".  If it helps, post a report
    NetLabel: Initializing
    NetLabel:  domain hash size = 128
    NetLabel:  protocols = UNLABELED CIPSOv4
    NetLabel:  unlabeled traffic allowed by default
    hpet0: at MMIO 0xfed00000 (virtual 0xffffffffff5fe000), IRQs 2, 8, 0, 0
    hpet0: 4 64-bit timers, 14318180 Hz
    PCI-GART: No AMD northbridge found.
    pnp: 00:0a: ioport range 0x400-0x41f has been reserved
    PCI: Bridge: 0000:00:01.0
      IO window: b000-bfff
      MEM window: fac00000-facfffff
      PREFETCH window: disabled.
    PCI: Bridge: 0000:00:02.0
      IO window: c000-cfff
      MEM window: fad00000-fadfffff
      PREFETCH window: disabled.
    PCI: Bridge: 0000:00:03.0
      IO window: d000-dfff
      MEM window: fae00000-faefffff
      PREFETCH window: disabled.
    PCI: Bridge: 0000:00:07.0
      IO window: disabled.
      MEM window: disabled.
      PREFETCH window: disabled.
    PCI: Bridge: 0000:00:09.0
      IO window: disabled.
      MEM window: faf00000-faffffff
      PREFETCH window: f9800000-f9ffffff
    PCI: Ignore bogus resource 6 [0:0] of 0000:1f:05.0
    PCI: Bridge: 0000:00:1e.0
      IO window: e000-efff
      MEM window: fb000000-fbefffff
      PREFETCH window: disabled.
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    PCI: Setting latency timer of device 0000:00:02.0 to 64
    PCI: Setting latency timer of device 0000:00:03.0 to 64
    PCI: Setting latency timer of device 0000:00:07.0 to 64
    PCI: Setting latency timer of device 0000:00:09.0 to 64
    PCI: Setting latency timer of device 0000:00:1e.0 to 64
    NET: Registered protocol family 2
    IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
    TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    TCP: Hash tables configured (established 262144 bind 65536)
    TCP reno registered
    audit: initializing netlink socket (disabled)
    type=2000 audit(1290102048.642:1): initialized
    Total HugeTLB memory allocated, 0
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    SELinux:  Registering netfilter hooks
    Initializing Cryptographic API
    alg: No test for crc32c (crc32c-generic)
    ksign: Installing public key data
    Loading keyring
    - Added public key 105B9C4057F6D166
    - User ID: Oracle USA, Inc. (Kernel Module GPG key)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    PCI: Setting latency timer of device 0000:00:01.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:01.0:pcie00]
    Allocate Port Service[0000:00:01.0:pcie01]
    PCI: Setting latency timer of device 0000:00:02.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:02.0:pcie00]
    Allocate Port Service[0000:00:02.0:pcie01]
    PCI: Setting latency timer of device 0000:00:03.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:03.0:pcie00]
    Allocate Port Service[0000:00:03.0:pcie01]
    PCI: Setting latency timer of device 0000:00:07.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:07.0:pcie00]
    Allocate Port Service[0000:00:07.0:pcie01]
    PCI: Setting latency timer of device 0000:00:09.0 to 64
    assign_interrupt_mode Found MSI capability
    Allocate Port Service[0000:00:09.0:pcie00]
    Allocate Port Service[0000:00:09.0:pcie01]
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P001Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P001Cst] [20060707]
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P002Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P002Cst] [20060707]
    ACPI: CPU1 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P003Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P003Cst] [20060707]
    ACPI: CPU2 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P004Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P004Cst] [20060707]
    ACPI: CPU3 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P005Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P005Cst] [20060707]
    ACPI: CPU4 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P006Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P006Cst] [20060707]
    ACPI: CPU5 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P007Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P007Cst] [20060707]
    ACPI: CPU6 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P008Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P008Cst] [20060707]
    ACPI: CPU7 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P009Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P009Cst] [20060707]
    ACPI: CPU8 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P010Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P010Cst] [20060707]
    ACPI: CPU9 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P011Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P011Cst] [20060707]
    ACPI: CPU10 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P012Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P012Cst] [20060707]
    ACPI: CPU11 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P013Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P013Cst] [20060707]
    ACPI: CPU12 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P014Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P014Cst] [20060707]
    ACPI: CPU13 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P015Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P015Cst] [20060707]
    ACPI: CPU14 (power states: C1[C1] C2[C2] C3[C3])
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [DpgPmm] OemTableId [ P016Ist] [20060707]
    ACPI (exconfig-0456): Dynamic SSDT Load - OemId [ PmRef] OemTableId [ P016Cst] [20060707]
    ACPI: CPU15 (power states: C1[C1] C2[C2] C3[C3])
    Real Time Clock Driver v1.12ac
    hpet_resources: 0xfed00000 is busy
    Non-volatile memory driver v1.2
    Linux agpgart interface v0.101 (c) Dave Jones
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing enabled
    serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    00:0b: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    RAMDISK driver initialized: 16 RAM disks of 16384K size 4096 blocksize
    Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Probing IDE interface ide0...
    Probing IDE interface ide1...
    ide-floppy driver 0.99.newide
    usbcore: registered new driver hiddev
    usbcore: registered new driver usbhid
    drivers/usb/input/hid-core.c: v2.6:USB HID core driver
    PNP: No PS/2 controller found. Probing ports directly.
    Failed to disable AUX port, but continuing anyway... Is this a SiS?
    If AUX port is really absent please use the 'i8042.noaux' option.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    mice: PS/2 mouse device common for all mice
    md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
    md: bitmap version 4.39
    TCP bic registered
    Initializing IPsec netlink socket
    NET: Registered protocol family 1
    NET: Registered protocol family 17
    ACPI: (supports S0 S5)
    Freeing unused kernel memory: 200k freed
    Write protecting the kernel read-only data: 483k
    USB Universal Host Controller Interface driver v3.0
    GSI 16 sharing vector 0xD9 and IRQ 16
    ACPI: PCI Interrupt 0000:00:1a.0[A] -> GSI 16 (level, low) -> IRQ 217
    PCI: Setting latency timer of device 0000:00:1a.0 to 64
    uhci_hcd 0000:00:1a.0: UHCI Host Controller
    uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:1a.0: irq 217, io base 0x0000a800
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    GSI 17 sharing vector 0xE1 and IRQ 17
    ACPI: PCI Interrupt 0000:00:1a.1[B] -> GSI 21 (level, low) -> IRQ 225
    PCI: Setting latency timer of device 0000:00:1a.1 to 64
    uhci_hcd 0000:00:1a.1: UHCI Host Controller
    uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
    uhci_hcd 0000:00:1a.1: irq 225, io base 0x0000a880
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 2 ports detected
    GSI 18 sharing vector 0xE9 and IRQ 18
    ACPI: PCI Interrupt 0000:00:1a.2[D] -> GSI 19 (level, low) -> IRQ 233
    PCI: Setting latency timer of device 0000:00:1a.2 to 64
    uhci_hcd 0000:00:1a.2: UHCI Host Controller
    uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
    uhci_hcd 0000:00:1a.2: irq 233, io base 0x0000ac00
    usb usb3: configuration #1 chosen from 1 choice
    hub 3-0:1.0: USB hub found
    hub 3-0:1.0: 2 ports detected
    GSI 19 sharing vector 0x32 and IRQ 19
    ACPI: PCI Interrupt 0000:00:1d.0[A] -> GSI 23 (level, low) -> IRQ 50
    PCI: Setting latency timer of device 0000:00:1d.0 to 64
    uhci_hcd 0000:00:1d.0: UHCI Host Controller
    uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    uhci_hcd 0000:00:1d.0: irq 50, io base 0x0000a080
    usb usb4: configuration #1 chosen from 1 choice
    hub 4-0:1.0: USB hub found
    hub 4-0:1.0: 2 ports detected
    usb 2-1: new full speed USB device using uhci_hcd and address 2
    ACPI: PCI Interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 233
    PCI: Setting latency timer of device 0000:00:1d.1 to 64
    uhci_hcd 0000:00:1d.1: UHCI Host Controller
    uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
    uhci_hcd 0000:00:1d.1: irq 233, io base 0x0000a400
    usb usb5: configuration #1 chosen from 1 choice
    hub 5-0:1.0: USB hub found
    hub 5-0:1.0: 2 ports detected
    GSI 20 sharing vector 0x3A and IRQ 20
    ACPI: PCI Interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 58
    PCI: Setting latency timer of device 0000:00:1d.2 to 64
    uhci_hcd 0000:00:1d.2: UHCI Host Controller
    uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
    uhci_hcd 0000:00:1d.2: irq 58, io base 0x0000a480
    usb usb6: configuration #1 chosen from 1 choice
    hub 6-0:1.0: USB hub found
    hub 6-0:1.0: 2 ports detected
    usb 2-1: configuration #1 chosen from 1 choice
    hub 2-1:1.0: USB hub found
    hub 2-1:1.0: 2 ports detected
    ohci_hcd: 2005 April 22 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
    ACPI: PCI Interrupt 0000:00:1a.7[C] -> GSI 18 (level, low) -> IRQ 58
    PCI: Setting latency timer of device 0000:00:1a.7 to 64
    ehci_hcd 0000:00:1a.7: EHCI Host Controller
    ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 7
    ehci_hcd 0000:00:1a.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1a.7
    ehci_hcd 0000:00:1a.7: irq 58, io mem 0xfabde000
    ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb7: configuration #1 chosen from 1 choice
    hub 7-0:1.0: USB hub found
    hub 7-0:1.0: 6 ports detected
    usb 2-1: USB disconnect, address 2
    ACPI: PCI Interrupt 0000:00:1d.7[A] -> GSI 23 (level, low) -> IRQ 50
    PCI: Setting latency timer of device 0000:00:1d.7 to 64
    ehci_hcd 0000:00:1d.7: EHCI Host Controller
    ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 8
    ehci_hcd 0000:00:1d.7: debug port 1
    PCI: cache line size of 32 is not supported by device 0000:00:1d.7
    ehci_hcd 0000:00:1d.7: irq 50, io mem 0xfabdc000
    ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004
    usb usb8: configuration #1 chosen from 1 choice
    hub 8-0:1.0: USB hub found
    hub 8-0:1.0: 6 ports detected
    SCSI subsystem initialized
    megasas: 00.00.04.17 Tues. Sep. 15, 11:41:51 PST 2009
    megasas: 0x1000:0x0079:0x1000:0x9263: bus 13:slot 0:func 0
    GSI 21 sharing vector 0x42 and IRQ 21
    ACPI: PCI Interrupt 0000:0d:00.0[A] -> GSI 24 (level, low) -> IRQ 66
    PCI: Setting latency timer of device 0000:0d:00.0 to 64
    
     gen2: instance->base_addr = faefc000<6>megasas: FW now in Ready state
    megasas: max_sectors : 0x280, cmd_per_lun : 0x80
    scsi0 : LSI Logic SAS based MegaRAID driver
      Vendor: HITACHI   Model: H103014SCSUN146G  Rev: A2A8
      Type:   Direct-Access                      ANSI SCSI revision: 06
      Vendor: HITACHI   Model: H103014SCSUN146G  Rev: A2A8
      Type:   Direct-Access                      ANSI SCSI revision: 06
      Vendor: HITACHI   Model: H103014SCSUN146G  Rev: A2A8
      Type:   Direct-Access                      ANSI SCSI revision: 06
      Vendor: HITACHI   Model: H103014SCSUN146G  Rev: A2A8
      Type:   Direct-Access                      ANSI SCSI revision: 06
      Vendor: LSI       Model: MR9261-8i         Rev: 2.0.
      Type:   Direct-Access                      ANSI SCSI revision: 05
    SCSI device sda: 570310656 512-byte hdwr sectors (291999 MB)
    sda: Write Protect is off
    sda: Mode Sense: 1f 00 00 08
    SCSI device sda: drive cache: write back, no read (daft)
    SCSI device sda: 570310656 512-byte hdwr sectors (291999 MB)
    sda: Write Protect is off
    sda: Mode Sense: 1f 00 00 08
    SCSI device sda: drive cache: write back, no read (daft)
     sda: sda1 sda2 sda3
    sd 0:2:0:0: Attached scsi disk sda
    HP CISS Driver (v 3.6.20)
    libata version 3.00 loaded.
    Initializing USB Mass Storage driver...
    usb 7-3: new high speed USB device using ehci_hcd and address 2
    usb 7-3: configuration #1 chosen from 1 choice
    hub 7-3:1.0: USB hub found
    hub 7-3:1.0: 2 ports detected
    usb 8-3: new high speed USB device using ehci_hcd and address 2
    usb 8-3: configuration #1 chosen from 1 choice
    hub 8-3:1.0: USB hub found
    hub 8-3:1.0: 4 ports detected
    usbcore: registered new driver usb-storage
    USB Mass Storage support registered.
    usb 3-1: new low speed USB device using uhci_hcd and address 2
    usb 3-1: configuration #1 chosen from 1 choice
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input0
    input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input1
    input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    usb 5-2: new low speed USB device using uhci_hcd and address 2
    usb 5-2: configuration #1 chosen from 1 choice
    input: Avocent Avocent DSRIQ-USB as /class/input/input2
    input: USB HID v1.10 Keyboard [Avocent Avocent DSRIQ-USB] on usb-0000:00:1d.1-2
    input: Avocent Avocent DSRIQ-USB as /class/input/input3
    input: USB HID v1.10 Mouse [Avocent Avocent DSRIQ-USB] on usb-0000:00:1d.1-2
    EXT3-fs: INFO: recovery required on readonly filesystem.
    EXT3-fs: write access will be enabled during recovery.
    kjournald starting.  Commit interval 5 seconds
    EXT3-fs: recovery complete.
    EXT3-fs: mounted filesystem with ordered data mode.
    SELinux:  Disabled at runtime.
    SELinux:  Unregistering netfilter hooks
    type=1404 audit(1290102078.790:2): selinux=0 auid=4294967295 ses=4294967295
    input: PC Speaker as /class/input/input4
    mlx4_core: Mellanox ConnectX core driver v1.0 (April 4, 2008)
    mlx4_core: Initializing 0000:19:00.0
    GSI 22 sharing vector 0x4A and IRQ 22
    ACPI: PCI Interrupt 0000:19:00.0[A] -> GSI 32 (level, low) -> IRQ 74
    PCI: Setting latency timer of device 0000:19:00.0 to 64
    Intel(R) Gigabit Ethernet Network Driver - version 1.2.45-k2ora
    Copyright (c) 2008 Intel Corporation.
    mlx4_core 0000:19:00.0: Only 10 MSI-X vectors available, need 17. Trying again
    ahci 0000:00:1f.2: version 3.0
    ACPI: PCI Interrupt 0000:00:1f.2[B] -> GSI 19 (level, low) -> IRQ 233
    mlx4_ib: Mellanox ConnectX InfiniBand driver v1.0 (April 4, 2008)
    ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
    ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems
    PCI: Setting latency timer of device 0000:00:1f.2 to 64
    scsi1 : ahci
    scsi2 : ahci
    scsi3 : ahci
    scsi4 : ahci
    scsi5 : ahci
    scsi6 : ahci
    ata1: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8100 irq 162
    ata2: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8180 irq 162
    ata3: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8200 irq 162
    ata4: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8280 irq 162
    ata5: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8300 irq 162
    ata6: SATA max UDMA/133 abar m2048@0xfabd8000 port 0xfabd8380 irq 162
    ata1: SATA link down (SStatus 0 SControl 300)
    ata2: SATA link down (SStatus 0 SControl 300)
    ata3: SATA link down (SStatus 0 SControl 300)
    ata4: SATA link down (SStatus 0 SControl 300)
    ata5: SATA link down (SStatus 0 SControl 300)
    ata6: SATA link down (SStatus 0 SControl 300)
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    GSI 23 sharing vector 0xAA and IRQ 23
    ACPI: PCI Interrupt 0000:00:1f.3[C] -> GSI 18 (level, low) -> IRQ 58
    ACPI: PCI Interrupt 0000:01:00.0[A] -> GSI 28 (level, low) -> IRQ 170
    PCI: Setting latency timer of device 0000:01:00.0 to 64
    igb 0000:01:00.0: Intel(R) Gigabit Ethernet Network Connection
    igb 0000:01:00.0: eth0: (PCIe:2.5Gb/s:unknown) 00:21:28:6b:02:50
    igb 0000:01:00.0: eth0: PBA No: 2030ff-0ff
    igb 0000:01:00.0: Using MSI-X interrupts. 4 rx queue(s), 1 tx queue(s)
    GSI 24 sharing vector 0xE2 and IRQ 24
    ACPI: PCI Interrupt 0000:01:00.1[B] -> GSI 40 (level, low) -> IRQ 226
    PCI: Setting latency timer of device 0000:01:00.1 to 64
    igb 0000:01:00.1: Intel(R) Gigabit Ethernet Network Connection
    igb 0000:01:00.1: eth1: (PCIe:2.5Gb/s:unknown) 00:21:28:6b:02:51
    igb 0000:01:00.1: eth1: PBA No: 2030ff-0ff
    igb 0000:01:00.1: Using MSI-X interrupts. 4 rx queue(s), 1 tx queue(s)
    GSI 25 sharing vector 0x5B and IRQ 25
    ACPI: PCI Interrupt 0000:07:00.0[A] -> GSI 29 (level, low) -> IRQ 91
    PCI: Setting latency timer of device 0000:07:00.0 to 64
    igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
    igb 0000:07:00.0: eth2: (PCIe:2.5Gb/s:unknown) 00:21:28:6b:02:52
    igb 0000:07:00.0: eth2: PBA No: 2030ff-0ff
    igb 0000:07:00.0: Using MSI-X interrupts. 4 rx queue(s), 1 tx queue(s)
    GSI 26 sharing vector 0x93 and IRQ 26
    ACPI: PCI Interrupt 0000:07:00.1[B] -> GSI 41 (level, low) -> IRQ 147
    PCI: Setting latency timer of device 0000:07:00.1 to 64
    sd 0:2:0:0: Attached scsi generic sg0 type 0
    igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
    igb 0000:07:00.1: eth3: (PCIe:2.5Gb/s:unknown) 00:21:28:6b:02:53
    igb 0000:07:00.1: eth3: PBA No: 2030ff-0ff
    igb 0000:07:00.1: Using MSI-X interrupts. 4 rx queue(s), 1 tx queue(s)
    floppy0: no floppy controllers found
    lp: driver loaded but no devices found
    fuse init (API version 7.8)
    fuse distribution version: 2.7.4
    ACPI: Power Button (FF) [PWRF]
    ACPI: Power Button (CM) [PWRB]
    md: Autodetecting RAID arrays.
    md: autorun ...
    md: ... autorun DONE.
    device-mapper: uevent: version 1.0.3
    device-mapper: ioctl: 4.11.5-ioctl (2007-12-12) initialised: dm-devel@redhat.com
    device-mapper: multipath: version 1.0.5 loaded
    EXT3 FS on sda1, internal journal
    kjournald starting.  Commit interval 5 seconds
    EXT3 FS on sda3, internal journal
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 16771852k swap on /dev/sda2.  Priority:-1 extents:1 across:16771852k
    IA-32 Microcode Update Driver: v1.14a
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    IPv6 over IPv4 tunneling driver
    ib0: enabling connected mode will cause multicast packet drops
    ib0: mtu > 2044 will cause multicast packet drops.
    ib0: mtu > 2044 will cause multicast packet drops.
    ib0: enabling connected mode will cause multicast packet drops
    ib0: mtu > 2044 will cause multicast packet drops.
    ib1: enabling connected mode will cause multicast packet drops
    ib1: mtu > 2044 will cause multicast packet drops.
    ib1: mtu > 2044 will cause multicast packet drops.
    ib1: enabling connected mode will cause multicast packet drops
    ib1: mtu > 2044 will cause multicast packet drops.
    NET: Registered protocol family 28
    Registered RDS/iwarp transport
    Registered RDS/infiniband transport
    Loading iSCSI transport class v2.0-724.
    iscsi: registered transport (tcp)
    Ethernet Channel Bonding Driver: v3.2.3 (December 6, 2007)
    bonding: Warning: either miimon or arp_interval and arp_ip_target module parameters must be specified,
    otherwise bonding will not detect link failures! see bonding.txt for details.
    bonding: bond0: setting mode to active-backup (1).
    bonding: bond0: Setting MII monitoring interval to 100.
    bonding: bond0: Setting down delay to 5000.
    bonding: bond0: Setting up delay to 5000.
    ADDRCONF(NETDEV_UP): bond0: link is not ready
    ib0: enabling connected mode will cause multicast packet drops
    ib0: mtu > 2044 will cause multicast packet drops.
    bonding: bond0: Adding slave ib0.
    bonding: bond0: Warning: enslaved VLAN challenged slave ib0. Adding VLANs will be blocked as long as
    ib0 is part of bond bond0
    bonding: bond0: Warning: The first slave device specified does not support setting the MAC address.
    Enabling the fail_over_mac option.<6>bonding: bond0: enslaving ib0 as a backup interface with a down link.
    bonding: bond0: link status up for interface ib0, enabling it in 5000 ms.
    ib1: enabling connected mode will cause multicast packet drops
    ib1: mtu > 2044 will cause multicast packet drops.
    bonding: bond0: Adding slave ib1.
    bonding: bond0: Warning: enslaved VLAN challenged slave ib1. Adding VLANs will be blocked as long
    as ib1 is part of bond bond0
    bonding: bond0: making interface ib0 the new active one 100 ms earlier.
    bonding: bond0: first active interface up!
    bonding: bond0: enslaving ib1 as a backup interface with a down link.
    ADDRCONF(NETDEV_CHANGE): bond0: link becomes ready
    ib0: mtu > 2044 will cause multicast packet drops.
    ib1: mtu > 2044 will cause multicast packet drops.
    bonding: bond0: link status up for interface ib1, enabling it in 5000 ms.
    RDS/IB: connected to 172.168.8.13 version 3.1
    RDS/IB: connected to 172.168.8.11 version 3.1
    bonding: bond1: setting mode to active-backup (1).
    bonding: bond1: Setting MII monitoring interval to 100.
    bonding: bond1: Setting down delay to 5000.
    bonding: bond1: Setting up delay to 5000.
    ADDRCONF(NETDEV_UP): bond1: link is not ready
    bonding: bond1: Adding slave eth1.
    bonding: bond1: enslaving eth1 as a backup interface with a down link.
    igb 0000:01:00.1: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    bonding: bond1: link status up for interface eth1, enabling it in 5000 ms.
    bonding: bond1: Adding slave eth2.
    bonding: bond1: making interface eth1 the new active one 100 ms earlier.
    bonding: bond1: first active interface up!
    bonding: bond1: enslaving eth2 as a backup interface with a down link.
    ADDRCONF(NETDEV_CHANGE): bond1: link becomes ready
    igb 0000:07:00.0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
    bonding: bond1: link status up for interface eth2, enabling it in 5000 ms.
    RDS/IB: connected to 172.168.8.20 version 3.1
    RDS/IB: connected to 172.168.8.14 version 3.1
    RDS/IB: connected to 172.168.8.16 version 3.1
    RDS/IB: connected to 172.168.8.19 version 3.1
    RDS/IB: connected to 172.168.8.15 version 3.1
    RDS/IB: connected to 172.168.8.17 version 3.1
    RDS/IB: connected to 172.168.8.18 version 3.1
    bonding: bond0: link status definitely up for interface ib1.
    ADDRCONF(NETDEV_UP): eth0: link is not ready
    igb 0000:01:00.0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
    ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    bonding: bond1: link status definitely up for interface eth2.
    ipmi message handler version 39.1
    IPMI System Interface driver.
    ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
    ipmi: Found new BMC (man_id: 0x00002a,  prod_id: 0x4701, dev_id: 0x20)
     IPMI kcs interface initialized
    ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
    ipmi_si: duplicate interface
    ipmi device interface
    bond0: no IPv6 routers present
    IPMI Watchdog: driver initialized
    Copyright (C) 2004 MontaVista Software - IPMI Powerdown via sys_reboot.
    IPMI poweroff: ATCA Detect mfg 0x2A prod 0x4701
    IPMI poweroff: Found a chassis style poweroff function
    bond1: no IPv6 routers present
    megasas: fasync_helper was not called first
    eth0: no IPv6 routers present
    oracleoks: module license 'Proprietary' taints kernel.
    [Oracle OKS] mallocing log buffer, size=10485760
    [Oracle OKS] log buffer = 0xffffc2001013e000
    [Oracle OKS] Module load succeeded. Build information: (LOW DEBUG)- (USM_11.2.0.1.0_LINUX.X64_090715.1)
    , Built on Aug  2 2009
    oracleadvm: no version for "KsRwLockReadTry" found: kernel tainted.
    [Oracle ADVM] Module load succeeded. Build information:  (LOW DEBUG) - USM_11.2.0.1.0_LINUX.X64_090715.1
    Built on Aug  2 2009
    [Oracle ACFS] Module load succeeded. Build information:  (LOW DEBUG), (USM_11.2.0.1.0_LINUX.X64_090715.1),
    Built on Aug  2 2009
    RDS/IB: connected to 172.168.8.10 version 3.1
    RDS/IB: connected to 172.168.8.10 version 3.1
    [Oracle OKS] Cluster Membership change - Current  incarn 0x6
    [Oracle OKS] Nodes in cluster:
    [Oracle OKS]   Node 1 (IP 0xaca8080a) Node 2 (IP 0xaca8080b)
    [Oracle OKS] Node count 2
    [Oracle ADVM] The attempt to open/mount volume RECO-ASM_FILE failed.
    [Oracle ADVM] The attempt to open/mount volume RECO-ASM_FILE failed.
    [Oracle ADVM] The attempt to open/mount volume RECO-ASM_FILE failed.
    process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.eth0.base_reachable_time; Use net.ipv6.neigh.eth0.base_reachable_time_ms instead.
    process `cp' is using deprecated sysctl (syscall) net.ipv6.neigh.eth0.base_reachable_time; Use net.ipv6.neigh.eth0.base_reachable_time_ms instead.
    usb 8-3.1: new high speed USB device using ehci_hcd and address 4
    usb 8-3.1: configuration #1 chosen from 1 choice
    scsi7 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 4
    usb-storage: waiting for device to settle before scanning
    usb 8-3.1: USB disconnect, address 4
    usb 8-3.1: new high speed USB device using ehci_hcd and address 5
    usb 8-3.1: configuration #1 chosen from 1 choice
    scsi8 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 5
    usb-storage: waiting for device to settle before scanning
    usb 8-3.1: USB disconnect, address 5
    usb 8-3.1: new high speed USB device using ehci_hcd and address 6
    usb 8-3.1: device not accepting address 6, error -71
    usb 8-3.1: new high speed USB device using ehci_hcd and address 8
    usb 8-3.1: configuration #1 chosen from 1 choice
    scsi9 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 8
    usb-storage: waiting for device to settle before scanning
    usb 8-3.1: USB disconnect, address 8
    usb 8-3.1: new high speed USB device using ehci_hcd and address 9
    usb 8-3.1: configuration #1 chosen from 1 choice
    scsi10 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 9
    usb-storage: waiting for device to settle before scanning
    usb 8-3.1: USB disconnect, address 9
    usb 8-3.1: new high speed USB device using ehci_hcd and address 10
    usb 8-3.1: configuration #1 chosen from 1 choice
    scsi11 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 10
    usb-storage: waiting for device to settle before scanning
      Vendor: TEAC      Model: DV-28S-V          Rev: 1.0B
      Type:   CD-ROM                             ANSI SCSI revision: 00
    scsi 11:0:0:0: Attached scsi generic sg1 type 5
    usb-storage: device scan complete
    sr0: scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 11:0:0:0: Attached scsi CD-ROM sr0
    usb 8-3.1: USB disconnect, address 10
    scsi 11:0:0:0: rejecting I/O to dead device
    sr0: Hmm, seems the drive doesn't support multisession CD's
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    scsi 11:0:0:0: rejecting I/O to dead device
    RDS/IB: connected to 172.168.8.12 version 3.1
    [Oracle OKS] Cluster Membership change - Current  incarn 0x8
    [Oracle OKS] Nodes in cluster:
    [Oracle OKS]   Node 1 (IP 0xaca8080a) Node 2 (IP 0xaca8080b) Node 3 (IP 0xaca8080c) [Oracle OKS]
    
    [Oracle OKS] Node count 3
    usb 7-3: USB disconnect, address 2
    usb 3-1: USB disconnect, address 2
    usb 7-3: new high speed USB device using ehci_hcd and address 4
    usb 7-3: configuration #1 chosen from 1 choice
    hub 7-3:1.0: USB hub found
    hub 7-3:1.0: 2 ports detected
    usb 7-3.1: new high speed USB device using ehci_hcd and address 6
    usb 7-3.1: configuration #1 chosen from 1 choice
    scsi12 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 6
    usb-storage: waiting for device to settle before scanning
    usb 7-3.2: new high speed USB device using ehci_hcd and address 7
    usb 7-3.2: configuration #1 chosen from 1 choice
    scsi13 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 7
    usb-storage: waiting for device to settle before scanning
    usb 3-1: new low speed USB device using uhci_hcd and address 3
    usb 3-1: configuration #1 chosen from 1 choice
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input5
    input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input6
    input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
      Vendor: AMI       Model: Virtual Floppy    Rev: 1.00
      Type:   Direct-Access                      ANSI SCSI revision: 00
      Vendor: AMI       Model: Virtual CDROM     Rev: 1.00
      Type:   CD-ROM                             ANSI SCSI revision: 00
    sr0: scsi-1 drive
    sr 13:0:0:0: Attached scsi CD-ROM sr0
    sr 13:0:0:0: Attached scsi generic sg1 type 5
    usb-storage: device scan complete
    sd 12:0:0:0: Attached scsi removable disk sdb
    sd 12:0:0:0: Attached scsi generic sg2 type 0
    usb-storage: device scan complete
    usb 7-3.1: USB disconnect, address 6
    usb 7-3.2: USB disconnect, address 7
    usb 3-1: USB disconnect, address 3
    usb 3-1: new low speed USB device using uhci_hcd and address 4
    usb 3-1: configuration #1 chosen from 1 choice
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input7
    input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input8
    input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    usb 7-3: USB disconnect, address 4
    usb 3-1: USB disconnect, address 4
    usb 7-3: new high speed USB device using ehci_hcd and address 9
    usb 7-3: configuration #1 chosen from 1 choice
    hub 7-3:1.0: USB hub found
    hub 7-3:1.0: 2 ports detected
    usb 7-3.1: new high speed USB device using ehci_hcd and address 11
    usb 7-3.1: configuration #1 chosen from 1 choice
    scsi14 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 11
    usb-storage: waiting for device to settle before scanning
    usb 7-3.2: new high speed USB device using ehci_hcd and address 12
    usb 7-3.2: configuration #1 chosen from 1 choice
    scsi15 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 12
    usb-storage: waiting for device to settle before scanning
    usb 3-1: new low speed USB device using uhci_hcd and address 5
    usb 3-1: configuration #1 chosen from 1 choice
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input9
    input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input10
    input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
      Vendor: AMI       Model: Virtual Floppy    Rev: 1.00
      Type:   Direct-Access                      ANSI SCSI revision: 00
      Vendor: AMI       Model: Virtual CDROM     Rev: 1.00
      Type:   CD-ROM                             ANSI SCSI revision: 00
    sr0: scsi-1 drive
    sr 15:0:0:0: Attached scsi CD-ROM sr0
    sr 15:0:0:0: Attached scsi generic sg1 type 5
    usb-storage: device scan complete
    sd 14:0:0:0: Attached scsi removable disk sdb
    sd 14:0:0:0: Attached scsi generic sg2 type 0
    usb-storage: device scan complete
    usb 7-3.2: USB disconnect, address 12
    usb 7-3.1: USB disconnect, address 11
    usb 3-1: USB disconnect, address 5
    usb 3-1: new low speed USB device using uhci_hcd and address 6
    usb 3-1: configuration #1 chosen from 1 choice
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input11
    input: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    input: American Megatrends Inc. Virtual Keyboard and Mouse as /class/input/input12
    input: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.2-1
    irq 217: nobody cared (try booting with the "irqpoll" option)
    
    Call Trace:
       [] __report_bad_irq+0x30/0x7d
     [] note_interrupt+0x1e6/0x227
     [] __do_IRQ+0xbd/0x103
     [] __do_softirq+0x89/0x133
     [] do_IRQ+0xe7/0xf5
     [] ret_from_intr+0x0/0xa
       [] :rds:rds_poll+0x0/0xe8
     [] :rds:rds_poll+0x2/0xe8
     [] do_sys_poll+0x1b8/0x360
     [] __pollwait+0x0/0xe2
     [] default_wake_function+0x0/0xe
     [] default_wake_function+0x0/0xe
     [] default_wake_function+0x0/0xe
     [] default_wake_function+0x0/0xe
     [] default_wake_function+0x0/0xe
     [] sock_common_recvmsg+0x2d/0x43
     [] sock_aio_read+0x4f/0x5e
     [] sys_sendmsg+0x217/0x28a
     [] :rds:__rds_rdma_map+0x2f5/0x319
     [] :rds:rds_get_mr+0x34/0x3f
     [] :rds:rds_setsockopt+0x9a/0x124
     [] sys_poll+0x2d/0x34
     [] system_call+0x7e/0x83
    
    handlers:
    [] (usb_hcd_irq+0x0/0x55)
    Disabling IRQ #217
    RDS/IB: send completion on 172.168.8.18 had status 12, disconnecting and reconnecting
    process `sysctl' is using deprecated sysctl (syscall) net.ipv6.neigh.eth0.base_reachable_time;
    Use net.ipv6.neigh.eth0.base_reachable_time_ms instead.
    [Oracle ADVM] The attempt to open/mount volume RECO-ASM_FILE failed.
    
    [oracle@maclean01 ~]$ /sbin/lsmod
    Module                  Size  Used by
    sr_mod                 50789  0
    cdrom                  68713  1 sr_mod
    oracleacfs            877320  1
    oracleadvm            221760  3
    oracleoks             276880  2 oracleacfs,oracleadvm
    ipmi_poweroff          43401  0
    ipmi_watchdog          52641  0
    ipmi_devintf           44753  2
    ipmi_si                77453  3
    ipmi_msghandler        72985  4 ipmi_poweroff,ipmi_watchdog,ipmi_devintf,ipmi_si
    sunrpc                197897  1
    bonding               117856  0
    iscsi_tcp              58305  0
    libiscsi               63553  1 iscsi_tcp
    scsi_transport_iscsi    67153  3 iscsi_tcp,libiscsi
    rds                   402096  2364
    ib_ipoib              112864  0
    ipoib_helper           35472  2 ib_ipoib
    ipv6                  424737  547 ib_ipoib
    xfrm_nalgo             43333  1 ipv6
    crypto_api             42945  1 xfrm_nalgo
    rdma_ucm               47616  0
    ib_ucm                 50056  0
    ib_uverbs              75440  2 rdma_ucm,ib_ucm
    ib_umad                50088  0
    rdma_cm                68372  2 rds,rdma_ucm
    ib_cm                  72744  3 ib_ipoib,ib_ucm,rdma_cm
    iw_cm                  43400  1 rdma_cm
    ib_addr                41736  1 rdma_cm
    ib_sa                  74760  3 ib_ipoib,rdma_cm,ib_cm
    dm_mirror              54089  0
    dm_log                 44993  1 dm_mirror
    dm_multipath           55257  0
    scsi_dh                41665  1 dm_multipath
    dm_mod                100753  3 dm_mirror,dm_log,dm_multipath
    video                  53069  0
    hwmon                  36553  0
    backlight              39873  1 video
    sbs                    49921  0
    i2c_ec                 38593  1 sbs
    button                 40545  0
    battery                43849  0
    asus_acpi              50917  0
    acpi_memhotplug        40133  0
    ac                     38729  0
    fuse                   81200  0
    parport_pc             62313  0
    lp                     47121  0
    parport                73165  2 parport_pc,lp
    sg                     69865  0
    mlx4_ib                99004  0
    ib_mad                 70564  4 ib_umad,ib_cm,ib_sa,mlx4_ib
    ib_core               109184  12 rds,ib_ipoib,rdma_ucm,ib_ucm,ib_uverbs,ib_umad,rdma_cm,ib_cm,iw_cm,
    ib_sa,mlx4_ib,ib_mad
    joydev                 43969  0
    shpchp                 70765  0
    i2c_i801               41813  0
    igb                   110421  0
    i2c_core               56129  2 i2c_ec,i2c_i801
    ahci                   68937  0
    mlx4_core             136676  1 mlx4_ib
    pcspkr                 36289  0
    usb_storage           116513  0
    ata_piix               57029  0
    libata                209105  2 ahci,ata_piix
    cciss                 106760  0
    megaraid_sas           73796  6
    sd_mod                 56513  4
    scsi_mod              197081  11 sr_mod,iscsi_tcp,libiscsi,scsi_transport_iscsi,scsi_dh,sg,usb_storage,
    libata,cciss,megaraid_sas,sd_mod
    ext3                  168529  2
    jbd                    94513  1 ext3
    ehci_hcd               65613  0
    ohci_hcd               55925  0
    uhci_hcd               57433  0 
    
    [oracle@maclean01 proc]$ cat slabinfo
    slabinfo - version: 2.1
    # name                 : tunables    : slabdata
    acfs_metadata_buffer_cache      0      0    512    8    1 : tunables   54   27    8 : slabdata      0      0      0
    acfs_ofsbuf_cache      0      0    136   28    1 : tunables  120   60    8 : slabdata      0      0      0
    acfs_inode_cache       0      0   1144    3    1 : tunables   24   12    8 : slabdata      0      0      0
    acfs_reqd_fcb_cache      0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    acfs_ccb_cache         0      0    112   34    1 : tunables  120   60    8 : slabdata      0      0      0
    acfs_fcb_cache         0      0    472    8    1 : tunables   54   27    8 : slabdata      0      0      0
    fio                    0      0     24  144    1 : tunables  120   60    8 : slabdata      0      0      0
    AsmPhysIo              0      0    112   34    1 : tunables  120   60    8 : slabdata      0      0      0
    AsmVolIo               0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
    odlm_rsb_cache         0      0    184   21    1 : tunables  120   60    8 : slabdata      0      0      0
    odlm_lkb_cache         0      0    312   12    1 : tunables   54   27    8 : slabdata      0      0      0
    rpc_buffers            8      8   2048    2    1 : tunables   24   12    8 : slabdata      4      4      0
    rpc_tasks              8     10    384   10    1 : tunables   54   27    8 : slabdata      1      1      0
    rpc_inode_cache        6     10    768    5    1 : tunables   54   27    8 : slabdata      2      2      0
    ip_fib_alias          21     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    ip_fib_hash           21     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    rds_ib_frag        34720  93564     40   92    1 : tunables  120   60    8 : slabdata   1017   1017    120
    rds_ib_incoming    34760  91488    120   32    1 : tunables  120   60    8 : slabdata   2859   2859    120
    rds_iw_frag            0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
    rds_iw_incoming        0      0    120   32    1 : tunables  120   60    8 : slabdata      0      0      0
    RDS                 1233   1359    832    9    2 : tunables   54   27    8 : slabdata    151    151      0
    rds_connection        12     18    664    6    1 : tunables   54   27    8 : slabdata      3      3      0
    fib6_nodes             9     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    ip6_dst_cache         10     36    320   12    1 : tunables   54   27    8 : slabdata      3      3      0
    ndisc_cache            1     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    RAWv6                 19     20    960    4    1 : tunables   54   27    8 : slabdata      5      5      0
    UDPv6                226    244    896    4    1 : tunables   54   27    8 : slabdata     61     61      0
    tw_sock_TCPv6         61    140    192   20    1 : tunables  120   60    8 : slabdata      7      7      0
    request_sock_TCPv6      0      0    192   20    1 : tunables  120   60    8 : slabdata      0      0      0
    TCPv6                 28     52   1728    4    2 : tunables   24   12    8 : slabdata     11     13      0
    dm_mpath               0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
    dm_uevent              0      0   2608    3    2 : tunables   24   12    8 : slabdata      0      0      0
    dm_tio                 0      0     24  144    1 : tunables  120   60    8 : slabdata      0      0      0
    dm_io                  0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
    fuse_request           0      0    592   13    2 : tunables   54   27    8 : slabdata      0      0      0
    fuse_inode             0      0    640    6    1 : tunables   54   27    8 : slabdata      0      0      0
    ib_mad              2048   2168    448    8    1 : tunables   54   27    8 : slabdata    271    271      0
    jbd_4k                39     40   4096    1    1 : tunables   24   12    8 : slabdata     39     40      0
    scsi_cmd_cache        44     70    384   10    1 : tunables   54   27    8 : slabdata      6      7      0
    sgpool-128            32     32   4096    1    1 : tunables   24   12    8 : slabdata     32     32      0
    sgpool-64             34     34   2048    2    1 : tunables   24   12    8 : slabdata     17     17      0
    sgpool-32             33     36   1024    4    1 : tunables   54   27    8 : slabdata      9      9      0
    sgpool-16             34     40    512    8    1 : tunables   54   27    8 : slabdata      5      5      0
    sgpool-8             133    150    256   15    1 : tunables  120   60    8 : slabdata      9     10      0
    scsi_io_context        0      0    112   34    1 : tunables  120   60    8 : slabdata      0      0      0
    ext3_inode_cache  885935 886035    760    5    1 : tunables   54   27    8 : slabdata 177207 177207      0
    ext3_xattr             0      0     88   44    1 : tunables  120   60    8 : slabdata      0      0      0
    journal_handle       114    288     24  144    1 : tunables  120   60    8 : slabdata      2      2      0
    journal_head         568    840     96   40    1 : tunables  120   60    8 : slabdata     21     21      0
    revoke_table           4    202     16  202    1 : tunables  120   60    8 : slabdata      1      1      0
    revoke_record          0      0     32  112    1 : tunables  120   60    8 : slabdata      0      0      0
    uhci_urb_priv          4     67     56   67    1 : tunables  120   60    8 : slabdata      1      1      0
    UNIX                 686    748    704   11    2 : tunables   54   27    8 : slabdata     67     68      0
    flow_cache             0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    msi_cache             40     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    cfq_ioc_pool         203    360    160   24    1 : tunables  120   60    8 : slabdata     15     15      0
    cfq_pool             162    336    160   24    1 : tunables  120   60    8 : slabdata     14     14      0
    crq_pool              93    144     80   48    1 : tunables  120   60    8 : slabdata      3      3      0
    deadline_drq           0      0     80   48    1 : tunables  120   60    8 : slabdata      0      0      0
    as_arq                 0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
    mqueue_inode_cache      1      4    896    4    1 : tunables   54   27    8 : slabdata      1      1      0
    isofs_inode_cache      0      0    608    6    1 : tunables   54   27    8 : slabdata      0      0      0
    hugetlbfs_inode_cache      1      7    576    7    1 : tunables   54   27    8 : slabdata      1      1      0
    ext2_inode_cache       0      0    720    5    1 : tunables   54   27    8 : slabdata      0      0      0
    ext2_xattr             0      0     88   44    1 : tunables  120   60    8 : slabdata      0      0      0
    dnotify_cache          2     92     40   92    1 : tunables  120   60    8 : slabdata      1      1      0
    dquot                  0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
    eventpoll_pwq          1     53     72   53    1 : tunables  120   60    8 : slabdata      1      1      0
    eventpoll_epi          1     20    192   20    1 : tunables  120   60    8 : slabdata      1      1      0
    inotify_event_cache      0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
    inotify_watch_cache      1     53     72   53    1 : tunables  120   60    8 : slabdata      1      1      0
    kioctx               347    480    320   12    1 : tunables   54   27    8 : slabdata     40     40      0
    kiocb                  0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
    fasync_cache           0      0     24  144    1 : tunables  120   60    8 : slabdata      0      0      0
    shmem_inode_cache    924    940    768    5    1 : tunables   54   27    8 : slabdata    188    188      0
    posix_timers_cache      0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    uid_cache              7     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    ip_mrt_cache           0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    tcp_bind_bucket      115    448     32  112    1 : tunables  120   60    8 : slabdata      4      4      0
    inet_peer_cache        3     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    secpath_cache          0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    xfrm_dst_cache         0      0    384   10    1 : tunables   54   27    8 : slabdata      0      0      0
    ip_dst_cache         250    590    384   10    1 : tunables   54   27    8 : slabdata     59     59      0
    arp_cache             32     90    256   15    1 : tunables  120   60    8 : slabdata      6      6      0
    RAW                   17     20    768    5    1 : tunables   54   27    8 : slabdata      4      4      0
    UDP                  705    735    768    5    1 : tunables   54   27    8 : slabdata    147    147      0
    tw_sock_TCP            3     20    192   20    1 : tunables  120   60    8 : slabdata      1      1      0
    request_sock_TCP      30     90    128   30    1 : tunables  120   60    8 : slabdata      3      3      0
    TCP                  315    365   1536    5    2 : tunables   24   12    8 : slabdata     73     73      0
    blkdev_ioc           203    402     56   67    1 : tunables  120   60    8 : slabdata      6      6      0
    blkdev_queue          20     20   1576    5    2 : tunables   24   12    8 : slabdata      4      4      0
    blkdev_requests       63     84    272   14    1 : tunables   54   27    8 : slabdata      6      6      0
    biovec-256             7      7   4096    1    1 : tunables   24   12    8 : slabdata      7      7      0
    biovec-128             7      8   2048    2    1 : tunables   24   12    8 : slabdata      4      4      0
    biovec-64              7      8   1024    4    1 : tunables   54   27    8 : slabdata      2      2      0
    biovec-16              7     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    biovec-4               7     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    biovec-1             127    404     16  202    1 : tunables  120   60    8 : slabdata      2      2      0
    bio                  374    480    128   30    1 : tunables  120   60    8 : slabdata     14     16      0
    utrace_engine_cache      0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    utrace_cache           0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    sock_inode_cache    3142   3294    640    6    1 : tunables   54   27    8 : slabdata    549    549      0
    skbuff_fclone_cache    329    413    512    7    1 : tunables   54   27    8 : slabdata     59     59     54
    skbuff_head_cache  13718  14670    256   15    1 : tunables  120   60    8 : slabdata    978    978    120
    file_lock_cache       33     88    176   22    1 : tunables  120   60    8 : slabdata      4      4      0
    Acpi-Operand        2525   2596     64   59    1 : tunables  120   60    8 : slabdata     44     44      0
    Acpi-ParseExt          0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-Parse             0      0     40   92    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-State             0      0     80   48    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-Namespace      1082   1232     32  112    1 : tunables  120   60    8 : slabdata     11     11      0
    delayacct_cache     1155   1888     64   59    1 : tunables  120   60    8 : slabdata     32     32      0
    taskstats_cache       35    265     72   53    1 : tunables  120   60    8 : slabdata      5      5      0
    proc_inode_cache   17438  17796    592    6    1 : tunables   54   27    8 : slabdata   2966   2966      0
    sigqueue             132    432    160   24    1 : tunables  120   60    8 : slabdata     18     18      0
    radix_tree_node   259865 260141    536    7    1 : tunables   54   27    8 : slabdata  37163  37163      0
    bdev_cache            28     35    768    5    1 : tunables   54   27    8 : slabdata      7      7      0
    sysfs_dir_cache    10415  10648     88   44    1 : tunables  120   60    8 : slabdata    242    242      0
    mnt_cache             29     60    256   15    1 : tunables  120   60    8 : slabdata      4      4      0
    inode_cache         2386   2758    560    7    1 : tunables   54   27    8 : slabdata    394    394      0
    dentry_cache      1081196 1081638    216   18    1 : tunables  120   60    8 : slabdata  60091  60091      0
    filp               81069  86250    256   15    1 : tunables  120   60    8 : slabdata   5750   5750    480
    names_cache           93     94   4096    1    1 : tunables   24   12    8 : slabdata     93     94      0
    avc_node              14     53     72   53    1 : tunables  120   60    8 : slabdata      1      1      0
    selinux_inode_security   1710   2064     80   48    1 : tunables  120   60    8 : slabdata     43     43      0
    key_jar               28     40    192   20    1 : tunables  120   60    8 : slabdata      2      2      0
    idr_layer_cache      128    133    528    7    1 : tunables   54   27    8 : slabdata     19     19      0
    buffer_head       4216731 5748080     96   40    1 : tunables  120   60    8 : slabdata 143702 143702      0
    mm_struct            477    556    896    4    1 : tunables   54   27    8 : slabdata    139    139      0
    vm_area_struct    119228 127336    176   22    1 : tunables  120   60    8 : slabdata   5788   5788    144
    fs_cache             479   1180     64   59    1 : tunables  120   60    8 : slabdata     20     20      0
    files_cache          446    605    768    5    1 : tunables   54   27    8 : slabdata    120    121      0
    signal_cache         681    810    768    5    1 : tunables   54   27    8 : slabdata    162    162      0
    sighand_cache        675    726   2112    3    2 : tunables   24   12    8 : slabdata    242    242      0
    task_struct         1161   1212   1888    2    1 : tunables   24   12    8 : slabdata    606    606      0
    anon_vma           30786  37152     24  144    1 : tunables  120   60    8 : slabdata    258    258      0
    pid                 1558   2301     64   59    1 : tunables  120   60    8 : slabdata     39     39      0
    shared_policy_node      0      0     48   77    1 : tunables  120   60    8 : slabdata      0      0      0
    numa_policy          226    576     24  144    1 : tunables  120   60    8 : slabdata      4      4      0
    size-131072(DMA)       0      0 131072    1   32 : tunables    8    4    0 : slabdata      0      0      0
    size-131072            8     22 131072    1   32 : tunables    8    4    0 : slabdata      8     22      0
    size-65536(DMA)        0      0  65536    1   16 : tunables    8    4    0 : slabdata      0      0      0
    size-65536             3      3  65536    1   16 : tunables    8    4    0 : slabdata      3      3      0
    size-32768(DMA)        0      0  32768    1    8 : tunables    8    4    0 : slabdata      0      0      0
    size-32768             5      5  32768    1    8 : tunables    8    4    0 : slabdata      5      5      0
    size-16384(DMA)        0      0  16384    1    4 : tunables    8    4    0 : slabdata      0      0      0
    size-16384            51     51  16384    1    4 : tunables    8    4    0 : slabdata     51     51      0
    size-8192(DMA)         0      0   8192    1    2 : tunables    8    4    0 : slabdata      0      0      0
    size-8192            565    565   8192    1    2 : tunables    8    4    0 : slabdata    565    565      0
    size-4096(DMA)         0      0   4096    1    1 : tunables   24   12    8 : slabdata      0      0      0
    size-4096            917    947   4096    1    1 : tunables   24   12    8 : slabdata    917    947      0
    size-2048(DMA)         0      0   2048    2    1 : tunables   24   12    8 : slabdata      0      0      0
    size-2048           3836   3892   2048    2    1 : tunables   24   12    8 : slabdata   1945   1946     24
    size-1024(DMA)         0      0   1024    4    1 : tunables   54   27    8 : slabdata      0      0      0
    size-1024          10741  11108   1024    4    1 : tunables   54   27    8 : slabdata   2777   2777    108
    size-512(DMA)          0      0    512    8    1 : tunables   54   27    8 : slabdata      0      0      0
    size-512            1570   1672    512    8    1 : tunables   54   27    8 : slabdata    208    209     54
    size-256(DMA)          0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
    size-256            3758   3960    256   15    1 : tunables  120   60    8 : slabdata    264    264    120
    size-128(DMA)          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    size-64(DMA)           0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    size-64           419980 420493     64   59    1 : tunables  120   60    8 : slabdata   7127   7127    148
    size-32(DMA)           0      0     32  112    1 : tunables  120   60    8 : slabdata      0      0      0
    size-128            5415   6240    128   30    1 : tunables  120   60    8 : slabdata    208    208     60
    size-32             5085   5488     32  112    1 : tunables  120   60    8 : slabdata     49     49      0
    kmem_cache           164    164   2688    1    1 : tunables   24   12    8 : slabdata    164    164      0
    
    [oracle@maclean01 ~]$ /sbin/ifconfig -a
    bond0     Link encap:InfiniBand  HWaddr 80:00:00:48:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
              inet addr:172.168.8.10  Bcast:172.168.8.255  Mask:255.255.255.0
              inet6 addr: fe80::221:2800:13e:8413/64 Scope:Link
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:65520  Metric:1
              RX packets:184405538 errors:0 dropped:0 overruns:0 frame:0
              TX packets:176124832 errors:0 dropped:35 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:30945297410 (28.8 GiB)  TX bytes:27635080173 (25.7 GiB)
    
    bond1     Link encap:Ethernet  HWaddr 00:21:28:6B:02:51
              inet addr:172.16.9.20  Bcast:172.16.9.255  Mask:255.255.255.0
              inet6 addr: fe80::221:28ff:fe6b:251/64 Scope:Link
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
              RX packets:59600090474 errors:0 dropped:0 overruns:0 frame:0
              TX packets:50440920829 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:9377243799311 (8.5 TiB)  TX bytes:12093687517171 (10.9 TiB)
    
    bond1:1   Link encap:Ethernet  HWaddr 00:21:28:6B:02:51
              inet addr:172.16.9.24  Bcast:172.16.9.255  Mask:255.255.255.0
              UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
    
    bond2     Link encap:Ethernet  HWaddr 00:00:00:00:00:00
              BROADCAST MASTER MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
    
    eth0      Link encap:Ethernet  HWaddr 00:21:28:6B:02:50
              inet addr:172.16.8.220  Bcast:172.16.8.255  Mask:255.255.255.128
              inet6 addr: fe80::221:28ff:fe6b:250/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:899946283 errors:0 dropped:0 overruns:0 frame:0
              TX packets:892061685 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:80589528069 (75.0 GiB)  TX bytes:796212093678 (741.5 GiB)
              Memory:fac60000-fac80000 
    
    eth1      Link encap:Ethernet  HWaddr 00:21:28:6B:02:51
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
              RX packets:59592011485 errors:0 dropped:0 overruns:0 frame:0
              TX packets:50440920830 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:9376635582221 (8.5 TiB)  TX bytes:12093687519354 (10.9 TiB)
              Memory:face0000-fad00000 
    
    eth2      Link encap:Ethernet  HWaddr 00:21:28:6B:02:51
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
              RX packets:8078995 errors:0 dropped:0 overruns:0 frame:0
              TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:608217729 (580.0 MiB)  TX bytes:378 (378.0 b)
              Memory:fad60000-fad80000 
    
    eth3      Link encap:Ethernet  HWaddr 00:21:28:6B:02:53
              BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
              Memory:fade0000-fae00000 
    
    ib0       Link encap:InfiniBand  HWaddr 80:00:00:48:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:65520  Metric:1
              RX packets:178541576 errors:0 dropped:0 overruns:0 frame:0
              TX packets:176124832 errors:0 dropped:35 overruns:0 carrier:0
              collisions:0 txqueuelen:256
              RX bytes:30616915538 (28.5 GiB)  TX bytes:27635080173 (25.7 GiB)
    
    ib1       Link encap:InfiniBand  HWaddr 80:00:00:49:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
              UP BROADCAST RUNNING SLAVE MULTICAST  MTU:65520  Metric:1
              RX packets:5863962 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:256
              RX bytes:328381872 (313.1 MiB)  TX bytes:0 (0.0 b)
    
    lo        Link encap:Local Loopback
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:4072387189 errors:0 dropped:0 overruns:0 frame:0
              TX packets:4072387189 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:631992143010 (588.5 GiB)  TX bytes:631992143010 (588.5 GiB)
    
    sit0      Link encap:IPv6-in-IPv4
              NOARP  MTU:1480  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
    
    [oracle@maclean01 ~]$ ulimit -a
    core file size          (blocks, -c) 0
    data seg size           (kbytes, -d) unlimited
    scheduling priority             (-e) 0
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 606208
    max locked memory       (kbytes, -l) 32
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 1024
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    real-time priority              (-r) 0
    stack size              (kbytes, -s) 10240
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 606208
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    
  • 相关阅读:
    Android 调用浏览器和嵌入网页
    Android Fragment间对象传递
    Android Volley获取json格式的数据
    git无法clone远程代码库及git代理设置
    Android Studio在线安装Android SDK注意事项
    【转】如何修改Chrome缓存目录的地址
    【转】MySQL Temporary Table相关问题的探究
    Android读写assets、raw、sdard和工程文件的方法
    Android简易数据存储之SharedPreferences
    (转) Deep Learning in a Nutshell: Core Concepts
  • 原文地址:https://www.cnblogs.com/macleanoracle/p/2967448.html
Copyright © 2020-2023  润新知