This post is more than 5 years old
12 Posts
0
9123
April 19th, 2016 22:00
HowTo automatically mount sdc device after reboot ?
I'm running ScaleIO 1.32.3
I've just successfully created and map a ScaleIO volume on an Linux SDC.
Now when I reboot the Linux server where the SDC is installed, the scaleio volume isn't automatically mounted; I've set it in the /etc/fstab, but the /dev/scinia1 isn't available ... I must run "drv_conf" by and after the reboot and then it works again ...
Did I miss something with a startup script ?
Thanks
Daniel
No Events found!
dhz1
12 Posts
1
April 23rd, 2016 06:00
I've just upgraded my POC from 1.32-3 to ScaleIO 2.0
Now the device /dev/scinia is available after the boot (see extract of dmesg -r) :
<5>[ 21.944433] scini: module verification failed: signature and/or required key missing - tainting kernel
<6>[ 21.945060] scini: applying kernel_stack fix up
<3>[ 21.952138] ScaleIO R2_0 drvMain_Init:61 :Driver starting load process. HZ 1000...
<3>[ 21.952144] ScaleIO R2_0 mosCpu_Init:69 :eax=0000000b, ebx=756e6547, ecx=6c65746e, edx=49656e69
<3>[ 21.952210] ScaleIO R2_0 mosT10Dif_Init:705 :(T10DIF) T10DIF layer using CPU (PCLMUL) acceleration !!!
<3>[ 21.952706] ScaleIO R2_0 drvMain_Init:63 :Load process done. Status SUCCESS
<3>[ 22.491297] ScaleIO R2_0 ioctl_HandleSetIniGuid:552 :Set GUID (42355F89-E133-44CA-A3BC-3B9DBA680ED3) finished . status 65 (SUCCESS)
<3>[ 22.493890] ScaleIO R2_0 ioctl_HandleAddMdm:377 :Create finish for MDM. First IP 10.0.5.110.Number of IP addresses 2. Status 65 (SUCCESS)
<3>[ 22.555119] ScaleIO R2_0 netChan_PrintConnectNotice:5148 :[4294689683] Connected to MDM with ID 406f4a8b01cfa97a
<3>[ 22.555959] ScaleIO R2_0 netChan_PrintConnectNotice:5148 :[4294689684] Connected to SDS with ID 54ce426f00000004
<3>[ 22.556060] ScaleIO R2_0 netChan_PrintConnectNotice:5148 :[4294689684] Connected to SDS with ID 54ce427000000005
<3>[ 22.556314] ScaleIO R2_0 netChan_PrintConnectNotice:5148 :[4294689684] Connected to SDS with ID 54ce426e00000003
<3>[ 22.559487] ScaleIO R2_0 ioctl_HandleBootWait:314 :Doing boot wait for 12000 milliseconds
<3>[ 22.559489] ScaleIO R2_0 ioctl_HandleBootWait:316 :Boot wait finished
<3>[ 24.559573] ScaleIO R2_0 blkDev_Create:1059 :Created device scinia (252,0). Capacity 2097152000 LB
<6>[ 24.561111] scinia: scinia1
I've still a problem if I try to automatically mount the device at boot with the entry in te /etc/fstab :
But now whe I try to reboot the system, it falls in the single user mode, and I have to comment this fstab line to be able to reboot the server ...
I had to had the _netdev option in the fstab line and now it works :
Now the problem is SOLVED , thanks !
tomer__engineer
155 Posts
0
April 21st, 2016 03:00
Can you please supply your fstab input?
BTW, it's recommended to use the UUID and not /dev/scinia1
If using the UUID doesn't work (might be an issue to investigate) and we will supply a different workaround.
dhz1
12 Posts
0
April 21st, 2016 05:00
My fstab :
[root@labsto1 ~]# more /etc/fstab
#
# /etc/fstab
# Created by anaconda on Wed Jan 6 09:07:21 2016
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/centos-root / xfs defaults 0 0
UUID=a37b5e8f-d2cc-4398-ba1d-6e4481cf05ed /boot xfs defaults 0 0
/dev/mapper/centos-home /home xfs defaults 0 0
/dev/mapper/centos-swap swap swap defaults 0 0
#
# Scaleio - SDC
#
/dev/scinia1 /vol_labsto1_1 xfs defaults 0 0
#
There is no by-uuid entry for the scaleio device :
[root@labsto1 by-uuid]# ls -la
total 0
drwxr-xr-x. 2 root root 120 Apr 21 11:14 .
drwxr-xr-x. 5 root root 100 Apr 21 11:14 ..
lrwxrwxrwx. 1 root root 10 Apr 21 11:14 3220143e-8127-4710-8586-d057abab0c8c -> ../../dm-2
lrwxrwxrwx. 1 root root 10 Apr 21 11:14 8bba9282-03f4-4884-a6dd-e50e1ba041a0 -> ../../dm-0
lrwxrwxrwx. 1 root root 10 Apr 21 11:14 a37b5e8f-d2cc-4398-ba1d-6e4481cf05ed -> ../../sda1
lrwxrwxrwx. 1 root root 10 Apr 21 11:14 d1e6f963-6f8a-4f9f-a8fd-aa735bd434ec -> ../../dm-1
Now, if I have a look on the output of the fdisk command, I can't see the /dev/scinia device :
[root@labsto1 by-uuid]# fdisk -l
Disk /dev/sda: 146.2 GB, 146163105792 bytes, 285474816 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0004fffb
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 285474815 142224384 8e Linux LVM
Disk /dev/mapper/centos-root: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-swap: 8455 MB, 8455716864 bytes, 16515072 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-home: 83.4 GB, 83424706560 bytes, 162938880 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
If I run the drv_cfg command to add the mdm, the device becomes available :
[root@labsto1 by-uuid]# /opt/emc/scaleio/sdc/bin/drv_cfg --add_mdm --ip 10.0.5.110,10.0.5.111
Calling kernel module to connect to MDM (10.0.5.110,10.0.5.111)
[root@labsto1 by-uuid]# fdisk -l
Disk /dev/sda: 146.2 GB, 146163105792 bytes, 285474816 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0004fffb
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 285474815 142224384 8e Linux LVM
Disk /dev/mapper/centos-root: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-swap: 8455 MB, 8455716864 bytes, 16515072 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-home: 83.4 GB, 83424706560 bytes, 162938880 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/scinia: 1073.7 GB, 1073741824000 bytes, 2097152000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0002cf52
Device Boot Start End Blocks Id System
/dev/scinia1 2048 2097151999 1048574976 83 Linux
And now I cand mount it by hand :
[root@labsto1 by-uuid]# mount /dev/scinia1 /vol_labsto1_1
[root@labsto1 by-uuid]# df -kh
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/centos-root 50G 4.5G 46G 9% /
devtmpfs 7.8G 0 7.8G 0% /dev
tmpfs 7.8G 100K 7.8G 1% /dev/shm
tmpfs 7.8G 9.2M 7.8G 1% /run
tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup
/dev/sda1 497M 374M 124M 76% /boot
/dev/mapper/centos-home 78G 38M 78G 1% /home
tmpfs 1.6G 16K 1.6G 1% /run/user/42
tmpfs 1.6G 0 1.6G 0% /run/user/0
/dev/scinia1 1000G 33M 1000G 1% /vol_labsto1_1
But on next reboot, I've to repeat the operation by hand ...
tomer__engineer
155 Posts
0
April 21st, 2016 05:00
Which exact OS are you running on?
Another thing I noticed is that you do not use the --file flag in the drv_cfg command. This flag is mandatory if you wish to save this to be persistent - so it should look like this:
/opt/emc/scaleio/sdc/bin/drv_cfg --add_mdm --ip 10.0.5.110,10.0.5.111 --file /bin/emc/scaleio/drv_cfg.txt
Try to reboot again now.
dhz1
12 Posts
0
April 21st, 2016 06:00
Im running CentOS 7 :
[root@labsto1 ~]# uname -a
Linux labsto1.unil.ch 3.10.0-327.13.1.el7.x86_64 #1 SMP Thu Mar 31 16:04:38 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
I've modified the drv_cfg.txt file as you proposed :
[root@labsto1 ~]# /opt/emc/scaleio/sdc/bin/drv_cfg --mod_mdm_ip --ip 10.0.5.110 --new_mdm_ip 10.0.5.110,10.0.5.111 --file /bin/emc/scaleio/drv_cfg.txt
Calling kernel module to modify MDM IP from (10.0.5.110) to (10.0.5.110,10.0.5.111)
Successfully notified kernel module on new IP
Updating file /bin/emc/scaleio/drv_cfg.txt: MDM (10.0.5.110) to (10.0.5.110,10.0.5.111)
[root@labsto1 ~]# more /bin/emc/scaleio/drv_cfg.txt
#Configuration file for the kernel module.
# One line stating the client GUID.
#ini_guid d9b8a46d-4abd-4ec9-abb2-7bd74f6b0ebe
# Additional line for MDM (Meta-data servers)
#mdm 10.20.30.40
#ini_guid b5bc2a6f-0b7f-4010-a0a4-cf411152361e
mdm 10.0.5.110,10.0.5.111
Then rebooted the server. BUT the device is still unavailable after reboot :
[root@labsto1 ~]# fdisk -l
Disk /dev/sda: 146.2 GB, 146163105792 bytes, 285474816 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0004fffb
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 285474815 142224384 8e Linux LVM
Disk /dev/mapper/centos-root: 53.7 GB, 53687091200 bytes, 104857600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-swap: 8455 MB, 8455716864 bytes, 16515072 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/mapper/centos-home: 83.4 GB, 83424706560 bytes, 162938880 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
pawelw1
306 Posts
0
April 22nd, 2016 00:00
Hi,
Can you please confirm the exact CentOS release? Also, can you get 'dmesg' output as well?
Thank you,
Pawel
dhz1
12 Posts
0
April 22nd, 2016 01:00
Hi,
Centos Release :
[root@labsto1 ~]# more /etc/centos-release
CentOS Linux release 7.2.1511 (Core)
[root@labsto1 ~]# rpm -q centos-release
centos-release-7-2.1511.el7.centos.2.10.x86_64
[root@labsto1 ~]# uname -rmi
3.10.0-327.13.1.el7.x86_64 x86_64 x86_64
Dmesg :
[root@labsto1 ~]# dmesg
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.10.0-327.13.1.el7.x86_64 (builder@kbuilder.dev.centos.org) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC) ) #1 SMP Thu Mar 31 16:04:38 UTC 2016
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.10.0-327.13.1.el7.x86_64 root=/dev/mapper/centos-root ro crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet LANG=en_US.UTF-8
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cf378fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000cf379000-0x00000000cf38efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000cf38f000-0x00000000cf3cdfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000cf3ce000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: Dell Inc. PowerEdge R710/0MD99X, BIOS 6.4.0 07/23/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0x430000 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-CBFFF write-protect
[ 0.000000] CC000-D3FFF write-back
[ 0.000000] D4000-EBFFF uncachable
[ 0.000000] EC000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 0000000000 mask FF80000000 write-back
[ 0.000000] 1 base 0080000000 mask FFC0000000 write-back
[ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back
[ 0.000000] 3 base 0100000000 mask FF00000000 write-back
[ 0.000000] 4 base 0200000000 mask FE00000000 write-back
[ 0.000000] 5 base 0400000000 mask FFE0000000 write-back
[ 0.000000] 6 base 0420000000 mask FFF0000000 write-back
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[ 0.000000] e820: last_pfn = 0xcf379 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000fe710-0x000fe71f] mapped at [ffff8800000fe710]
[ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x01f32000, 0x01f32fff] PGTABLE
[ 0.000000] BRK [0x01f33000, 0x01f33fff] PGTABLE
[ 0.000000] BRK [0x01f34000, 0x01f34fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x42fe00000-0x42fffffff]
[ 0.000000] [mem 0x42fe00000-0x42fffffff] page 2M
[ 0.000000] BRK [0x01f35000, 0x01f35fff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x42c000000-0x42fdfffff]
[ 0.000000] [mem 0x42c000000-0x42fdfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x400000000-0x42bffffff]
[ 0.000000] [mem 0x400000000-0x42bffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0xcf378fff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
[ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
[ 0.000000] [mem 0xc0000000-0xcf1fffff] page 2M
[ 0.000000] [mem 0xcf200000-0xcf378fff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
[ 0.000000] [mem 0x100000000-0x3ffffffff] page 1G
[ 0.000000] RAMDISK: [mem 0x346eb000-0x3636dfff]
[ 0.000000] ACPI: RSDP 00000000000f1150 00024 (v02 DELL )
[ 0.000000] ACPI: XSDT 00000000000f1254 0009C (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: FACP 00000000cf3b3f9c 000F4 (v03 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: DSDT 00000000cf38f000 03DD0 (v01 DELL PE_SC3 00000001 INTL 20050624)
[ 0.000000] ACPI: FACS 00000000cf3b6000 00040
[ 0.000000] ACPI: APIC 00000000cf3b3478 0015E (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: SPCR 00000000cf3b35d8 00050 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: HPET 00000000cf3b362c 00038 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: DM__ 00000000cf3b3668 001C0 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: MCFG 00000000cf3b38c4 0003C (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: WD__ 00000000cf3b3904 00134 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: SLIC 00000000cf3b3a3c 00024 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: ERST 00000000cf392f70 00270 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: HEST 00000000cf3931e0 003A8 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: BERT 00000000cf392dd0 00030 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: EINJ 00000000cf392e00 00170 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: SRAT 00000000cf3b3bc0 00370 (v01 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: TCPA 00000000cf3b3f34 00064 (v02 DELL PE_SC3 00000001 DELL 00000001)
[ 0.000000] ACPI: SSDT 00000000cf3b7000 043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] SRAT: PXM 1 -> APIC 0x20 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x00 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x22 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x02 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x32 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x12 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x34 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x14 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x21 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x01 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x23 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x03 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x33 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x13 -> Node 1
[ 0.000000] SRAT: PXM 1 -> APIC 0x35 -> Node 0
[ 0.000000] SRAT: PXM 2 -> APIC 0x15 -> Node 1
[ 0.000000] SRAT: Node 1 PXM 2 [mem 0x00000000-0xcfffffff]
[ 0.000000] SRAT: Node 1 PXM 2 [mem 0x100000000-0x22fffffff]
[ 0.000000] SRAT: Node 0 PXM 1 [mem 0x230000000-0x42fffffff]
[ 0.000000] NUMA: Node 1 [mem 0x00000000-0xcfffffff] + [mem 0x100000000-0x22fffffff] -> [mem 0x00000000-0x22fffffff]
[ 0.000000] Initmem setup node 0 [mem 0x230000000-0x42fffffff]
[ 0.000000] NODE_DATA [mem 0x42ffd7000-0x42fffdfff]
[ 0.000000] Initmem setup node 1 [mem 0x00000000-0x22fffffff]
[ 0.000000] NODE_DATA [mem 0x22ffd9000-0x22fffffff]
[ 0.000000] Reserving 161MB of memory at 672MB for crashkernel (System RAM: 16371MB)
[ 0.000000] [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880227e00000-ffff88022fdfffff] on node 1
[ 0.000000] [ffffea0008c00000-ffffea0010bfffff] PMD -> [ffff880427600000-ffff88042f5fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x42fffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 1: [mem 0x00001000-0x0009dfff]
[ 0.000000] node 1: [mem 0x00100000-0xcf378fff]
[ 0.000000] node 1: [mem 0x100000000-0x22fffffff]
[ 0.000000] node 0: [mem 0x230000000-0x42fffffff]
[ 0.000000] On node 0 totalpages: 2097152
[ 0.000000] Normal zone: 32768 pages used for memmap
[ 0.000000] Normal zone: 2097152 pages, LIFO batch:31
[ 0.000000] On node 1 totalpages: 2093846
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3997 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13198 pages used for memmap
[ 0.000000] DMA32 zone: 844665 pages, LIFO batch:31
[ 0.000000] Normal zone: 19456 pages used for memmap
[ 0.000000] Normal zone: 1245184 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x20] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x22] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x32] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x12] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x34] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x14] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x21] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x23] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x33] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x13] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x35] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x15] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x11] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x12] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x13] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x14] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x15] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x16] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x17] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x18] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x19] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1a] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1b] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1c] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1d] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1e] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x1f] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x20] lapic_id[0xff] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec80000] gsi_base[32])
[ 0.000000] IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcf379000-0xcf38efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcf38f000-0xcf3cdfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xcf3ce000-0xcfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd0000000-0xdfffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xffffffff]
[ 0.000000] e820: [mem 0xd0000000-0xdfffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:5120 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
[ 0.000000] PERCPU: Embedded 31 pages/cpu @ffff880227c00000 s87168 r8192 d31616 u131072
[ 0.000000] pcpu-alloc: s87168 r8192 d31616 u131072 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 00 02 04 06 08 10 12 14 16 18 20 22 24 26 28 30
[ 0.000000] pcpu-alloc: [1] 01 03 05 07 09 11 13 15 17 19 21 23 25 27 29 31
[ 0.000000] Built 2 zonelists in Zone order, mobility grouping on. Total pages: 4125491
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.10.0-327.13.1.el7.x86_64 root=/dev/mapper/centos-root ro crashkernel=auto rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet LANG=en_US.UTF-8
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Memory: 16221424k/17563648k available (6441k kernel code, 799656k absent, 542568k reserved, 4265k data, 1620k init)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=32.
[ 0.000000] Offload RCU callbacks from all CPUs
[ 0.000000] Offload RCU callbacks from CPUs: 0-31.
[ 0.000000] NR_IRQS:327936 nr_irqs:1224 0
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 67108864 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2394.028 MHz processor
[ 0.000021] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.05 BogoMIPS (lpj=2394028)
[ 0.000023] pid_max: default: 32768 minimum: 301
[ 0.000084] Security Framework initialized
[ 0.000093] SELinux: Initializing.
[ 0.000109] SELinux: Starting in permissive mode
[ 0.001527] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.005606] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.007154] Mount-cache hash table entries: 4096
[ 0.007437] Initializing cgroup subsys memory
[ 0.007458] Initializing cgroup subsys devices
[ 0.007460] Initializing cgroup subsys freezer
[ 0.007461] Initializing cgroup subsys net_cls
[ 0.007463] Initializing cgroup subsys blkio
[ 0.007464] Initializing cgroup subsys perf_event
[ 0.007466] Initializing cgroup subsys hugetlb
[ 0.007499] CPU: Physical Processor ID: 1
[ 0.007500] CPU: Processor Core ID: 0
[ 0.007506] mce: CPU supports 9 MCE banks
[ 0.007517] CPU0: Thermal monitoring enabled (TM1)
[ 0.007528] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 6
[ 0.007614] Freeing SMP alternatives: 28k freed
[ 0.008841] ACPI: Core revision 20130517
[ 0.010572] ACPI: All ACPI Tables successfully acquired
[ 0.010669] ftrace: allocating 24584 entries in 97 pages
[ 0.023015] Switched APIC routing to physical flat.
[ 0.023570] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.033578] smpboot: CPU0: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz (fam: 06, model: 2c, stepping: 02)
[ 0.135395] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
[ 0.135413] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[ 0.135415] ... version: 3
[ 0.135416] ... bit 48
[ 0.135417] ... generic registers: 4
[ 0.135418] ... value mask: 0000ffffffffffff
[ 0.135419] ... max period: 000000007fffffff
[ 0.135420] ... fixed-purpose events: 3
[ 0.135421] ... event mask: 000000070000000f
[ 0.229038] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.137596] smpboot: Booting Node 1, Processors #1 OK
[ 0.229137] smpboot: Booting Node 0, Processors #2 OK
[ 0.242540] smpboot: Booting Node 1, Processors #3 OK
[ 0.255856] smpboot: Booting Node 0, Processors #4 OK
[ 0.269235] smpboot: Booting Node 1, Processors #5 OK
[ 0.282557] smpboot: Booting Node 0, Processors #6 OK
[ 0.295938] smpboot: Booting Node 1, Processors #7 OK
[ 0.309257] smpboot: Booting Node 0, Processors #8 OK
[ 0.322771] smpboot: Booting Node 1, Processors #9 OK
[ 0.336097] smpboot: Booting Node 0, Processors #10 OK
[ 0.349475] smpboot: Booting Node 1, Processors #11 OK
[ 0.362802] smpboot: Booting Node 0, Processors #12 OK
[ 0.376173] smpboot: Booting Node 1, Processors #13 OK
[ 0.389493] smpboot: Booting Node 0, Processors #14 OK
[ 0.402874] smpboot: Booting Node 1, Processors #15
[ 0.416119] Brought up 16 CPUs
[ 0.416123] smpboot: Total of 16 processors activated (76607.00 BogoMIPS)
[ 0.434932] devtmpfs: initialized
[ 0.438202] EVM: security.selinux
[ 0.438203] EVM: security.ima
[ 0.438204] EVM: security.capability
[ 0.439394] atomic64 test passed for x86-64 platform with CX8 and with SSE
[ 0.439521] NET: Registered protocol family 16
[ 0.439730] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.439732] ACPI: bus type PCI registered
[ 0.439734] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.439806] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.439809] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.440380] PCI: Using configuration type 1 for base access
[ 0.442366] ACPI: Added _OSI(Module Device)
[ 0.442368] ACPI: Added _OSI(Processor Device)
[ 0.442369] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.442371] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.442872] ACPI: EC: Look up EC in DSDT
[ 0.443597] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.445428] ACPI: Interpreter enabled
[ 0.445434] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
[ 0.445438] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
[ 0.445440] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130517/hwxface-571)
[ 0.445450] ACPI: (supports S0 S4 S5)
[ 0.445451] ACPI: Using IOAPIC for interrupt routing
[ 0.445533] HEST: Table parsing has been initialized.
[ 0.445536] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.449782] ACPI: \_PR_.CP17: failed to get CPU physical ID.
[ 0.449787] ACPI: \_PR_.CP18: failed to get CPU physical ID.
[ 0.449790] ACPI: \_PR_.CP19: failed to get CPU physical ID.
[ 0.449794] ACPI: \_PR_.CP20: failed to get CPU physical ID.
[ 0.449798] ACPI: \_PR_.CP21: failed to get CPU physical ID.
[ 0.449805] ACPI: \_PR_.CP22: failed to get CPU physical ID.
[ 0.449809] ACPI: \_PR_.CP23: failed to get CPU physical ID.
[ 0.449812] ACPI: \_PR_.CP24: failed to get CPU physical ID.
[ 0.449895] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.449901] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.449989] acpi PNP0A08:00: PCIe AER handled by firmware
[ 0.450166] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[ 0.450385] PCI host bridge to bus 0000:00
[ 0.450388] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.450390] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.450392] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.450394] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.450396] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfdffffff]
[ 0.450397] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 0.450409] pci 0000:00:00.0: [8086:3406] type 00 class 0x060000
[ 0.450467] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 0.450525] pci 0000:00:01.0: [8086:3408] type 01 class 0x060400
[ 0.450587] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.450641] pci 0000:00:03.0: [8086:340a] type 01 class 0x060400
[ 0.450697] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 0.450753] pci 0000:00:04.0: [8086:340b] type 01 class 0x060400
[ 0.450807] pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
[ 0.450862] pci 0000:00:05.0: [8086:340c] type 01 class 0x060400
[ 0.450918] pci 0000:00:05.0: PME# supported from D0 D3hot D3cold
[ 0.450969] pci 0000:00:06.0: [8086:340d] type 01 class 0x060400
[ 0.451024] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[ 0.451076] pci 0000:00:07.0: [8086:340e] type 01 class 0x060400
[ 0.451132] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 0.451185] pci 0000:00:09.0: [8086:3410] type 01 class 0x060400
[ 0.451240] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[ 0.451295] pci 0000:00:14.0: [8086:342e] type 00 class 0x080000
[ 0.451378] pci 0000:00:14.1: [8086:3422] type 00 class 0x080000
[ 0.451460] pci 0000:00:14.2: [8086:3423] type 00 class 0x080000
[ 0.451557] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
[ 0.451597] pci 0000:00:1a.0: reg 0x20: [io 0xdc40-0xdc5f]
[ 0.451676] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
[ 0.451717] pci 0000:00:1a.1: reg 0x20: [io 0xdc60-0xdc7f]
[ 0.451801] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
[ 0.451821] pci 0000:00:1a.7: reg 0x10: [mem 0xdf0fe000-0xdf0fe3ff]
[ 0.451907] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.451959] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
[ 0.451999] pci 0000:00:1d.0: reg 0x20: [io 0xdc80-0xdc9f]
[ 0.452077] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
[ 0.452116] pci 0000:00:1d.1: reg 0x20: [io 0xdca0-0xdcbf]
[ 0.452201] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
[ 0.452221] pci 0000:00:1d.7: reg 0x10: [mem 0xdf0ff000-0xdf0ff3ff]
[ 0.452306] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.452355] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[ 0.452443] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
[ 0.452518] pci 0000:00:1f.0: can't claim BAR 13 [io 0x0800-0x087f]: address conflict with ACPI CPU throttle [io 0x0810-0x0815]
[ 0.452523] pci 0000:00:1f.0: quirk: [io 0x0880-0x08bf] claimed by ICH6 GPIO
[ 0.452526] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0c00 (mask 007f)
[ 0.452529] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
[ 0.452532] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 00e0 (mask 000f)
[ 0.452608] pci 0000:00:1f.2: [8086:2921] type 00 class 0x01018f
[ 0.452623] pci 0000:00:1f.2: reg 0x10: [io 0xdc10-0xdc17]
[ 0.452630] pci 0000:00:1f.2: reg 0x14: [io 0xdc08-0xdc0b]
[ 0.452637] pci 0000:00:1f.2: reg 0x18: [io 0xdc18-0xdc1f]
[ 0.452644] pci 0000:00:1f.2: reg 0x1c: [io 0xdc0c-0xdc0f]
[ 0.452651] pci 0000:00:1f.2: reg 0x20: [io 0xdc20-0xdc2f]
[ 0.452659] pci 0000:00:1f.2: reg 0x24: [io 0xdc30-0xdc3f]
[ 0.452787] pci 0000:01:00.0: [14e4:1639] type 00 class 0x020000
[ 0.452804] pci 0000:01:00.0: reg 0x10: [mem 0xd6000000-0xd7ffffff 64bit]
[ 0.452896] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.452948] pci 0000:01:00.1: [14e4:1639] type 00 class 0x020000
[ 0.452964] pci 0000:01:00.1: reg 0x10: [mem 0xd8000000-0xd9ffffff 64bit]
[ 0.453055] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
[ 0.454568] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.454575] pci 0000:00:01.0: bridge window [mem 0xd6000000-0xd9ffffff]
[ 0.454634] pci 0000:02:00.0: [14e4:1639] type 00 class 0x020000
[ 0.454651] pci 0000:02:00.0: reg 0x10: [mem 0xda000000-0xdbffffff 64bit]
[ 0.454743] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.454796] pci 0000:02:00.1: [14e4:1639] type 00 class 0x020000
[ 0.454812] pci 0000:02:00.1: reg 0x10: [mem 0xdc000000-0xddffffff 64bit]
[ 0.454903] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
[ 0.456567] pci 0000:00:03.0: PCI bridge to [bus 02]
[ 0.456573] pci 0000:00:03.0: bridge window [mem 0xda000000-0xddffffff]
[ 0.456646] pci 0000:03:00.0: [1000:0079] type 00 class 0x010400
[ 0.456657] pci 0000:03:00.0: reg 0x10: [io 0xfc00-0xfcff]
[ 0.456667] pci 0000:03:00.0: reg 0x14: [mem 0xdf1bc000-0xdf1bffff 64bit]
[ 0.456676] pci 0000:03:00.0: reg 0x1c: [mem 0xdf1c0000-0xdf1fffff 64bit]
[ 0.456688] pci 0000:03:00.0: reg 0x30: [mem 0xdf100000-0xdf13ffff pref]
[ 0.456728] pci 0000:03:00.0: supports D1 D2
[ 0.458566] pci 0000:00:04.0: PCI bridge to [bus 03]
[ 0.458570] pci 0000:00:04.0: bridge window [io 0xf000-0xffff]
[ 0.458574] pci 0000:00:04.0: bridge window [mem 0xdf100000-0xdf1fffff]
[ 0.458623] pci 0000:00:05.0: PCI bridge to [bus 04]
[ 0.458663] pci 0000:00:06.0: PCI bridge to [bus 05]
[ 0.458708] pci 0000:00:07.0: PCI bridge to [bus 06]
[ 0.458760] pci 0000:07:00.0: [8086:10fb] type 00 class 0x020000
[ 0.458774] pci 0000:07:00.0: reg 0x10: [mem 0xdf300000-0xdf37ffff 64bit]
[ 0.458780] pci 0000:07:00.0: reg 0x18: [io 0xecc0-0xecdf]
[ 0.458795] pci 0000:07:00.0: reg 0x20: [mem 0xdf2f8000-0xdf2fbfff 64bit]
[ 0.458802] pci 0000:07:00.0: reg 0x30: [mem 0xdf200000-0xdf27ffff pref]
[ 0.458842] pci 0000:07:00.0: PME# supported from D0 D3hot
[ 0.458870] pci 0000:07:00.0: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 0.458872] pci 0000:07:00.0: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
[ 0.458885] pci 0000:07:00.0: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 0.458887] pci 0000:07:00.0: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
[ 0.458929] pci 0000:07:00.1: [8086:10fb] type 00 class 0x020000
[ 0.458943] pci 0000:07:00.1: reg 0x10: [mem 0xdf380000-0xdf3fffff 64bit]
[ 0.458950] pci 0000:07:00.1: reg 0x18: [io 0xece0-0xecff]
[ 0.458964] pci 0000:07:00.1: reg 0x20: [mem 0xdf2fc000-0xdf2fffff 64bit]
[ 0.458971] pci 0000:07:00.1: reg 0x30: [mem 0xdf200000-0xdf27ffff pref]
[ 0.459011] pci 0000:07:00.1: PME# supported from D0 D3hot
[ 0.459035] pci 0000:07:00.1: reg 0x184: [mem 0x00000000-0x00003fff 64bit]
[ 0.459037] pci 0000:07:00.1: VF(n) BAR0 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR0 for 64 VFs)
[ 0.459050] pci 0000:07:00.1: reg 0x190: [mem 0x00000000-0x00003fff 64bit]
[ 0.459052] pci 0000:07:00.1: VF(n) BAR3 space: [mem 0x00000000-0x000fffff 64bit] (contains BAR3 for 64 VFs)
[ 0.460568] pci 0000:00:09.0: PCI bridge to [bus 07]
[ 0.460573] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
[ 0.460577] pci 0000:00:09.0: bridge window [mem 0xdf200000-0xdf3fffff]
[ 0.460627] pci 0000:08:03.0: [102b:0532] type 00 class 0x030000
[ 0.460643] pci 0000:08:03.0: reg 0x10: [mem 0xd5800000-0xd5ffffff pref]
[ 0.460652] pci 0000:08:03.0: reg 0x14: [mem 0xde7fc000-0xde7fffff]
[ 0.460661] pci 0000:08:03.0: reg 0x18: [mem 0xde800000-0xdeffffff]
[ 0.460691] pci 0000:08:03.0: reg 0x30: [mem 0x00000000-0x0000ffff pref]
[ 0.460774] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
[ 0.460779] pci 0000:00:1e.0: bridge window [mem 0xde000000-0xdeffffff]
[ 0.460784] pci 0000:00:1e.0: bridge window [mem 0xd5800000-0xd5ffffff 64bit pref]
[ 0.460786] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.460788] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.460790] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.460791] pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xfdffffff] (subtractive decode)
[ 0.460793] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
[ 0.460828] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[ 0.462000] ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 10 11 14 *15)
[ 0.462062] ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 10 11 *14 15)
[ 0.462122] ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 6 7 10 *11 14 15)
[ 0.462182] ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 6 7 *10 11 14 15)
[ 0.462242] ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 *5 6 7 10 11 14 15)
[ 0.462302] ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 *6 7 10 11 14 15)
[ 0.462363] ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled.
[ 0.462423] ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 10 11 *14 15)
[ 0.462465] ACPI: Enabled 1 GPEs in block 00 to 3F
[ 0.462572] vgaarb: device added: PCI:0000:08:03.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.462574] vgaarb: loaded
[ 0.462575] vgaarb: bridge control possible 0000:08:03.0
[ 0.462643] SCSI subsystem initialized
[ 0.462673] ACPI: bus type USB registered
[ 0.462690] usbcore: registered new interface driver usbfs
[ 0.462699] usbcore: registered new interface driver hub
[ 0.462748] usbcore: registered new device driver usb
[ 0.462874] PCI: Using ACPI for IRQ routing
[ 0.468554] PCI: Discovered peer bus fe
[ 0.468555] PCI: root bus fe: using default resources
[ 0.468559] PCI: Probing PCI hardware (bus fe)
[ 0.468576] PCI host bridge to bus 0000:fe
[ 0.468578] pci_bus 0000:fe: root bus resource [io 0x0000-0xffff]
[ 0.468580] pci_bus 0000:fe: root bus resource [mem 0x00000000-0xffffffffff]
[ 0.468582] pci_bus 0000:fe: No busn resource found for root bus, will use [bus fe-ff]
[ 0.468584] pci_bus 0000:fe: busn_res: can not insert [bus fe-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[ 0.468589] pci 0000:fe:00.0: [8086:2c70] type 00 class 0x060000
[ 0.468627] pci 0000:fe:00.1: [8086:2d81] type 00 class 0x060000
[ 0.468667] pci 0000:fe:02.0: [8086:2d90] type 00 class 0x060000
[ 0.468702] pci 0000:fe:02.1: [8086:2d91] type 00 class 0x060000
[ 0.468738] pci 0000:fe:02.2: [8086:2d92] type 00 class 0x060000
[ 0.468771] pci 0000:fe:02.3: [8086:2d93] type 00 class 0x060000
[ 0.468803] pci 0000:fe:02.4: [8086:2d94] type 00 class 0x060000
[ 0.468836] pci 0000:fe:02.5: [8086:2d95] type 00 class 0x060000
[ 0.468869] pci 0000:fe:03.0: [8086:2d98] type 00 class 0x060000
[ 0.468902] pci 0000:fe:03.1: [8086:2d99] type 00 class 0x060000
[ 0.468934] pci 0000:fe:03.2: [8086:2d9a] type 00 class 0x060000
[ 0.468966] pci 0000:fe:03.4: [8086:2d9c] type 00 class 0x060000
[ 0.468997] pci 0000:fe:04.0: [8086:2da0] type 00 class 0x060000
[ 0.469028] pci 0000:fe:04.1: [8086:2da1] type 00 class 0x060000
[ 0.469060] pci 0000:fe:04.2: [8086:2da2] type 00 class 0x060000
[ 0.469092] pci 0000:fe:04.3: [8086:2da3] type 00 class 0x060000
[ 0.469126] pci 0000:fe:05.0: [8086:2da8] type 00 class 0x060000
[ 0.469158] pci 0000:fe:05.1: [8086:2da9] type 00 class 0x060000
[ 0.469187] pci 0000:fe:05.2: [8086:2daa] type 00 class 0x060000
[ 0.469218] pci 0000:fe:05.3: [8086:2dab] type 00 class 0x060000
[ 0.469252] pci 0000:fe:06.0: [8086:2db0] type 00 class 0x060000
[ 0.469284] pci 0000:fe:06.1: [8086:2db1] type 00 class 0x060000
[ 0.469317] pci 0000:fe:06.2: [8086:2db2] type 00 class 0x060000
[ 0.469349] pci 0000:fe:06.3: [8086:2db3] type 00 class 0x060000
[ 0.469390] pci_bus 0000:fe: busn_res: [bus fe-ff] end is updated to fe
[ 0.469393] pci_bus 0000:fe: busn_res: can not insert [bus fe] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[ 0.469398] PCI: Discovered peer bus ff
[ 0.469399] PCI: root bus ff: using default resources
[ 0.469400] PCI: Probing PCI hardware (bus ff)
[ 0.469416] PCI host bridge to bus 0000:ff
[ 0.469418] pci_bus 0000:ff: root bus resource [io 0x0000-0xffff]
[ 0.469420] pci_bus 0000:ff: root bus resource [mem 0x00000000-0xffffffffff]
[ 0.469422] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[ 0.469424] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[ 0.469429] pci 0000:ff:00.0: [8086:2c70] type 00 class 0x060000
[ 0.469468] pci 0000:ff:00.1: [8086:2d81] type 00 class 0x060000
[ 0.469505] pci 0000:ff:02.0: [8086:2d90] type 00 class 0x060000
[ 0.469537] pci 0000:ff:02.1: [8086:2d91] type 00 class 0x060000
[ 0.469577] pci 0000:ff:02.2: [8086:2d92] type 00 class 0x060000
[ 0.469613] pci 0000:ff:02.3: [8086:2d93] type 00 class 0x060000
[ 0.469650] pci 0000:ff:02.4: [8086:2d94] type 00 class 0x060000
[ 0.469686] pci 0000:ff:02.5: [8086:2d95] type 00 class 0x060000
[ 0.469725] pci 0000:ff:03.0: [8086:2d98] type 00 class 0x060000
[ 0.469757] pci 0000:ff:03.1: [8086:2d99] type 00 class 0x060000
[ 0.469793] pci 0000:ff:03.2: [8086:2d9a] type 00 class 0x060000
[ 0.469829] pci 0000:ff:03.4: [8086:2d9c] type 00 class 0x060000
[ 0.469874] pci 0000:ff:04.0: [8086:2da0] type 00 class 0x060000
[ 0.469910] pci 0000:ff:04.1: [8086:2da1] type 00 class 0x060000
[ 0.469947] pci 0000:ff:04.2: [8086:2da2] type 00 class 0x060000
[ 0.469983] pci 0000:ff:04.3: [8086:2da3] type 00 class 0x060000
[ 0.470020] pci 0000:ff:05.0: [8086:2da8] type 00 class 0x060000
[ 0.470055] pci 0000:ff:05.1: [8086:2da9] type 00 class 0x060000
[ 0.470091] pci 0000:ff:05.2: [8086:2daa] type 00 class 0x060000
[ 0.470126] pci 0000:ff:05.3: [8086:2dab] type 00 class 0x060000
[ 0.470164] pci 0000:ff:06.0: [8086:2db0] type 00 class 0x060000
[ 0.470196] pci 0000:ff:06.1: [8086:2db1] type 00 class 0x060000
[ 0.470234] pci 0000:ff:06.2: [8086:2db2] type 00 class 0x060000
[ 0.470270] pci 0000:ff:06.3: [8086:2db3] type 00 class 0x060000
[ 0.470318] pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
[ 0.470321] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[ 0.470325] PCI: pci_cache_line_size set to 64 bytes
[ 0.470416] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.470418] e820: reserve RAM buffer [mem 0xcf379000-0xcfffffff]
[ 0.470528] NetLabel: Initializing
[ 0.470529] NetLabel: domain hash size = 128
[ 0.470530] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.470547] NetLabel: unlabeled traffic allowed by default
[ 0.470584] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.470588] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.472613] Switching to clocksource hpet
[ 0.478170] pnp: PnP ACPI init
[ 0.478178] ACPI: bus type PNP registered
[ 0.478232] pnp 00:00: [dma 4]
[ 0.478251] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.478286] pnp 00:01: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.478336] system 00:02: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.478371] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.478576] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.478791] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.479614] system 00:06: [io 0x0800-0x087f] could not be reserved
[ 0.479617] system 00:06: [io 0x0880-0x08ff] could not be reserved
[ 0.479619] system 00:06: [io 0x0900-0x091f] has been reserved
[ 0.479624] system 00:06: [io 0x0920-0x0923] has been reserved
[ 0.479626] system 00:06: [io 0x0924] has been reserved
[ 0.479627] system 00:06: [io 0x0c00-0x0c7f] has been reserved
[ 0.479629] system 00:06: [io 0x0ca0-0x0ca7] has been reserved
[ 0.479631] system 00:06: [io 0x0ca9-0x0cab] has been reserved
[ 0.479633] system 00:06: [io 0x0cad-0x0caf] has been reserved
[ 0.479636] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.479683] pnp 00:07: [irq 0 disabled]
[ 0.479717] system 00:07: [io 0x0ca8] has been reserved
[ 0.479719] system 00:07: [io 0x0cac] has been reserved
[ 0.479722] system 00:07: Plug and Play ACPI device, IDs IPI0001 PNP0c01 (active)
[ 0.480360] system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.480363] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.480416] pnp 00:09: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.480456] system 00:0a: [mem 0xfed90000-0xfed91fff] has been reserved
[ 0.480459] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.480602] pnp: PnP ACPI: found 11 devices
[ 0.480603] ACPI: bus type PNP unregistered
[ 0.487705] pci 0000:07:00.1: can't claim BAR 6 [mem 0xdf200000-0xdf27ffff pref]: address conflict with 0000:07:00.0 [mem 0xdf200000-0xdf27ffff pref]
[ 0.487750] pci 0000:00:1f.0: BAR 13: [io 0x0800-0x087f] has bogus alignment
[ 0.487754] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.487758] pci 0000:00:01.0: bridge window [mem 0xd6000000-0xd9ffffff]
[ 0.487763] pci 0000:00:03.0: PCI bridge to [bus 02]
[ 0.487767] pci 0000:00:03.0: bridge window [mem 0xda000000-0xddffffff]
[ 0.487772] pci 0000:00:04.0: PCI bridge to [bus 03]
[ 0.487775] pci 0000:00:04.0: bridge window [io 0xf000-0xffff]
[ 0.487778] pci 0000:00:04.0: bridge window [mem 0xdf100000-0xdf1fffff]
[ 0.487784] pci 0000:00:05.0: PCI bridge to [bus 04]
[ 0.487791] pci 0000:00:06.0: PCI bridge to [bus 05]
[ 0.487799] pci 0000:00:07.0: PCI bridge to [bus 06]
[ 0.487810] pci 0000:07:00.1: BAR 6: no space for [mem size 0x00080000 pref]
[ 0.487812] pci 0000:07:00.1: BAR 6: failed to assign [mem size 0x00080000 pref]
[ 0.487814] pci 0000:07:00.0: BAR 7: no space for [mem size 0x00100000 64bit]
[ 0.487816] pci 0000:07:00.0: BAR 7: failed to assign [mem size 0x00100000 64bit]
[ 0.487818] pci 0000:07:00.0: BAR 10: no space for [mem size 0x00100000 64bit]
[ 0.487820] pci 0000:07:00.0: BAR 10: failed to assign [mem size 0x00100000 64bit]
[ 0.487822] pci 0000:07:00.1: BAR 7: no space for [mem size 0x00100000 64bit]
[ 0.487824] pci 0000:07:00.1: BAR 7: failed to assign [mem size 0x00100000 64bit]
[ 0.487826] pci 0000:07:00.1: BAR 10: no space for [mem size 0x00100000 64bit]
[ 0.487828] pci 0000:07:00.1: BAR 10: failed to assign [mem size 0x00100000 64bit]
[ 0.487830] pci 0000:00:09.0: PCI bridge to [bus 07]
[ 0.487832] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
[ 0.487835] pci 0000:00:09.0: bridge window [mem 0xdf200000-0xdf3fffff]
[ 0.487842] pci 0000:08:03.0: BAR 6: assigned [mem 0xde000000-0xde00ffff pref]
[ 0.487843] pci 0000:00:1e.0: PCI bridge to [bus 08]
[ 0.487847] pci 0000:00:1e.0: bridge window [mem 0xde000000-0xdeffffff]
[ 0.487851] pci 0000:00:1e.0: bridge window [mem 0xd5800000-0xd5ffffff 64bit pref]
[ 0.487856] pci_bus 0000:00: Some PCI device resources are unassigned, try booting with pci=realloc
[ 0.487858] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.487859] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.487861] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.487863] pci_bus 0000:00: resource 7 [mem 0xd0000000-0xfdffffff]
[ 0.487864] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.487866] pci_bus 0000:01: resource 1 [mem 0xd6000000-0xd9ffffff]
[ 0.487867] pci_bus 0000:02: resource 1 [mem 0xda000000-0xddffffff]
[ 0.487869] pci_bus 0000:03: resource 0 [io 0xf000-0xffff]
[ 0.487871] pci_bus 0000:03: resource 1 [mem 0xdf100000-0xdf1fffff]
[ 0.487872] pci_bus 0000:07: resource 0 [io 0xe000-0xefff]
[ 0.487874] pci_bus 0000:07: resource 1 [mem 0xdf200000-0xdf3fffff]
[ 0.487876] pci_bus 0000:08: resource 1 [mem 0xde000000-0xdeffffff]
[ 0.487877] pci_bus 0000:08: resource 2 [mem 0xd5800000-0xd5ffffff 64bit pref]
[ 0.487879] pci_bus 0000:08: resource 4 [io 0x0000-0x0cf7]
[ 0.487881] pci_bus 0000:08: resource 5 [io 0x0d00-0xffff]
[ 0.487882] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.487884] pci_bus 0000:08: resource 7 [mem 0xd0000000-0xfdffffff]
[ 0.487885] pci_bus 0000:08: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.487888] pci_bus 0000:fe: resource 4 [io 0x0000-0xffff]
[ 0.487890] pci_bus 0000:fe: resource 5 [mem 0x00000000-0xffffffffff]
[ 0.487892] pci_bus 0000:ff: resource 4 [io 0x0000-0xffff]
[ 0.487894] pci_bus 0000:ff: resource 5 [mem 0x00000000-0xffffffffff]
[ 0.487932] NET: Registered protocol family 2
[ 0.488233] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.488528] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.488707] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.488737] TCP: reno registered
[ 0.488763] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.488831] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.488999] NET: Registered protocol family 1
[ 0.502192] pci 0000:08:03.0: Boot video device
[ 0.502249] PCI: CLS 64 bytes, default 64
[ 0.502304] Unpacking initramfs...
[ 0.969365] Freeing initrd memory: 29196k freed
[ 0.976509] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.976516] software IO TLB [mem 0xcb379000-0xcf379000] (64MB) mapped at [ffff8800cb379000-ffff8800cf378fff]
[ 0.978355] microcode: CPU0 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978365] microcode: CPU1 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978372] microcode: CPU2 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978380] microcode: CPU3 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978389] microcode: CPU4 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978397] microcode: CPU5 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978405] microcode: CPU6 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978414] microcode: CPU7 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978421] microcode: CPU8 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978430] microcode: CPU9 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978437] microcode: CPU10 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978445] microcode: CPU11 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978452] microcode: CPU12 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978461] microcode: CPU13 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978467] microcode: CPU14 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978473] microcode: CPU15 sig=0x206c2, pf=0x1, revision=0x1a
[ 0.978511] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.978624] sha1_ssse3: Using SSSE3 optimized SHA-1 implementation
[ 0.978697] sha256_ssse3: Using SSSE3 optimized SHA-256 implementation
[ 0.978997] futex hash table entries: 8192 (order: 7, 524288 bytes)
[ 0.979117] Initialise system trusted keyring
[ 0.979197] audit: initializing netlink socket (disabled)
[ 0.979226] type=2000 audit(1461313355.823:1): initialized
[ 1.003153] HugeTLB registered 1 GB page size, pre-allocated 0 pages
[ 1.003155] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.004192] zpool: loaded
[ 1.004197] zbud: loaded
[ 1.004423] VFS: Disk quotas dquot_6.5.2
[ 1.004470] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.004695] msgmni has been set to 31739
[ 1.004760] Key type big_key registered
[ 1.004763] SELinux: Registering netfilter hooks
[ 1.005922] NET: Registered protocol family 38
[ 1.005934] Key type asymmetric registered
[ 1.005937] Asymmetric key parser 'x509' registered
[ 1.005981] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[ 1.006058] io scheduler noop registered
[ 1.006063] io scheduler deadline registered (default)
[ 1.006100] io scheduler cfq registered
[ 1.006566] pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
[ 1.006842] pcieport 0000:00:03.0: irq 26 for MSI/MSI-X
[ 1.007122] pcieport 0000:00:04.0: irq 27 for MSI/MSI-X
[ 1.007385] pcieport 0000:00:05.0: irq 28 for MSI/MSI-X
[ 1.007653] pcieport 0000:00:06.0: irq 29 for MSI/MSI-X
[ 1.007915] pcieport 0000:00:07.0: irq 30 for MSI/MSI-X
[ 1.008187] pcieport 0000:00:09.0: irq 31 for MSI/MSI-X
[ 1.008280] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[ 1.008282] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[ 1.008284] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[ 1.008287] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[ 1.008301] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[ 1.008303] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[ 1.008304] pci 0000:02:00.1: Signaling PME through PCIe PME interrupt
[ 1.008307] pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
[ 1.008320] pcieport 0000:00:04.0: Signaling PME through PCIe PME interrupt
[ 1.008322] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[ 1.008325] pcie_pme 0000:00:04.0:pcie01: service driver pcie_pme loaded
[ 1.008341] pcieport 0000:00:05.0: Signaling PME through PCIe PME interrupt
[ 1.008344] pcie_pme 0000:00:05.0:pcie01: service driver pcie_pme loaded
[ 1.008357] pcieport 0000:00:06.0: Signaling PME through PCIe PME interrupt
[ 1.008360] pcie_pme 0000:00:06.0:pcie01: service driver pcie_pme loaded
[ 1.008374] pcieport 0000:00:07.0: Signaling PME through PCIe PME interrupt
[ 1.008377] pcie_pme 0000:00:07.0:pcie01: service driver pcie_pme loaded
[ 1.008390] pcieport 0000:00:09.0: Signaling PME through PCIe PME interrupt
[ 1.008391] pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
[ 1.008393] pci 0000:07:00.1: Signaling PME through PCIe PME interrupt
[ 1.008396] pcie_pme 0000:00:09.0:pcie01: service driver pcie_pme loaded
[ 1.008416] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.008423] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.008488] intel_idle: MWAIT substates: 0x1120
[ 1.008489] intel_idle: v0.4 model 0x2C
[ 1.008490] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 1.008709] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 1.008713] ACPI: Power Button [PWRF]
[ 1.009022] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 1.009025] pstore: Registered erst as persistent store backend
[ 1.009150] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
[ 1.009225] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 1.029792] 00:04: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.050380] 00:05: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.050809] Non-volatile memory driver v1.3
[ 1.050813] Linux agpgart interface v0.103
[ 1.050937] crash memory driver: version 1.1
[ 1.051006] rdac: device handler registered
[ 1.051051] hp_sw: device handler registered
[ 1.051054] emc: device handler registered
[ 1.051057] alua: device handler registered
[ 1.051088] libphy: Fixed MDIO Bus: probed
[ 1.051145] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.051151] ehci-pci: EHCI PCI platform driver
[ 1.051405] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 1.051457] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 1.051470] ehci-pci 0000:00:1a.7: debug port 1
[ 1.055382] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
[ 1.055400] ehci-pci 0000:00:1a.7: irq 19, io mem 0xdf0fe000
[ 1.061011] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 1.061051] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.061053] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.061055] usb usb1: Product: EHCI Host Controller
[ 1.061057] usb usb1: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 ehci_hcd
[ 1.061058] usb usb1: SerialNumber: 0000:00:1a.7
[ 1.061154] hub 1-0:1.0: USB hub found
[ 1.061161] hub 1-0:1.0: 4 ports detected
[ 1.061496] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 1.061537] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 1.061548] ehci-pci 0000:00:1d.7: debug port 1
[ 1.065459] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[ 1.065472] ehci-pci 0000:00:1d.7: irq 21, io mem 0xdf0ff000
[ 1.071017] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.071048] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.071050] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.071052] usb usb2: Product: EHCI Host Controller
[ 1.071053] usb usb2: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 ehci_hcd
[ 1.071055] usb usb2: SerialNumber: 0000:00:1d.7
[ 1.071139] hub 2-0:1.0: USB hub found
[ 1.071144] hub 2-0:1.0: 4 ports detected
[ 1.071243] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.071249] ohci-pci: OHCI PCI platform driver
[ 1.071260] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.071524] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 1.071568] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 1.071577] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 1.071604] uhci_hcd 0000:00:1a.0: irq 17, io base 0x0000dc40
[ 1.071645] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.071647] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.071649] usb usb3: Product: UHCI Host Controller
[ 1.071650] usb usb3: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 uhci_hcd
[ 1.071652] usb usb3: SerialNumber: 0000:00:1a.0
[ 1.071727] hub 3-0:1.0: USB hub found
[ 1.071733] hub 3-0:1.0: 2 ports detected
[ 1.072041] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 1.072086] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 1.072092] uhci_hcd 0000:00:1a.1: detected 2 ports
[ 1.072117] uhci_hcd 0000:00:1a.1: irq 18, io base 0x0000dc60
[ 1.072159] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.072161] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.072163] usb usb4: Product: UHCI Host Controller
[ 1.072165] usb usb4: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 uhci_hcd
[ 1.072166] usb usb4: SerialNumber: 0000:00:1a.1
[ 1.072241] hub 4-0:1.0: USB hub found
[ 1.072246] hub 4-0:1.0: 2 ports detected
[ 1.072525] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.072571] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[ 1.072576] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 1.072594] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000dc80
[ 1.072633] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.072635] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.072637] usb usb5: Product: UHCI Host Controller
[ 1.072638] usb usb5: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 uhci_hcd
[ 1.072640] usb usb5: SerialNumber: 0000:00:1d.0
[ 1.072714] hub 5-0:1.0: USB hub found
[ 1.072719] hub 5-0:1.0: 2 ports detected
[ 1.073016] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.073065] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[ 1.073071] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 1.073100] uhci_hcd 0000:00:1d.1: irq 20, io base 0x0000dca0
[ 1.073148] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.073150] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.073152] usb usb6: Product: UHCI Host Controller
[ 1.073154] usb usb6: Manufacturer: Linux 3.10.0-327.13.1.el7.x86_64 uhci_hcd
[ 1.073155] usb usb6: SerialNumber: 0000:00:1d.1
[ 1.073230] hub 6-0:1.0: USB hub found
[ 1.073235] hub 6-0:1.0: 2 ports detected
[ 1.073337] usbcore: registered new interface driver usbserial
[ 1.073347] usbcore: registered new interface driver usbserial_generic
[ 1.073353] usbserial: USB Serial support registered for generic
[ 1.073377] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 1.076296] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.076301] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.076387] mousedev: PS/2 mouse device common for all mice
[ 1.076515] rtc_cmos 00:03: RTC can wake from S4
[ 1.076641] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
[ 1.076667] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[ 1.076965] cpuidle: using governor menu
[ 1.077600] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.077688] usbcore: registered new interface driver usbhid
[ 1.077689] usbhid: USB HID core driver
[ 1.077709] drop_monitor: Initializing network drop monitor service
[ 1.077802] TCP: cubic registered
[ 1.077805] Initializing XFRM netlink socket
[ 1.077906] NET: Registered protocol family 10
[ 1.078211] NET: Registered protocol family 17
[ 1.078626] Loading compiled-in X.509 certificates
[ 1.078655] Loaded X.509 cert 'CentOS Linux kpatch signing key: ea0413152cde1d98ebdca3fe6f0230904c9ef717'
[ 1.078669] Loaded X.509 cert 'CentOS Linux Driver update signing key: 7f421ee0ab69461574bb358861dbe77762a4201b'
[ 1.079251] Loaded X.509 cert 'CentOS Linux kernel signing key: 6f3378187d83cd18a43b2e0ac49aed8aeffc3ac7'
[ 1.079267] registered taskstats version 1
[ 1.081689] Key type trusted registered
[ 1.083681] Key type encrypted registered
[ 1.085643] IMA: No TPM chip found, activating TPM-bypass!
[ 1.086277] rtc_cmos 00:03: setting system clock to 2016-04-22 08:22:36 UTC (1461313356)
[ 1.087262] Freeing unused kernel memory: 1620k freed
[ 1.089641] ERST: NVRAM ERST Log Address Range is not implemented yet
[ 1.090719] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[ 1.091097] systemd[1]: Detected architecture x86-64.
[ 1.091100] systemd[1]: Running in initial RAM disk.
[ 1.091125] systemd[1]: Set hostname to .
[ 1.134742] systemd[1]: Reached target Swap.
[ 1.134753] systemd[1]: Starting Swap.
[ 1.134897] systemd[1]: Created slice -.slice.
[ 1.134906] systemd[1]: Starting -.slice.
[ 1.134941] systemd[1]: Listening on udev Kernel Socket.
[ 1.134949] systemd[1]: Starting udev Kernel Socket.
[ 1.134997] systemd[1]: Listening on Journal Socket.
[ 1.135006] systemd[1]: Starting Journal Socket.
[ 1.135038] systemd[1]: Listening on udev Control Socket.
[ 1.135054] systemd[1]: Starting udev Control Socket.
[ 1.135067] systemd[1]: Reached target Sockets.
[ 1.135074] systemd[1]: Starting Sockets.
[ 1.135148] systemd[1]: Created slice System Slice.
[ 1.135157] systemd[1]: Starting System Slice.
[ 1.135195] systemd[1]: Started dracut ask for additional cmdline parameters.
[ 1.135670] systemd[1]: Starting dracut cmdline hook...
[ 1.135695] systemd[1]: Reached target Slices.
[ 1.135703] systemd[1]: Starting Slices.
[ 1.135823] systemd[1]: Started Load Kernel Modules.
[ 1.135843] systemd[1]: Reached target Timers.
[ 1.135850] systemd[1]: Starting Timers.
[ 1.136271] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[ 1.136715] systemd[1]: Starting Apply Kernel Variables...
[ 1.137157] systemd[1]: Starting Journal Service...
[ 1.137181] systemd[1]: Reached target Local File Systems.
[ 1.137192] systemd[1]: Starting Local File Systems.
[ 1.137626] systemd[1]: Starting Setup Virtual Console...
[ 1.138003] systemd[1]: Started Create list of required static device nodes for the current kernel.
[ 1.138766] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 1.139292] systemd[1]: Started Apply Kernel Variables.
[ 1.141378] systemd[1]: Started Create Static Device Nodes in /dev.
[ 1.172661] systemd[1]: Started Journal Service.
[ 1.266938] device-mapper: uevent: version 1.0.3
[ 1.267088] device-mapper: ioctl: 4.33.0-ioctl (2015-8-18) initialised: dm-devel@redhat.com
[ 1.330937] bnx2: QLogic bnx2 Gigabit Ethernet Driver v2.2.6 (January 29, 2014)
[ 1.331579] bnx2 0000:01:00.0 eth0: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d6000000, IRQ 32, node addr b8:ac:6f:85:92:23
[ 1.332055] dca service started, version 1.12.1
[ 1.332218] bnx2 0000:01:00.1 eth1: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d8000000, IRQ 33, node addr b8:ac:6f:85:92:25
[ 1.332765] bnx2 0000:02:00.0 eth2: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem da000000, IRQ 34, node addr b8:ac:6f:85:92:27
[ 1.333266] megasas: 06.807.10.00-rh1
[ 1.333380] pps_core: LinuxPPS API ver. 1 registered
[ 1.333383] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.333408] bnx2 0000:02:00.1 eth3: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem dc000000, IRQ 35, node addr b8:ac:6f:85:92:29
[ 1.333751] megasas: FW now in Ready state
[ 1.333773] megaraid_sas 0000:03:00.0: irq 37 for MSI/MSI-X
[ 1.333784] megaraid_sas 0000:03:00.0: firmware supports msix : (0)
[ 1.333786] megaraid_sas 0000:03:00.0: current msix/online cpus : (1/16)
[ 1.334491] PTP clock support registered
[ 1.339701] libata version 3.00 loaded.
[ 1.340821] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.0.1-k-rh7.2
[ 1.340824] ixgbe: Copyright (c) 1999-2014 Intel Corporation.
[ 1.341455] ata_piix 0000:00:1f.2: version 2.13
[ 1.341828] ata_piix 0000:00:1f.2: MAP [
[ 1.341831] P0 -- P1 -- ]
[ 1.344216] [drm] Initialized drm 1.1.0 20060810
[ 1.357371] [TTM] Zone kernel: Available graphics memory: 8126134 kiB
[ 1.357373] [TTM] Zone dma32: Available graphics memory: 2097152 kiB
[ 1.357374] [TTM] Initializing pool allocator
[ 1.357379] [TTM] Initializing DMA pool allocator
[ 1.363216] usb 1-3: new high-speed USB device number 2 using ehci-pci
[ 1.376242] megaraid_sas 0000:03:00.0: controller type : MR(512MB)
[ 1.376246] megasas_init_mfi: fw_support_ieee=67108864
[ 1.376249] megasas: INIT adapter done
[ 1.381646] fbcon: mgadrmfb (fb0) is primary device
[ 1.418349] megaraid_sas 0000:03:00.0: pci id : (0x1000)/(0x0079)/(0x1028)/(0x1f17)
[ 1.418350] megaraid_sas 0000:03:00.0: unevenspan support : no
[ 1.418352] megaraid_sas 0000:03:00.0: disable ocr : no
[ 1.418353] megaraid_sas 0000:03:00.0: firmware crash dump : no
[ 1.418355] megaraid_sas 0000:03:00.0: secure jbod : no
[ 1.418360] scsi host0: Avago SAS based MegaRAID driver
[ 1.423180] scsi 0:2:0:0: Direct-Access DELL PERC H700 2.10 PQ: 0 ANSI: 5
[ 1.431241] pci 0000:07:00.1: vpd r/w failed. This is likely a firmware bug on this device. Contact the card vendor for a firmware update
[ 1.438694] sd 0:2:0:0: [sda] 285474816 512-byte logical blocks: (146 GB/136 GiB)
[ 1.438769] sd 0:2:0:0: [sda] Write Protect is off
[ 1.438771] sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08
[ 1.438815] sd 0:2:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.439311] sda: sda1 sda2
[ 1.439620] sd 0:2:0:0: [sda] Attached SCSI disk
[ 1.478006] usb 1-3: New USB device found, idVendor=0424, idProduct=2514
[ 1.478008] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.478297] hub 1-3:1.0: USB hub found
[ 1.478534] hub 1-3:1.0: 3 ports detected
[ 1.494072] scsi host1: ata_piix
[ 1.494873] scsi host2: ata_piix
[ 1.495267] ata1: SATA max UDMA/133 cmd 0xdc10 ctl 0xdc08 bmdma 0xdc20 irq 23
[ 1.495288] ata2: SATA max UDMA/133 cmd 0xdc18 ctl 0xdc0c bmdma 0xdc28 irq 23
[ 1.509347] ixgbe 0000:07:00.0: irq 39 for MSI/MSI-X
[ 1.509354] ixgbe 0000:07:00.0: irq 40 for MSI/MSI-X
[ 1.509361] ixgbe 0000:07:00.0: irq 41 for MSI/MSI-X
[ 1.509367] ixgbe 0000:07:00.0: irq 42 for MSI/MSI-X
[ 1.509375] ixgbe 0000:07:00.0: irq 43 for MSI/MSI-X
[ 1.509381] ixgbe 0000:07:00.0: irq 44 for MSI/MSI-X
[ 1.509391] ixgbe 0000:07:00.0: irq 45 for MSI/MSI-X
[ 1.509398] ixgbe 0000:07:00.0: irq 46 for MSI/MSI-X
[ 1.509406] ixgbe 0000:07:00.0: irq 47 for MSI/MSI-X
[ 1.509413] ixgbe 0000:07:00.0: irq 48 for MSI/MSI-X
[ 1.509419] ixgbe 0000:07:00.0: irq 49 for MSI/MSI-X
[ 1.509425] ixgbe 0000:07:00.0: irq 50 for MSI/MSI-X
[ 1.509435] ixgbe 0000:07:00.0: irq 51 for MSI/MSI-X
[ 1.509441] ixgbe 0000:07:00.0: irq 52 for MSI/MSI-X
[ 1.509447] ixgbe 0000:07:00.0: irq 53 for MSI/MSI-X
[ 1.509452] ixgbe 0000:07:00.0: irq 54 for MSI/MSI-X
[ 1.509458] ixgbe 0000:07:00.0: irq 55 for MSI/MSI-X
[ 1.509511] ixgbe 0000:07:00.0: Multiqueue Enabled: Rx Queue count = 16, Tx Queue count = 16
[ 1.509704] ixgbe 0000:07:00.0: PCI Express bandwidth of 32GT/s available
[ 1.509705] ixgbe 0000:07:00.0: (Speed:5.0GT/s, 1.510270] ixgbe 0000:07:00.0: MAC: 2, PHY: 18, SFP+: 5, PBA No: G18786-001
[ 1.510271] ixgbe 0000:07:00.0: 00:1b:21:9b:64:28
[ 1.512793] Console: switching to colour frame buffer device 128x48
[ 1.547356] usb 5-2: new full-speed USB device number 2 using uhci_hcd
[ 1.561790] mgag200 0000:08:03.0: fb0: mgadrmfb frame buffer device
[ 1.561790] mgag200 0000:08:03.0: registered panic notifier
[ 1.561802] [drm] Initialized mgag200 1.0.0 20110418 for 0000:08:03.0 on minor 0
[ 1.617639] ixgbe 0000:07:00.0: Intel(R) 10 Gigabit Network Connection
[ 1.625425] usb 2-3: new high-speed USB device number 3 using ehci-pci
[ 1.690609] usb 5-2: New USB device found, idVendor=0624, idProduct=0248
[ 1.690614] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.690618] usb 5-2: Product: USB Composite Device-0
[ 1.690620] usb 5-2: Manufacturer: Avocent
[ 1.690623] usb 5-2: SerialNumber: 20120430
[ 1.712831] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/input/input1
[ 1.741278] usb 2-3: New USB device found, idVendor=0624, idProduct=0249
[ 1.741284] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.741287] usb 2-3: Product: USB Composite Device-1
[ 1.741289] usb 2-3: Manufacturer: Avocent
[ 1.741292] usb 2-3: SerialNumber: 20120430
[ 1.763742] hid-generic 0003:0624:0248.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input0
[ 1.770822] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.1/input/input2
[ 1.771128] hid-generic 0003:0624:0248.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input1
[ 1.876965] usb-storage 2-3:1.0: USB Mass Storage device detected
[ 1.877380] scsi host3: usb-storage 2-3:1.0
[ 1.877436] usb-storage 2-3:1.1: USB Mass Storage device detected
[ 1.877843] scsi host4: usb-storage 2-3:1.1
[ 1.877926] usbcore: registered new interface driver usb-storage
[ 1.951652] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.970819] ata1.00: ATAPI: TEAC DVD-ROM DV-28SW, R.2A, max UDMA/100
[ 1.978656] tsc: Refined TSC clocksource calibration: 2393.999 MHz
[ 1.978662] Switching to clocksource tsc
[ 1.992848] ata1.00: configured for UDMA/100
[ 2.005814] scsi 1:0:0:0: CD-ROM TEAC DVD-ROM DV-28SW R.2A PQ: 0 ANSI: 5
[ 2.502977] ata2: failed to resume link (SControl 0)
[ 2.513731] ata2: SATA link down (SStatus 4 SControl 0)
[ 2.568165] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
[ 2.568171] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.568388] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 2.717833] ixgbe 0000:07:00.1: irq 57 for MSI/MSI-X
[ 2.717843] ixgbe 0000:07:00.1: irq 58 for MSI/MSI-X
[ 2.717850] ixgbe 0000:07:00.1: irq 59 for MSI/MSI-X
[ 2.717856] ixgbe 0000:07:00.1: irq 60 for MSI/MSI-X
[ 2.717863] ixgbe 0000:07:00.1: irq 61 for MSI/MSI-X
[ 2.717872] ixgbe 0000:07:00.1: irq 62 for MSI/MSI-X
[ 2.717882] ixgbe 0000:07:00.1: irq 63 for MSI/MSI-X
[ 2.717889] ixgbe 0000:07:00.1: irq 64 for MSI/MSI-X
[ 2.717896] ixgbe 0000:07:00.1: irq 65 for MSI/MSI-X
[ 2.717902] ixgbe 0000:07:00.1: irq 66 for MSI/MSI-X
[ 2.717908] ixgbe 0000:07:00.1: irq 67 for MSI/MSI-X
[ 2.717914] ixgbe 0000:07:00.1: irq 68 for MSI/MSI-X
[ 2.717921] ixgbe 0000:07:00.1: irq 69 for MSI/MSI-X
[ 2.717927] ixgbe 0000:07:00.1: irq 70 for MSI/MSI-X
[ 2.717936] ixgbe 0000:07:00.1: irq 71 for MSI/MSI-X
[ 2.717943] ixgbe 0000:07:00.1: irq 72 for MSI/MSI-X
[ 2.717949] ixgbe 0000:07:00.1: irq 73 for MSI/MSI-X
[ 2.717996] ixgbe 0000:07:00.1: Multiqueue Enabled: Rx Queue count = 16, Tx Queue count = 16
[ 2.718130] ixgbe 0000:07:00.1: PCI Express bandwidth of 32GT/s available
[ 2.718132] ixgbe 0000:07:00.1: (Speed:5.0GT/s, 2.718461] ixgbe 0000:07:00.1: MAC: 2, PHY: 1, PBA No: G18786-001
[ 2.718462] ixgbe 0000:07:00.1: 00:1b:21:9b:64:29
[ 2.719883] ixgbe 0000:07:00.1: Intel(R) 10 Gigabit Network Connection
[ 2.880253] scsi 4:0:0:0: CD-ROM iDRAC Virtual CD 0323 PQ: 0 ANSI: 0
[ 2.880348] scsi 3:0:0:0: Direct-Access iDRAC LCDRIVE 0323 PQ: 0 ANSI: 0 CCS
[ 2.880714] scsi 4:0:0:1: Direct-Access iDRAC Virtual Floppy 0323 PQ: 0 ANSI: 0 CCS
[ 2.992848] sr 4:0:0:0: [sr1] scsi3-mmc drive: 0x/0x cd/rw caddy
[ 2.993155] sr 4:0:0:0: Attached scsi CD-ROM sr1
[ 2.996357] sd 3:0:0:0: [sdc] Attached SCSI removable disk
[ 3.013922] sd 4:0:0:1: [sdb] Attached SCSI removable disk
[ 3.074921] SGI XFS with ACLs, security attributes, no debug enabled
[ 3.077300] XFS (dm-0): Mounting V4 Filesystem
[ 3.126221] XFS (dm-0): Ending clean mount
[ 3.419025] systemd-journald[233]: Received SIGTERM from PID 1 (systemd).
[ 3.832870] SELinux: 2048 avtab hash slots, 105324 rules.
[ 3.849119] SELinux: 2048 avtab hash slots, 105324 rules.
[ 3.878052] SELinux: 8 users, 105 roles, 4952 types, 302 bools, 1 sens, 1024 cats
[ 3.878055] SELinux: 83 classes, 105324 rules
[ 3.882849] SELinux: Completing initialization.
[ 3.882851] SELinux: Setting up existing superblocks.
[ 3.882857] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 3.882862] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[ 3.882870] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[ 3.882874] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 3.882922] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 3.882938] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[ 3.883524] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[ 3.883528] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[ 3.884484] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[ 3.884489] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[ 3.884491] SELinux: initialized (dev aio, type aio), not configured for labeling
[ 3.884493] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[ 3.884504] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[ 3.884509] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[ 3.884512] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 3.884517] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[ 3.884527] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[ 3.884531] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 3.885049] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 3.885055] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 3.885121] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 3.885147] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885155] SELinux: initialized (dev pstore, type pstore), uses genfs_contexts
[ 3.885157] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885161] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885168] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885173] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885178] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885182] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885185] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885192] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885195] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 3.885201] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[ 3.885204] SELinux: initialized (dev drm, type drm), not configured for labeling
[ 3.885210] SELinux: initialized (dev dm-0, type xfs), uses xattr
[ 3.889626] type=1403 audit(1461313359.299:2): policy loaded auid=4294967295 ses=4294967295
[ 3.895423] systemd[1]: Successfully loaded SELinux policy in 215.329ms.
[ 4.047014] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 4.048796] systemd[1]: Inserted module 'ip_tables'
[ 4.079927] systemd[1]: Relabelled /dev and /run in 23.106ms.
[ 5.210506] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[ 5.292468] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[ 5.368110] RPC: Registered named UNIX socket transport module.
[ 5.368114] RPC: Registered udp transport module.
[ 5.368116] RPC: Registered tcp transport module.
[ 5.368117] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 5.369777] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts
[ 5.524328] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[ 5.526476] SELinux: initialized (dev nfsd, type nfsd), uses genfs_contexts
[ 5.552476] systemd-journald[686]: Received request to flush runtime journal from PID 1
[ 7.392594] EDAC MC: Ver: 3.0.0
[ 7.494621] EDAC MC1: Giving out device to 'i7core_edac.c' 'i7 core #1': DEV 0000:fe:03.0
[ 7.494647] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:fe:03.0' (POLLED)
[ 7.495170] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:ff:03.0
[ 7.495186] EDAC PCI1: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:ff:03.0' (POLLED)
[ 7.495543] EDAC i7core: Driver loaded, 2 memory controller(s) found.
[ 7.528518] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 7.662866] ipmi message handler version 39.2
[ 7.667979] IPMI System Interface driver.
[ 7.668010] ipmi_si: probing via SMBIOS
[ 7.668012] ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 0
[ 7.668014] ipmi_si: Adding SMBIOS-specified kcs state machine
[ 7.668018] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 0
[ 7.677769] wmi: Mapper loaded
[ 7.691863] ACPI Error: No handler for Region [IPMI] (ffff880224c1a240) [IPMI] (20130517/evregion-162)
[ 7.691868] ACPI Error: Region IPMI (ID=7) has no handler (20130517/exfldio-305)
[ 7.691872] ACPI Error: Method parse/execution failed [\_SB_.PMI0._GHL] (Node ffff880224c19b18), AE_NOT_EXIST (20130517/psparse-536)
[ 7.691882] ACPI Error: Method parse/execution failed [\_SB_.PMI0._PMC] (Node ffff880224c19a78), AE_NOT_EXIST (20130517/psparse-536)
[ 7.691892] ACPI Exception: AE_NOT_EXIST, Evaluating _PMC (20130517/power_meter-753)
[ 7.694671] input: PC Speaker as /devices/platform/pcspkr/input/input3
[ 7.714109] sd 0:2:0:0: Attached scsi generic sg0 type 0
[ 7.714178] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 7.714236] sr 4:0:0:0: Attached scsi generic sg2 type 5
[ 7.714295] sd 4:0:0:1: Attached scsi generic sg3 type 0
[ 7.714347] sd 3:0:0:0: Attached scsi generic sg4 type 0
[ 7.725636] ipmi_si ipmi_si.0: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
[ 7.725643] ipmi_si ipmi_si.0: IPMI kcs interface initialized
[ 7.759009] iTCO_vendor_support: vendor-support=0
[ 7.775336] ipmi device interface
[ 7.783388] IPMI SSIF Interface driver
[ 7.808970] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 7.809002] iTCO_wdt: Found a ICH9 TCO device (Version=2, TCOBASE=0x0860)
[ 7.809392] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 7.826076] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[ 7.907173] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[ 7.980174] alg: No test for crc32 (crc32-pclmul)
[ 8.042573] kvm: disabled by bios
[ 8.066719] kvm: disabled by bios
[ 8.075556] kvm: disabled by bios
[ 8.087264] kvm: disabled by bios
[ 8.353339] XFS (sda1): Mounting V4 Filesystem
[ 8.583763] Adding 8257532k swap on /dev/mapper/centos-swap. Priority:-1 extents:1 across:8257532k FS
[ 8.889881] XFS (dm-2): Mounting V4 Filesystem
[ 8.945118] XFS (sda1): Ending clean mount
[ 8.945129] SELinux: initialized (dev sda1, type xfs), uses xattr
[ 9.447098] XFS (dm-2): Ending clean mount
[ 9.447111] SELinux: initialized (dev dm-2, type xfs), uses xattr
[ 9.717143] type=1305 audit(1461313365.123:3): audit_pid=911 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1
[ 11.157509] nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
[ 11.184153] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 11.214924] Ebtables v2.0 registered
[ 11.241340] Bridge firewalling registered
[ 12.223206] IPv6: ADDRCONF(NETDEV_UP): p3p1: link is not ready
[ 12.295730] ixgbe 0000:07:00.0: registered PHC device on p3p1
[ 12.396949] IPv6: ADDRCONF(NETDEV_UP): p3p1: link is not ready
[ 12.399879] IPv6: ADDRCONF(NETDEV_UP): em1: link is not ready
[ 12.453031] bnx2 0000:01:00.0: irq 74 for MSI/MSI-X
[ 12.453045] bnx2 0000:01:00.0: irq 75 for MSI/MSI-X
[ 12.453055] bnx2 0000:01:00.0: irq 76 for MSI/MSI-X
[ 12.453066] bnx2 0000:01:00.0: irq 77 for MSI/MSI-X
[ 12.453077] bnx2 0000:01:00.0: irq 78 for MSI/MSI-X
[ 12.453089] bnx2 0000:01:00.0: irq 79 for MSI/MSI-X
[ 12.453097] bnx2 0000:01:00.0: irq 80 for MSI/MSI-X
[ 12.453104] bnx2 0000:01:00.0: irq 81 for MSI/MSI-X
[ 12.453110] bnx2 0000:01:00.0: irq 82 for MSI/MSI-X
[ 12.458282] ixgbe 0000:07:00.0 p3p1: detected SFP+: 5
[ 12.497127] bnx2 0000:01:00.0 em1: using MSIX
[ 12.497158] IPv6: ADDRCONF(NETDEV_UP): em1: link is not ready
[ 12.499892] IPv6: ADDRCONF(NETDEV_UP): em3: link is not ready
[ 12.499965] bnx2 0000:02:00.0: irq 83 for MSI/MSI-X
[ 12.499990] bnx2 0000:02:00.0: irq 84 for MSI/MSI-X
[ 12.500002] bnx2 0000:02:00.0: irq 85 for MSI/MSI-X
[ 12.500010] bnx2 0000:02:00.0: irq 86 for MSI/MSI-X
[ 12.500021] bnx2 0000:02:00.0: irq 87 for MSI/MSI-X
[ 12.500029] bnx2 0000:02:00.0: irq 88 for MSI/MSI-X
[ 12.500036] bnx2 0000:02:00.0: irq 89 for MSI/MSI-X
[ 12.500042] bnx2 0000:02:00.0: irq 90 for MSI/MSI-X
[ 12.500049] bnx2 0000:02:00.0: irq 91 for MSI/MSI-X
[ 12.544219] bnx2 0000:02:00.0 em3: using MSIX
[ 12.544260] IPv6: ADDRCONF(NETDEV_UP): em3: link is not ready
[ 12.545963] IPv6: ADDRCONF(NETDEV_UP): em2: link is not ready
[ 12.546052] bnx2 0000:01:00.1: irq 92 for MSI/MSI-X
[ 12.546061] bnx2 0000:01:00.1: irq 93 for MSI/MSI-X
[ 12.546068] bnx2 0000:01:00.1: irq 94 for MSI/MSI-X
[ 12.546079] bnx2 0000:01:00.1: irq 95 for MSI/MSI-X
[ 12.546086] bnx2 0000:01:00.1: irq 96 for MSI/MSI-X
[ 12.546092] bnx2 0000:01:00.1: irq 97 for MSI/MSI-X
[ 12.546099] bnx2 0000:01:00.1: irq 98 for MSI/MSI-X
[ 12.546106] bnx2 0000:01:00.1: irq 99 for MSI/MSI-X
[ 12.546112] bnx2 0000:01:00.1: irq 100 for MSI/MSI-X
[ 12.590261] bnx2 0000:01:00.1 em2: using MSIX
[ 12.590294] IPv6: ADDRCONF(NETDEV_UP): em2: link is not ready
[ 12.591456] IPv6: ADDRCONF(NETDEV_UP): em4: link is not ready
[ 12.591525] bnx2 0000:02:00.1: irq 101 for MSI/MSI-X
[ 12.591532] bnx2 0000:02:00.1: irq 102 for MSI/MSI-X
[ 12.591543] bnx2 0000:02:00.1: irq 103 for MSI/MSI-X
[ 12.591549] bnx2 0000:02:00.1: irq 104 for MSI/MSI-X
[ 12.591556] bnx2 0000:02:00.1: irq 105 for MSI/MSI-X
[ 12.591562] bnx2 0000:02:00.1: irq 106 for MSI/MSI-X
[ 12.591569] bnx2 0000:02:00.1: irq 107 for MSI/MSI-X
[ 12.591575] bnx2 0000:02:00.1: irq 108 for MSI/MSI-X
[ 12.591582] bnx2 0000:02:00.1: irq 109 for MSI/MSI-X
[ 12.635209] bnx2 0000:02:00.1 em4: using MSIX
[ 12.635244] IPv6: ADDRCONF(NETDEV_UP): em4: link is not ready
[ 12.636540] IPv6: ADDRCONF(NETDEV_UP): p3p2: link is not ready
[ 12.701164] ixgbe 0000:07:00.0 p3p1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 12.710817] ixgbe 0000:07:00.1: registered PHC device on p3p2
[ 12.812175] IPv6: ADDRCONF(NETDEV_UP): p3p2: link is not ready
[ 12.812633] IPv6: ADDRCONF(NETDEV_CHANGE): p3p1: link becomes ready
[ 12.975275] ixgbe 0000:07:00.0 p3p1: changing MTU from 1500 to 9000
[ 13.277477] ixgbe 0000:07:00.0 p3p1: detected SFP+: 5
[ 13.520665] ixgbe 0000:07:00.0 p3p1: NIC Link is Up 10 Gbps, Flow Control: RX/TX
[ 18.960920] IPv6: ADDRCONF(NETDEV_UP): em3: link is not ready
[ 19.228882] IPv6: ADDRCONF(NETDEV_UP): em4: link is not ready
[ 19.741282] scini: module license 'Proprietary' taints kernel.
[ 19.741288] Disabling lock debugging due to kernel taint
[ 19.741675] scini: module verification failed: signature and/or required key missing - tainting kernel
[ 19.742300] scini: applying kernel_stack fix up
[ 19.747908] ScaleIO R2_0 drvMain_Init:61 :Driver starting load process. HZ 1000...
[ 19.747913] ScaleIO R2_0 mosCpu_Init:69 :eax=0000000b, ebx=756e6547, ecx=6c65746e, edx=49656e69
[ 19.748049] ScaleIO R2_0 mosT10Dif_Init:705 :(T10DIF) T10DIF layer using CPU (PCLMUL) acceleration !!!
[ 19.748623] ScaleIO R2_0 drvMain_Init:63 :Load process done. Status SUCCESS
[ 19.788565] ScaleIO R2_0 mapMdm_Create:1294 :Error: Requested to add MDM but NO instance was configured
[ 19.788573] ScaleIO R2_0 ioctl_HandleAddMdm:377 :Create finish for MDM. First IP 10.0.5.110.Number of IP addresses 2. Status 1 (ERROR)
[ 19.805640] ScaleIO R2_0 drvMain_Destroy:100 :Driver starting unload process...
[ 19.806056] ScaleIO R2_0 drvMain_Destroy:102 :Unload process done.
[ 23.445212] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 23.895062] fuse init (API version 7.22)
[ 23.903186] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[ 23.909290] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[ 24.404983] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 26.736195] Adjusting tsc more than 11% (8056876 vs 7778913)
[ 26.789681] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[root@labsto1 ~]#
Thanks
Daniel
pawelw1
306 Posts
0
April 23rd, 2016 00:00
Hi Daniel,
CentOS/RHEL 7.2 are not supported with ScaleIO - can't say for sure that's the exact cause of your problems, but we have seen a lot of strange issues with 7.2.
Can you please try the same with CentOS 7.0 and let us know if it worked?
Thanks,
Pawel
dhz1
12 Posts
0
April 23rd, 2016 04:00
Hi,
Unfortunately I don't have any CentOS 7.0 server available ...
Does this extract of my dmesg saying something to you ?
19.741282] scini: module license 'Proprietary' taints kernel.
[ 19.741288] Disabling lock debugging due to kernel taint
[ 19.741675] scini: module verification failed: signature and/or required key missing - tainting kernel
[ 19.742300] scini: applying kernel_stack fix up
[ 19.747908] ScaleIO R2_0 drvMain_Init:61 :Driver starting load process. HZ 1000...
[ 19.747913] ScaleIO R2_0 mosCpu_Init:69 :eax=0000000b, ebx=756e6547, ecx=6c65746e, edx=49656e69
[ 19.748049] ScaleIO R2_0 mosT10Dif_Init:705 :(T10DIF) T10DIF layer using CPU (PCLMUL) acceleration !!!
[ 19.748623] ScaleIO R2_0 drvMain_Init:63 :Load process done. Status SUCCESS
[ 19.788565] ScaleIO R2_0 mapMdm_Create:1294 :Error: Requested to add MDM but NO instance was configured
[ 19.788573] ScaleIO R2_0 ioctl_HandleAddMdm:377 :Create finish for MDM. First IP 10.0.5.110.Number of IP addresses 2. Status 1 (ERROR)
[ 19.805640] ScaleIO R2_0 drvMain_Destroy:100 :Driver starting unload process...
[ 19.806056] ScaleIO R2_0 drvMain_Destroy:102 :Unload process done.
Regards
Daniel