Skip to content

Instantly share code, notes, and snippets.

@atyronesmith
Last active January 10, 2017 14:29
Show Gist options
  • Select an option

  • Save atyronesmith/b623e3ca3d38e04c327f1f3ca410c3e7 to your computer and use it in GitHub Desktop.

Select an option

Save atyronesmith/b623e3ca3d38e04c327f1f3ca410c3e7 to your computer and use it in GitHub Desktop.
introspection-debug-osp10
Steps for extracting, editing, and building agent.ramdisk
mkdir agent.ramdisk
cd agent.ramdisk
gzip -dc ../agent.ramdisk | cpio --extract
cp /home/stack/agent-ramdisk/usr/local/sbin/dhcp-all-interfaces.sh usr/local/sbin/
#edit here
find . | cpio -oc | gzip -c -9>| ~/agent.ramdisk.dhcp-test
cp ~agent.ramdisk.dhcp-test /httpboot/agent.ramdisk
# if selinux permissions are incorrect
# [root@undercloud2 ~]# ls -Z /httpboot/
# drwxr-xr-x. ironic ironic system_u:object_r:httpd_sys_content_t:s0 1977b4e2-3719-4279-90f5-75920f937150
# -rwxr-xr-x. root root system_u:object_r:httpd_sys_content_t:s0 agent.kernel
# -rw-r--r--. root root system_u:object_r:httpd_sys_content_t:s0 agent.ramdisk
# -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 agent.ramdisk.20161221.original
# -rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 agent.ramdisk.20170109.original
# -rw-r--r--. ironic ironic system_u:object_r:httpd_sys_content_t:s0 boot.ipxe
# drwxr-xr-x. ironic ironic system_u:object_r:httpd_sys_content_t:s0 ca57abef-8883-45fb-8858-6ea965006256
# -rw-r--r--. ironic-inspector ironic-inspector system_u:object_r:httpd_sys_content_t:s0 inspector.ipxe
# drwxr-xr-x. ironic ironic system_u:object_r:httpd_sys_content_t:s0 pxelinux.cfg
# AND
# drwxr-xr-x. ironic ironic system_u:object_r:httpd_sys_content_t:s0 httpboot
chcon -R -t httpd_sys_content_t /httpboot/
chcon system_u:object_r:httpd_user_content_t:s0 agent.ramdisk
chcon system_u:object_r:httpd_user_content_t:s0 agent.kernel
Filesystem 1K-blocks Used Available Use% Mounted on
rootfs 65774704 989620 64785084 2% /
sysfs 0 0 0 - /sys
proc 0 0 0 - /proc
devtmpfs 65774720 0 65774720 0% /dev
securityfs 0 0 0 - /sys/kernel/security
selinuxfs 0 0 0 - /sys/fs/selinux
tmpfs 65954256 0 65954256 0% /dev/shm
devpts 0 0 0 - /dev/pts
tmpfs 65954256 9216 65945040 1% /run
tmpfs 65954256 0 65954256 0% /sys/fs/cgroup
cgroup 0 0 0 - /sys/fs/cgroup/systemd
pstore 0 0 0 - /sys/fs/pstore
cgroup 0 0 0 - /sys/fs/cgroup/memory
cgroup 0 0 0 - /sys/fs/cgroup/perf_event
cgroup 0 0 0 - /sys/fs/cgroup/cpu,cpuacct
cgroup 0 0 0 - /sys/fs/cgroup/freezer
cgroup 0 0 0 - /sys/fs/cgroup/net_cls,net_prio
cgroup 0 0 0 - /sys/fs/cgroup/blkio
cgroup 0 0 0 - /sys/fs/cgroup/pids
cgroup 0 0 0 - /sys/fs/cgroup/devices
cgroup 0 0 0 - /sys/fs/cgroup/hugetlb
cgroup 0 0 0 - /sys/fs/cgroup/cpuset
systemd-1 0 0 0 - /proc/sys/fs/binfmt_misc
mqueue 0 0 0 - /dev/mqueue
hugetlbfs 0 0 0 - /dev/hugepages
debugfs 0 0 0 - /sys/kernel/debug
configfs 0 0 0 - /sys/kernel/config
#!/bin/bash
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
set -x
fi
set -eu
set -o pipefail
INTERFACE=${1:-} #optional, if not specified configure all available interfaces
ENI_FILE="/etc/network/interfaces"
PATH=/sbin:$PATH
if [ -d "/etc/network" ]; then
CONF_TYPE="eni"
elif [ -d "/etc/sysconfig/network-scripts/" ]; then
CONF_TYPE="rhel-netscripts"
SCRIPTS_PATH="/etc/sysconfig/network-scripts/"
elif [ -d "/etc/sysconfig/network/" ]; then
# SUSE network scripts location
CONF_TYPE="suse-netscripts"
SCRIPTS_PATH="/etc/sysconfig/network/"
else
echo "Unsupported network configuration type!"
exit 1
fi
ARGS="$0 $@"
function serialize_me() {
if [ "$CONF_TYPE" == "eni" ]; then
# Serialize runs so that we don't miss hot-add interfaces
FLOCKED=${FLOCKED:-}
if [ -z "$FLOCKED" ] ; then
FLOCKED=true exec flock -x $ENI_FILE $ARGS
fi
fi
}
function get_if_link() {
cat /sys/class/net/${1}/carrier || echo 0
}
function enable_interface() {
local interface=$1
serialize_me
if [ "$CONF_TYPE" == "eni" ]; then
printf "auto $interface\niface $interface inet dhcp\n\n" >>$ENI_FILE
elif [ "$CONF_TYPE" == "rhel-netscripts" ]; then
printf "DEVICE=\"$interface\"\nBOOTPROTO=\"dhcp\"\nONBOOT=\"yes\"\nTYPE=\"Ethernet\"" >"${SCRIPTS_PATH}ifcfg-$interface"
elif [ "$CONF_TYPE" == "suse-netscripts" ]; then
printf "BOOTPROTO=\"dhcp\"\nSTARTMODE=\"auto\"" >"${SCRIPTS_PATH}ifcfg-$interface"
fi
echo "Configured $1"
}
function config_exists() {
local interface=$1
if [[ "$CONF_TYPE" =~ "netscripts" ]]; then
if [ -f "${SCRIPTS_PATH}ifcfg-$interface" ]; then
return 0
fi
else
if ifquery $interface >/dev/null 2>&1; then
if [ -z "$(ifquery $interface 2>&1)" ]; then
return 1
else
return 0
fi
else
return 1
fi
fi
return 1
}
function inspect_interface() {
local interface=$1
local mac_addr_type
mac_addr_type=$(cat /sys/class/net/${interface}/addr_assign_type)
echo -n "Inspecting interface: $interface..."
if config_exists $interface; then
echo "Has config, skipping."
elif [ "$mac_addr_type" != "0" ]; then
echo "Device has generated MAC, skipping."
else
local has_link
local tries
for ((tries = 0; tries < 20; tries++)); do
# Need to set the link up on each iteration
ip link set dev $interface up &>/dev/null
has_link=$(get_if_link $interface)
[ "$has_link" == "1" ] && break
sleep 1
done
if [ "$has_link" == "1" ]; then
enable_interface "$interface"
else
echo "No link detected, skipping"
fi
fi
}
if [ -n "$INTERFACE" ]; then
inspect_interface $INTERFACE
else
for iface in $(ls /sys/class/net | grep -v ^lo$); do
inspect_interface $iface
done
fi
This is the log files from a successful OSP10 RC introspection. Note that the spinning disks are recognized by Smartd, but are not part of the information returned to ironic.
{"cpu_arch": "x86_64", "macs": ["2c:60:0c:ca:78:8f"], "root_disk": {"rotational": false, "vendor": null, "name": "/dev/nvme0n1", "wwn_vendor_extension": null, "wwn_with_extension": null, "model": "INTEL SSDPE2MD400G4", "wwn": null, "serial": "CVFT5434001T400GGN", "size": 400088457216}, "extra": {"network": {"ens6f0": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "tx-vlan-stag-hw-insert": "off [fixed]", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "a0:36:9f:53:26:80", "speed": "10Gbit/s", "size": 10000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "rx-vlan-filter": "on", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x80000369", "RX": "off", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "rx-vlan-stag-hw-parse": "off [fixed]", "businfo": "pci@0000:83:00.0", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "TX": "off", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}, "ens6f1": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "tx-vlan-stag-hw-insert": "off [fixed]", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "a0:36:9f:53:26:82", "speed": "10Gbit/s", "size": 10000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "rx-vlan-filter": "on", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x80000369", "RX": "off", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "rx-vlan-stag-hw-parse": "off [fixed]", "businfo": "pci@0000:83:00.1", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "TX": "off", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}, "ens3f1": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "tx-vlan-stag-hw-insert": "off [fixed]", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "2c:60:0c:84:31:60", "speed": "10Gbit/s", "size": 10000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "rx-vlan-filter": "on", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x800003e2", "RX": "off", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "rx-vlan-stag-hw-parse": "off [fixed]", "businfo": "pci@0000:04:00.1", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "TX": "off", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}, "ens3f0": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "tx-vlan-stag-hw-insert": "off [fixed]", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "2c:60:0c:84:31:5f", "speed": "10Gbit/s", "size": 10000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "rx-vlan-filter": "on", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x800003e2", "RX": "off", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "rx-vlan-stag-hw-parse": "off [fixed]", "businfo": "pci@0000:04:00.0", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "TX": "off", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}, "ens255f0": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "tx-vlan-stag-hw-insert": "off [fixed]", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "2c:60:0c:ca:78:8e", "speed": "1Gbit/s", "size": 1000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "rx-vlan-filter": "on", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x800003e2", "RX": "on", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "rx-vlan-stag-hw-parse": "off [fixed]", "businfo": "pci@0000:01:00.0", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "TX": "on", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}, "ens255f1": {"vlan-challenged": "off [fixed]", "rx-vlan-offload": "on", "ipv4-network": "192.0.2.0", "tx-udp_tnl-segmentation": "off [fixed]", "rx-vlan-stag-filter": "off [fixed]", "highdma": "on [fixed]", "autonegotiation": "on", "tx-gso-robust": "off [fixed]", "fcoe-mtu": "off [fixed]", "netns-local": "off [fixed]", "udp-fragmentation-offload": "off [fixed]", "serial": "2c:60:0c:ca:78:8f", "speed": "10Gbit/s", "size": 10000000000, "l2-fwd-offload": "off", "latency": 0, "tx-checksumming/tx-checksum-ipv6": "off [fixed]", "TX": "off", "ipv4-netmask": "255.255.255.0", "duplex": "full", "tx-ipip-segmentation": "off [fixed]", "Autonegotiate": "on", "firmware": "0x800003e2", "RX": "off", "tx-gre-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-ip-generic": "on", "tcp-segmentation-offload/tx-tcp-ecn-segmentation": "off [fixed]", "tx-sctp-segmentation": "off [fixed]", "tx-checksumming/tx-checksum-fcoe-crc": "on [fixed]", "ipv4": "192.0.2.151", "ipv4-cidr": 24, "rx-vlan-stag-hw-parse": "off [fixed]", "tx-vlan-offload": "on", "product": "Ethernet Controller 10-Gigabit X540-AT2", "tx-nocache-copy": "off", "vendor": "Intel Corporation", "tx-fcoe-segmentation": "on [fixed]", "rx-vlan-filter": "on", "tx-checksumming/tx-checksum-sctp": "on", "driver": "ixgbe", "tx-sit-segmentation": "off [fixed]", "busy-poll": "on [fixed]", "tx-vlan-stag-hw-insert": "off [fixed]", "scatter-gather/tx-scatter-gather-fraglist": "off [fixed]", "link": "yes", "ntuple-filters": "off", "rx-all": "off", "tcp-segmentation-offload": "on", "tcp-segmentation-offload/tx-tcp6-segmentation": "on", "rx-checksumming": "on", "rx-fcs": "off [fixed]", "tx-checksumming/tx-checksum-ipv4": "off [fixed]", "generic-segmentation-offload": "on", "tx-lockless": "off [fixed]", "tx-checksumming": "on", "businfo": "pci@0000:01:00.1", "large-receive-offload": "off", "tcp-segmentation-offload/tx-tcp-segmentation": "on", "hw-tc-offload": "off [fixed]", "receive-hashing": "on", "scatter-gather/tx-scatter-gather": "on", "generic-receive-offload": "on", "loopback": "off [fixed]", "scatter-gather": "on", "tx-mpls-segmentation": "off [fixed]"}}, "ipmi": {"HDD4": {"value": "0x00"}, "HDD5": {"value": "0x00"}, "HDD6": {"value": "0x00"}, "HDD7": {"value": "0x00"}, "HDD0": {"value": "0x00"}, "HDD1": {"value": "0x00"}, "HDD2": {"value": "0x00"}, "CATERR": {"value": "0x00"}, "Volt_VR_DIMM_EF": {"unit": "Volts", "value": "1.22"}, "Critical IRQ": {"value": "0x00"}, "Temp_VR_CPU1": {"unit": "degrees C", "value": 34}, "HDD8": {"value": "0x00"}, "HDD9": {"value": "0x00"}, "Volt_P5V": {"unit": "Volts", "value": "4.84"}, "Volt_P1V05": {"unit": "Volts", "value": "1.05"}, "PSU2 Status": {"value": "0x00"}, "Volt_VR_DIMM_GH": {"unit": "Volts", "value": "1.22"}, "DIMM_HOT": {"value": "0x00"}, "Volt_P3V3_AUX": {"unit": "Volts", "value": "3.31"}, "Temp_Outlet": {"unit": "degrees C", "value": 36}, "Temp_CPU0": {"unit": "degrees C", "value": 39}, "Temp_CPU1": {"unit": "degrees C", "value": 40}, "Temp_PCI_Inlet1": {"unit": "degrees C", "value": 39}, "Fan_SYS0_0": {"unit": "RPM", "value": 8000}, "Temp_PCI_Inlet2": {"unit": "degrees C", "value": 34}, "CPU_DIMM_VRHOT": {"value": "0x00"}, "Fan_SYS2_0": {"unit": "RPM", "value": 7800}, "System Event": {"value": "0x00"}, "Fan_SYS1_1": {"unit": "RPM", "value": 6800}, "Fan_SYS1_0": {"unit": "RPM", "value": 8000}, "HDD3": {"value": "0x00"}, "Temp_DIMM_GH": {"unit": "degrees C", "value": 30}, "SYS_NIC2_LinkUp": {"value": "0x00"}, "Temp_VR_DIMM_CD": {"unit": "degrees C", "value": 30}, "Fan_SYS0_1": {"unit": "RPM", "value": 6600}, "Volt_P5V_AUX": {"unit": "Volts", "value": "4.86"}, "Temp_DIMM_AB": {"unit": "degrees C", "value": 32}, "Fan_SYS3_1": {"unit": "RPM", "value": 6600}, "Fan_SSD0": {"unit": "reading", "value": "no"}, "Fan_SYS3_0": {"unit": "RPM", "value": 7900}, "Temp_DIMM_CD": {"unit": "degrees C", "value": 33}, "Volt_VR_DIMM_AB": {"unit": "Volts", "value": "1.22"}, "Temp_VR_DIMM_GH": {"unit": "degrees C", "value": 30}, "lan": {"802.1q-vlan-id": "Disabled", "802.1q-vlan-priority": 0, "default-gateway-ip": "10.19.109.254", "ip-address-source": "Static Address", "backup-gateway-ip": "0.0.0.0", "rmcp+-cipher-suites": "0,1,2,3,6,7,8,11,12", "set-in-progress": "Set Complete", "gratituous-arp-intrvl": "0.0 seconds", "bmc-arp-control": "ARP Responses Enabled, Gratuitous ARP Disabled", "auth-type-enable": "Callback : NONE MD2 MD5 PASSWORD OEM", "ip-header": "TTL=0x40 Flags=0x40 Precedence=0x00 TOS=0x10", "ip-address": "10.19.109.203", "default-gateway-mac": "00:00:00:00:00:00", "auth-type-support": "NONE MD2 MD5 PASSWORD OEM", "snmp-community-string": "Quanta", "backup-gateway-mac": "00:00:00:00:00:00", "cipher-suite-priv-max": "XaaaXXaaaXXaaXX", "mac-address": "2c:60:0c:ca:78:90", "subnet-mask": "255.255.255.192"}, "Airflow": {"unit": "CFM", "value": 27}, "Temp_VR_DIMM_EF": {"unit": "degrees C", "value": 32}, "PSU1 Status": {"value": "0x00"}, "Volt_VR_CPU1": {"unit": "Volts", "value": "1.78"}, "Button": {"value": "0x00"}, "Temp_VR_DIMM_AB": {"unit": "degrees C", "value": 30}, "MB Thermal Trip": {"value": "0x00"}, "Volt_VR_CPU0": {"unit": "Volts", "value": "1.78"}, "Volt_VR_DIMM_CD": {"unit": "Volts", "value": "1.22"}, "Power Unit": {"value": "0x00"}, "PSU Redundancy": {"value": "0x00"}, "PSU2 Input": {"unit": "Watts", "value": 0}, "Fan_SYS5_0": {"unit": "RPM", "value": 7800}, "Temp_VR_CPU0": {"unit": "degrees C", "value": 33}, "Event Log": {"value": "0x00"}, "Fan_SSD1": {"unit": "reading", "value": "no"}, "Temp_DIMM_EF": {"unit": "degrees C", "value": 33}, "PSU1 Input": {"unit": "Watts", "value": 224}, "PCH Hot": {"value": "0x00"}, "Fan_SYS4_1": {"unit": "RPM", "value": 6600}, "SYS_NIC1_LinkUp": {"value": "0x00"}, "Temp_OCP_Mezz": {"unit": "degrees C", "value": 83}, "Volt_P3V3": {"unit": "Volts", "value": "3.31"}, "Volt_P12V": {"unit": "Volts", "value": "12.06"}, "Fan_SYS2_1": {"unit": "RPM", "value": 6700}, "Fan_SYS5_1": {"unit": "RPM", "value": 6500}, "Temp_Ambient_FP": {"unit": "degrees C", "value": 22}, "NVMeSSD_0": {"unit": "degrees C", "value": 31}, "Fan_SYS4_0": {"unit": "RPM", "value": 8000}, "Volt_P1V8_AUX": {"unit": "Volts", "value": "1.79"}, "Temp_PCH": {"unit": "degrees C", "value": 47}, "NVMeSSD_1": {"unit": "degrees C", "value": 33}, "Watchdog": {"value": "0x00"}, "CPU_0": {"value": "0x00"}, "CPU_1": {"value": "0x00"}, "Temp_PCI_Area": {"unit": "degrees C", "value": 44}, "Volt_P3V_BAT": {"unit": "Volts", "value": "3.10"}}, "firmware": {"bios": {"date": "02/18/2016", "version": "S2B_3B04", "vendor": "American Megatrends Inc."}}, "system": {"motherboard": {"serial": "QTF4J053101286", "version": "31S2BMB0040", "vendor": "Quanta Computer Inc", "name": "S2B-MB (dual 10G LoM)"}, "kernel": {"cmdline": "ipa-inspection-callback-url=http://192.0.2.1:5050/v1/continue ipa-inspection-collectors=default,extra-hardware,logs systemd.journald.forward_to_console=yes BOOTIF=2c:60:0c:ca:78:8f ipa-debug=1 ipa-inspection-dhcp-all-interfaces=1 ipa-collect-lldp=1 initrd=agent.ramdisk rootpwd=\"$1$ny.TiJfC$d59nmkcGz1uFVTMz3MGM/0\"", "version": "3.10.0-514.2.2.el7.x86_64", "arch": "x86_64"}, "product": {"serial": "QTFCJ05320372", "version": "To be filled by O.E.M.", "vendor": "Quanta Computer Inc", "name": "D51B-1U (dual 10G LoM) (Default string)", "uuid": "C1BC59D5-4437-E511-A752-2C600CCA7890"}, "ipmi": {"channel": 1}}, "memory": {"bank:0:2": {"slot": "DIMM_A2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:0:3": {"slot": "DIMM_B0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A071", "size": 17179869184}, "bank:0:0": {"slot": "DIMM_A0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A17F", "size": 17179869184}, "bank:0:1": {"slot": "DIMM_A1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:0:4": {"slot": "DIMM_B1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:0:5": {"slot": "DIMM_B2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:1:5": {"slot": "DIMM_D2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:1:4": {"slot": "DIMM_D1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:1:3": {"slot": "DIMM_D0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A06F", "size": 17179869184}, "bank:1:2": {"slot": "DIMM_C2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:1:1": {"slot": "DIMM_C1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:1:0": {"slot": "DIMM_C0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A20F", "size": 17179869184}, "bank:3:5": {"slot": "DIMM_H2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:3:4": {"slot": "DIMM_H1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:3:1": {"slot": "DIMM_G1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:3:0": {"slot": "DIMM_G0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A14B", "size": 17179869184}, "bank:3:3": {"slot": "DIMM_H0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A146", "size": 17179869184}, "bank:3:2": {"slot": "DIMM_G2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:2:0": {"slot": "DIMM_E0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A206", "size": 17179869184}, "bank:2:1": {"slot": "DIMM_E1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:2:2": {"slot": "DIMM_E2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:2:3": {"slot": "DIMM_F0", "product": "36ASF2G72PZ-2G1A2", "vendor": "Micron", "description": "DIMM Synchronous 2133 MHz (0.5 ns)", "clock": 2133000000, "serial": "1031A185", "size": 17179869184}, "bank:2:4": {"slot": "DIMM_F1", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "bank:2:5": {"slot": "DIMM_F2", "product": "NO DIMM", "vendor": "NO DIMM", "description": "DIMM Synchronous [empty]", "serial": "NO DIMM"}, "banks": {"count": 24}}, "disk": {"logical": {"count": 0}}, "cpu": {"physical_0": {"product": "Xeon", "enabled_cores": 12, "vendor": "Intel Corp.", "clock": 100000000, "threads": 24, "flags": "x86-64 fpu fpu_exception wp 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 pbe syscall nx pdpe1gb rdtscp constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat epb pln pts dtherm intel_pt tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdseed adx smap xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local cpufreq", "version": "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz", "frequency": 2200000000, "cores": 12, "physid": 59}, "physical_1": {"product": "Xeon", "enabled_cores": 12, "vendor": "Intel Corp.", "clock": 100000000, "threads": 24, "flags": "x86-64 fpu fpu_exception wp 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 pbe syscall nx pdpe1gb rdtscp constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat epb pln pts dtherm intel_pt tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdseed adx smap xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local cpufreq", "version": "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz", "frequency": 2200000000, "cores": 12, "physid": "5d"}, "logical": {"number": 48}, "physical": {"number": 2}}}, "interfaces": {"ens255f1": {"ip": "192.0.2.151", "mac": "2c:60:0c:ca:78:8f"}}, "cpus": 48, "boot_interface": "2c:60:0c:ca:78:8f", "memory_mb": 131072, "ipmi_address": "10.19.109.203", "inventory": {"bmc_address": "10.19.109.203", "interfaces": [{"lldp": [[1, "0454ab3a5544c7"], [2, "057377703330"], [3, "0078"], [5, "63756d756c7573"], [6, "43756d756c7573204c696e75782076657273696f6e20332e312e312072756e6e696e67206f6e205175616e7461205175616e7461204c59392028314c5939555a5a3030303029"], [7, "00140014"], [8, "05010a136dfa020000000200"], [8, "1102fe8000000000000056ab3afffe5544c7020000000200"], [4, "7377703330"], [127, "00120f030100000000"], [127, "00120f01038401001f"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens255f1", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": "192.0.2.151", "mac_address": "2c:60:0c:ca:78:8f"}, {"lldp": [[1, "040881f4a6e500"], [2, "07353237"], [3, "0078"], [5, "737731352d646973742d6c6162342e626f73"], [6, "4a756e69706572204e6574776f726b732c20496e632e206578343230302d343874202c2076657273696f6e2031322e3352362e36204275696c6420646174653a20323031342d30332d31332030383a33383a33302055544320"], [7, "00140014"], [4, "67652d302f302f31322e30"], [127, "00120f01036c110000"], [127, "00120f030100000000"], [127, "00120f0405ea"], [127, "0080c2010068"], [127, "00906901425030323132343739303637"], [127, "0080c203006807766c616e313034"], [127, "0012bb01000f04"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens255f0", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": null, "mac_address": "2c:60:0c:ca:78:8e"}, {"lldp": [[1, "0454ab3a5544c7"], [2, "057377703131"], [3, "0078"], [5, "63756d756c7573"], [6, "43756d756c7573204c696e75782076657273696f6e20332e312e312072756e6e696e67206f6e205175616e7461205175616e7461204c59392028314c5939555a5a3030303029"], [7, "00140014"], [8, "05010a136dfa020000000200"], [8, "1102fe8000000000000056ab3afffe5544c7020000000200"], [4, "7377703131"], [127, "00120f030100000000"], [127, "00120f01038401001f"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens3f1", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": null, "mac_address": "2c:60:0c:84:31:60"}, {"lldp": [[1, "042c600cad8ab4"], [2, "057377703131"], [3, "0078"], [5, "63756d756c7573"], [6, "43756d756c7573204c696e75782076657273696f6e20332e312e312072756e6e696e67206f6e20496e74656c204d6f686f6e205065616b"], [7, "00140014"], [8, "05010a136dfb020000000200"], [8, "1102fe800000000000002e600cfffead8ab4020000000200"], [4, "7377703131"], [127, "00120f030100000000"], [127, "00120f01038401001f"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens3f0", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": null, "mac_address": "2c:60:0c:84:31:5f"}, {"lldp": [[1, "042c600cad8ab4"], [2, "057377703132"], [3, "0078"], [5, "63756d756c7573"], [6, "43756d756c7573204c696e75782076657273696f6e20332e312e312072756e6e696e67206f6e20496e74656c204d6f686f6e205065616b"], [7, "00140014"], [8, "05010a136dfb020000000200"], [8, "1102fe800000000000002e600cfffead8ab4020000000200"], [4, "7377703132"], [127, "00120f030100000000"], [127, "00120f01038401001f"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens6f1", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": null, "mac_address": "a0:36:9f:53:26:82"}, {"lldp": [[1, "0454ab3a5544c7"], [2, "057377703132"], [3, "0078"], [5, "63756d756c7573"], [6, "43756d756c7573204c696e75782076657273696f6e20332e312e312072756e6e696e67206f6e205175616e7461205175616e7461204c59392028314c5939555a5a3030303029"], [7, "00140014"], [8, "05010a136dfa020000000200"], [8, "1102fe8000000000000056ab3afffe5544c7020000000200"], [4, "7377703132"], [127, "00120f030100000000"], [127, "00120f01038401001f"], [0, ""]], "product": "0x1528", "vendor": "0x8086", "name": "ens6f0", "has_carrier": true, "switch_port_descr": null, "switch_chassis_descr": null, "ipv4_address": null, "mac_address": "a0:36:9f:53:26:80"}], "disks": [{"rotational": false, "vendor": null, "name": "/dev/nvme0n1", "wwn_vendor_extension": null, "wwn_with_extension": null, "model": "INTEL SSDPE2MD400G4", "wwn": null, "serial": "CVFT5434001T400GGN", "size": 400088457216}, {"rotational": false, "vendor": null, "name": "/dev/nvme1n1", "wwn_vendor_extension": null, "wwn_with_extension": null, "model": "INTEL SSDPE2MD400G4", "wwn": null, "serial": "CVFT54020081400GGN", "size": 400088457216}], "boot": {"current_boot_mode": "bios", "pxe_interface": "2c:60:0c:ca:78:8f"}, "system_vendor": {"serial_number": "QTFCJ05320372", "product_name": "D51B-1U (dual 10G LoM)", "manufacturer": "Quanta Computer Inc"}, "memory": {"physical_mb": 131072, "total": 135074320384}, "cpu": {"count": 48, "frequency": "1939.265", "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", "pbe", "syscall", "nx", "pdpe1gb", "rdtscp", "lm", "constant_tsc", "arch_perfmon", "pebs", "bts", "rep_good", "nopl", "xtopology", "nonstop_tsc", "aperfmperf", "eagerfpu", "pni", "pclmulqdq", "dtes64", "monitor", "ds_cpl", "vmx", "smx", "est", "tm2", "ssse3", "fma", "cx16", "xtpr", "pdcm", "pcid", "dca", "sse4_1", "sse4_2", "x2apic", "movbe", "popcnt", "tsc_deadline_timer", "aes", "xsave", "avx", "f16c", "rdrand", "lahf_lm", "abm", "3dnowprefetch", "ida", "arat", "epb", "pln", "pts", "dtherm", "intel_pt", "tpr_shadow", "vnmi", "flexpriority", "ept", "vpid", "fsgsbase", "tsc_adjust", "bmi1", "hle", "avx2", "smep", "bmi2", "erms", "invpcid", "rtm", "cqm", "rdseed", "adx", "smap", "xsaveopt", "cqm_llc", "cqm_occup_llc", "cqm_mbm_total", "cqm_mbm_local"], "model_name": "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz", "architecture": "x86_64"}}, "error": null, "local_gb": 371, "all_interfaces": {"ens6f0": {"ip": null, "mac": "a0:36:9f:53:26:80"}, "ens6f1": {"ip": null, "mac": "a0:36:9f:53:26:82"}, "ens3f1": {"ip": null, "mac": "2c:60:0c:84:31:60"}, "ens3f0": {"ip": null, "mac": "2c:60:0c:84:31:5f"}, "ens255f0": {"ip": null, "mac": "2c:60:0c:ca:78:8e"}, "ens255f1": {"ip": "192.0.2.151", "mac": "2c:60:0c:ca:78:8f"}}}
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: ens255f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 2c:60:0c:ca:78:8e brd ff:ff:ff:ff:ff:ff
inet6 fe80::2e60:cff:feca:788e/64 scope link
valid_lft forever preferred_lft forever
3: ens255f1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 2c:60:0c:ca:78:8f brd ff:ff:ff:ff:ff:ff
inet 192.0.2.151/24 brd 192.0.2.255 scope global dynamic ens255f1
valid_lft 118sec preferred_lft 118sec
inet6 fe80::2e60:cff:feca:788f/64 scope link
valid_lft forever preferred_lft forever
4: ens3f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 2c:60:0c:84:31:5f brd ff:ff:ff:ff:ff:ff
inet6 fe80::2e60:cff:fe84:315f/64 scope link
valid_lft forever preferred_lft forever
5: ens3f1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether 2c:60:0c:84:31:60 brd ff:ff:ff:ff:ff:ff
inet6 fe80::2e60:cff:fe84:3160/64 scope link
valid_lft forever preferred_lft forever
6: ens6f0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether a0:36:9f:53:26:80 brd ff:ff:ff:ff:ff:ff
inet6 fe80::a236:9fff:fe53:2680/64 scope link
valid_lft forever preferred_lft forever
7: ens6f1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP qlen 1000
link/ether a0:36:9f:53:26:82 brd ff:ff:ff:ff:ff:ff
inet6 fe80::a236:9fff:fe53:2682/64 scope link
valid_lft forever preferred_lft forever
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
-- Logs begin at Thu 2016-12-15 15:42:15 EST, end at Thu 2016-12-15 15:43:25 EST. --
Dec 15 15:42:15 localhost.localdomain systemd-journal[367]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 15 15:42:15 localhost.localdomain systemd-journal[367]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys cpuset
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys cpu
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys cpuacct
Dec 15 15:42:15 localhost.localdomain kernel: Linux version 3.10.0-514.2.2.el7.x86_64 (mockbuild@x86-019.build.eng.bos.redhat.com) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC) ) #1 SMP Wed Nov 16 13:15:13 EST 2016
Dec 15 15:42:15 localhost.localdomain kernel: Command line: selinux=0 disk= iscsi_target_iqn= deployment_id= deployment_key= ironic_api_url= troubleshoot=0 text nofb nomodeset vga=normal boot_option= ip=192.0.2.28:192.0.2.1:192.0.2.1:255.255.255.0 BOOTIF=2c:60:0c:ca:aa:56 ipa-api-url=http://192.0.2.1:6385 ipa-driver-name=pxe_ipmitool boot_mode= initrd=deploy_ramdisk coreos.configdrive=0
Dec 15 15:42:15 localhost.localdomain kernel: e820: BIOS-provided physical RAM map:
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000786b3fff] usable
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000786b4000-0x0000000079976fff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000079977000-0x0000000079ed0fff] ACPI NVS
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000079ed1000-0x000000008fffffff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Dec 15 15:42:15 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000100000000-0x000000207fffffff] usable
Dec 15 15:42:15 localhost.localdomain kernel: NX (Execute Disable) protection: active
Dec 15 15:42:15 localhost.localdomain kernel: SMBIOS 3.0 present.
Dec 15 15:42:15 localhost.localdomain kernel: DMI: Quanta Computer Inc D51B-1U (dual 10G LoM)/S2B-MB (dual 10G LoM), BIOS S2B_3B04 02/18/2016
Dec 15 15:42:15 localhost.localdomain kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dec 15 15:42:15 localhost.localdomain kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dec 15 15:42:15 localhost.localdomain kernel: e820: last_pfn = 0x2080000 max_arch_pfn = 0x400000000
Dec 15 15:42:15 localhost.localdomain kernel: MTRR default type: write-back
Dec 15 15:42:15 localhost.localdomain kernel: MTRR fixed ranges enabled:
Dec 15 15:42:15 localhost.localdomain kernel: 00000-9FFFF write-back
Dec 15 15:42:15 localhost.localdomain kernel: A0000-BFFFF uncachable
Dec 15 15:42:15 localhost.localdomain kernel: C0000-FFFFF write-protect
Dec 15 15:42:15 localhost.localdomain kernel: MTRR variable ranges enabled:
Dec 15 15:42:15 localhost.localdomain kernel: 0 base 000080000000 mask 3FFF80000000 uncachable
Dec 15 15:42:15 localhost.localdomain kernel: 1 base 038000000000 mask 3F8000000000 uncachable
Dec 15 15:42:15 localhost.localdomain kernel: 2 base 0000C5C00000 mask 3FFFFFC00000 write-through
Dec 15 15:42:15 localhost.localdomain kernel: 3 base 0000C6000000 mask 3FFFFF800000 write-through
Dec 15 15:42:15 localhost.localdomain kernel: 4 base 0000C6700000 mask 3FFFFFF00000 uncachable
Dec 15 15:42:15 localhost.localdomain kernel: 5 base 0000FB200000 mask 3FFFFFE00000 write-through
Dec 15 15:42:15 localhost.localdomain kernel: 6 base 0000FB400000 mask 3FFFFFE00000 write-through
Dec 15 15:42:15 localhost.localdomain kernel: 7 base 0000FB600000 mask 3FFFFFF00000 write-through
Dec 15 15:42:15 localhost.localdomain kernel: 8 disabled
Dec 15 15:42:15 localhost.localdomain kernel: 9 disabled
Dec 15 15:42:15 localhost.localdomain kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Dec 15 15:42:15 localhost.localdomain kernel: e820: last_pfn = 0x786b4 max_arch_pfn = 0x400000000
Dec 15 15:42:15 localhost.localdomain kernel: found SMP MP-table at [mem 0x000fdcf0-0x000fdcff] mapped at [ffff8800000fdcf0]
Dec 15 15:42:15 localhost.localdomain kernel: Base memory trampoline at [ffff880000085000] 85000 size 24576
Dec 15 15:42:15 localhost.localdomain kernel: Using GB pages for direct mapping
Dec 15 15:42:15 localhost.localdomain kernel: BRK [0x01f9f000, 0x01f9ffff] PGTABLE
Dec 15 15:42:15 localhost.localdomain kernel: BRK [0x01fa0000, 0x01fa0fff] PGTABLE
Dec 15 15:42:15 localhost.localdomain kernel: BRK [0x01fa1000, 0x01fa1fff] PGTABLE
Dec 15 15:42:15 localhost.localdomain kernel: RAMDISK: [mem 0x62911000-0x78614fff]
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: RSDP 00000000000f0580 00024 (v02 ALASKA)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: XSDT 00000000799e70a8 000CC (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: FACP 0000000079a1ada8 0010C (v05 ALASKA A M I 01072009 AMI 00010013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: DSDT 00000000799e7208 33B9A (v02 ALASKA A M I 01072009 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: FACS 0000000079ecff80 00040
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: APIC 0000000079a1aeb8 00304 (v03 ALASKA A M I 01072009 AMI 00010013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: FPDT 0000000079a1b1c0 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: FIDT 0000000079a1b208 0009C (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SPMI 0000000079a1b2a8 00041 (v05 ALASKA A M I 00000000 AMI. 00000000)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: MCFG 0000000079a1b2f0 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: UEFI 0000000079a1b330 00042 (v01 ALASKA A M I 01072009 00000000)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: HPET 0000000079a1b378 00038 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: MSCT 0000000079a1b3b0 00090 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SLIT 0000000079a1b440 00030 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SRAT 0000000079a1b470 01158 (v03 ALASKA A M I 00000001 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: WDDT 0000000079a1c5c8 00040 (v01 ALASKA A M I 00000000 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SSDT 0000000079a1c608 1700F (v02 ALASKA PmMgt 00000002 INTL 20120913)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SSDT 0000000079a33618 02652 (v02 ALASKA SpsNm 00000002 INTL 20120913)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: SSDT 0000000079a35c70 00064 (v02 ALASKA SpsNvs 00000002 INTL 20120913)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PRAD 0000000079a35cd8 00102 (v02 ALASKA A M I 00000002 INTL 20120913)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: DMAR 0000000079a35de0 00110 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: HEST 0000000079a35ef0 000A8 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: BERT 0000000079a35f98 00030 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: ERST 0000000079a35fc8 00230 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: EINJ 0000000079a361f8 00130 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Local APIC address 0xfee00000
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x06 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x08 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x0a -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x10 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x12 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x14 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x16 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x18 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x1a -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x20 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x22 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x24 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x26 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x28 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x2a -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x30 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x32 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x34 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x36 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x38 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x3a -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x07 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x09 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x0b -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x11 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x13 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x15 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x17 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x19 -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x1b -> Node 0
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x21 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x23 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x25 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x27 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x29 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x2b -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x31 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x33 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x35 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x37 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x39 -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x3b -> Node 1
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: Node 0 PXM 0 [mem 0x100000000-0x107fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: SRAT: Node 1 PXM 1 [mem 0x1080000000-0x207fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: NUMA: Initialized distance table, cnt=2
Dec 15 15:42:15 localhost.localdomain kernel: NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x107fffffff] -> [mem 0x00000000-0x107fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: Initmem setup node 0 [mem 0x00000000-0x107fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: NODE_DATA [mem 0x107ffd9000-0x107fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: Initmem setup node 1 [mem 0x1080000000-0x207fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: NODE_DATA [mem 0x207ffd6000-0x207fffcfff]
Dec 15 15:42:15 localhost.localdomain kernel: Zone ranges:
Dec 15 15:42:15 localhost.localdomain kernel: DMA [mem 0x00001000-0x00ffffff]
Dec 15 15:42:15 localhost.localdomain kernel: DMA32 [mem 0x01000000-0xffffffff]
Dec 15 15:42:15 localhost.localdomain kernel: Normal [mem 0x100000000-0x207fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: Movable zone start for each node
Dec 15 15:42:15 localhost.localdomain kernel: Early memory node ranges
Dec 15 15:42:15 localhost.localdomain kernel: node 0: [mem 0x00001000-0x0009afff]
Dec 15 15:42:15 localhost.localdomain kernel: node 0: [mem 0x00100000-0x786b3fff]
Dec 15 15:42:15 localhost.localdomain kernel: node 0: [mem 0x100000000-0x107fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: node 1: [mem 0x1080000000-0x207fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: On node 0 totalpages: 16746062
Dec 15 15:42:15 localhost.localdomain kernel: DMA zone: 64 pages used for memmap
Dec 15 15:42:15 localhost.localdomain kernel: DMA zone: 37 pages reserved
Dec 15 15:42:15 localhost.localdomain kernel: DMA zone: 3994 pages, LIFO batch:0
Dec 15 15:42:15 localhost.localdomain kernel: DMA32 zone: 7643 pages used for memmap
Dec 15 15:42:15 localhost.localdomain kernel: DMA32 zone: 489140 pages, LIFO batch:31
Dec 15 15:42:15 localhost.localdomain kernel: Normal zone: 253952 pages used for memmap
Dec 15 15:42:15 localhost.localdomain kernel: Normal zone: 16252928 pages, LIFO batch:31
Dec 15 15:42:15 localhost.localdomain kernel: On node 1 totalpages: 16777216
Dec 15 15:42:15 localhost.localdomain kernel: Normal zone: 262144 pages used for memmap
Dec 15 15:42:15 localhost.localdomain kernel: Normal zone: 16777216 pages, LIFO batch:31
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PM-Timer IO Port: 0x408
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Local APIC address 0xfee00000
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x10] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x12] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x14] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x16] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x18] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x1a] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x20] lapic_id[0x20] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x22] lapic_id[0x22] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x24] lapic_id[0x24] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x26] lapic_id[0x26] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x28] lapic_id[0x28] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x2a] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x30] lapic_id[0x30] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x32] lapic_id[0x32] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x34] lapic_id[0x34] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x36] lapic_id[0x36] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x38] lapic_id[0x38] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x3a] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x11] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x13] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x15] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x17] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x19] lapic_id[0x19] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x1b] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x21] lapic_id[0x21] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x23] lapic_id[0x23] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x25] lapic_id[0x25] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x27] lapic_id[0x27] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x29] lapic_id[0x29] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x2b] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x31] lapic_id[0x31] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x33] lapic_id[0x33] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x35] lapic_id[0x35] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x37] lapic_id[0x37] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x39] lapic_id[0x39] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x3b] enabled)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Dec 15 15:42:15 localhost.localdomain kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
Dec 15 15:42:15 localhost.localdomain kernel: IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
Dec 15 15:42:15 localhost.localdomain kernel: IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: IRQ0 used by override.
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: IRQ9 used by override.
Dec 15 15:42:15 localhost.localdomain kernel: Using ACPI (MADT) for SMP configuration information
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Allowing 48 CPUs, 0 hotplug CPUs
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x786b4000-0x79976fff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x79977000-0x79ed0fff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x79ed1000-0x8fffffff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xfed45000-0xfeffffff]
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Dec 15 15:42:15 localhost.localdomain kernel: e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
Dec 15 15:42:15 localhost.localdomain kernel: Booting paravirtualized kernel on bare hardware
Dec 15 15:42:15 localhost.localdomain kernel: setup_percpu: NR_CPUS:5120 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
Dec 15 15:42:15 localhost.localdomain kernel: PERCPU: Embedded 33 pages/cpu @ffff88103f800000 s96728 r8192 d30248 u262144
Dec 15 15:42:15 localhost.localdomain kernel: pcpu-alloc: s96728 r8192 d30248 u262144 alloc=1*2097152
Dec 15 15:42:15 localhost.localdomain kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 24 25 26 27
Dec 15 15:42:15 localhost.localdomain kernel: pcpu-alloc: [0] 28 29 30 31 32 33 34 35 [1] 12 13 14 15 16 17 18 19
Dec 15 15:42:15 localhost.localdomain kernel: pcpu-alloc: [1] 20 21 22 23 36 37 38 39 [1] 40 41 42 43 44 45 46 47
Dec 15 15:42:15 localhost.localdomain kernel: Built 2 zonelists in Zone order, mobility grouping on. Total pages: 32999438
Dec 15 15:42:15 localhost.localdomain kernel: Policy zone: Normal
Dec 15 15:42:15 localhost.localdomain kernel: Kernel command line: selinux=0 disk= iscsi_target_iqn= deployment_id= deployment_key= ironic_api_url= troubleshoot=0 text nofb nomodeset vga=normal boot_option= ip=192.0.2.28:192.0.2.1:192.0.2.1:255.255.255.0 BOOTIF=2c:60:0c:ca:aa:56 ipa-api-url=http://192.0.2.1:6385 ipa-driver-name=pxe_ipmitool boot_mode= initrd=deploy_ramdisk coreos.configdrive=0
Dec 15 15:42:15 localhost.localdomain kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
Dec 15 15:42:15 localhost.localdomain kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
Dec 15 15:42:15 localhost.localdomain kernel: Memory: 6252000k/136314880k available (6764k kernel code, 2221768k absent, 2543844k reserved, 4433k data, 1684k init)
Dec 15 15:42:15 localhost.localdomain kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
Dec 15 15:42:15 localhost.localdomain kernel: Hierarchical RCU implementation.
Dec 15 15:42:15 localhost.localdomain kernel: RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=48.
Dec 15 15:42:15 localhost.localdomain kernel: NR_IRQS:327936 nr_irqs:1624 0
Dec 15 15:42:15 localhost.localdomain kernel: Console: colour VGA+ 80x25
Dec 15 15:42:15 localhost.localdomain kernel: console [tty0] enabled
Dec 15 15:42:15 localhost.localdomain kernel: allocated 536870912 bytes of page_cgroup
Dec 15 15:42:15 localhost.localdomain kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Dec 15 15:42:15 localhost.localdomain kernel: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Dec 15 15:42:15 localhost.localdomain kernel: hpet clockevent registered
Dec 15 15:42:15 localhost.localdomain kernel: tsc: Fast TSC calibration using PIT
Dec 15 15:42:15 localhost.localdomain kernel: tsc: Detected 2194.852 MHz processor
Dec 15 15:42:15 localhost.localdomain kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.70 BogoMIPS (lpj=2194852)
Dec 15 15:42:15 localhost.localdomain kernel: pid_max: default: 49152 minimum: 384
Dec 15 15:42:15 localhost.localdomain kernel: Security Framework initialized
Dec 15 15:42:15 localhost.localdomain kernel: SELinux: Disabled at boot.
Dec 15 15:42:15 localhost.localdomain kernel: Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: Mount-cache hash table entries: 4096
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys memory
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys devices
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys freezer
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys net_cls
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys blkio
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys perf_event
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys hugetlb
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys pids
Dec 15 15:42:15 localhost.localdomain kernel: Initializing cgroup subsys net_prio
Dec 15 15:42:15 localhost.localdomain kernel: CPU: Physical Processor ID: 0
Dec 15 15:42:15 localhost.localdomain kernel: CPU: Processor Core ID: 0
Dec 15 15:42:15 localhost.localdomain kernel: mce: CPU supports 22 MCE banks
Dec 15 15:42:15 localhost.localdomain kernel: CPU0: Thermal monitoring enabled (TM1)
Dec 15 15:42:15 localhost.localdomain kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Dec 15 15:42:15 localhost.localdomain kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
Dec 15 15:42:15 localhost.localdomain kernel: tlb_flushall_shift: 6
Dec 15 15:42:15 localhost.localdomain kernel: Freeing SMP alternatives: 28k freed
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Core revision 20130517
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: All ACPI Tables successfully acquired
Dec 15 15:42:15 localhost.localdomain kernel: ftrace: allocating 25812 entries in 101 pages
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Max logical packages: 4
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: APIC(20) Converting physical 1 to logical package 1
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: Host address width 46
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: dmar0: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: DRHD base: 0x000000c7ffc000 flags: 0x1
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: dmar1: reg_base_addr c7ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: RMRR base: 0x0000007bb7c000 end: 0x0000007bb8bfff
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: ATSR flags: 0x0
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
Dec 15 15:42:15 localhost.localdomain kernel: DMAR: RHSA base: 0x000000fbffc000 proximity domain: 0x1
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: IOAPIC id 3 under DRHD base 0xfbffc000 IOMMU 0
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: IOAPIC id 1 under DRHD base 0xc7ffc000 IOMMU 1
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xc7ffc000 IOMMU 1
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: HPET id 0 under DRHD base 0xc7ffc000
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Dec 15 15:42:15 localhost.localdomain kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Dec 15 15:42:15 localhost.localdomain kernel: IRQ remapping doesn't support X2APIC mode, disable x2apic.
Dec 15 15:42:15 localhost.localdomain kernel: Switched APIC routing to physical flat.
Dec 15 15:42:15 localhost.localdomain kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz (fam: 06, model: 4f, stepping: 01)
Dec 15 15:42:15 localhost.localdomain kernel: TSC deadline timer enabled
Dec 15 15:42:15 localhost.localdomain kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Broadwell events, full-width counters, Intel PMU driver.
Dec 15 15:42:15 localhost.localdomain kernel: ... version: 3
Dec 15 15:42:15 localhost.localdomain kernel: ... bit width: 48
Dec 15 15:42:15 localhost.localdomain kernel: ... generic registers: 4
Dec 15 15:42:15 localhost.localdomain kernel: ... value mask: 0000ffffffffffff
Dec 15 15:42:15 localhost.localdomain kernel: ... max period: 0000ffffffffffff
Dec 15 15:42:15 localhost.localdomain kernel: ... fixed-purpose events: 3
Dec 15 15:42:15 localhost.localdomain kernel: ... event mask: 000000070000000f
Dec 15 15:42:15 localhost.localdomain kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 OK
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Booting Node 1, Processors #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 OK
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Booting Node 0, Processors #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35 OK
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Booting Node 1, Processors #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47 OK
Dec 15 15:42:15 localhost.localdomain kernel: Brought up 48 CPUs
Dec 15 15:42:15 localhost.localdomain kernel: smpboot: Total of 48 processors activated (210846.62 BogoMIPS)
Dec 15 15:42:15 localhost.localdomain kernel: node 0 initialised, 15400044 pages in 301ms
Dec 15 15:42:15 localhost.localdomain kernel: node 1 initialised, 15924273 pages in 312ms
Dec 15 15:42:15 localhost.localdomain kernel: devtmpfs: initialized
Dec 15 15:42:15 localhost.localdomain kernel: EVM: security.selinux
Dec 15 15:42:15 localhost.localdomain kernel: EVM: security.ima
Dec 15 15:42:15 localhost.localdomain kernel: EVM: security.capability
Dec 15 15:42:15 localhost.localdomain kernel: PM: Registering ACPI NVS region [mem 0x79977000-0x79ed0fff] (5611520 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
Dec 15 15:42:15 localhost.localdomain kernel: pinctrl core: initialized pinctrl subsystem
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 16
Dec 15 15:42:15 localhost.localdomain kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: bus type PCI registered
Dec 15 15:42:15 localhost.localdomain kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Dec 15 15:42:15 localhost.localdomain kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Dec 15 15:42:15 localhost.localdomain kernel: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
Dec 15 15:42:15 localhost.localdomain kernel: PCI: Using configuration type 1 for base access
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Added _OSI(Module Device)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Added _OSI(Processor Device)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Added _OSI(Processor Aggregator Device)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: EC: Look up EC in DSDT
Dec 15 15:42:15 localhost.localdomain kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Dynamic OEM Table Load:
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PRAD (null) 00102 (v02 ALASKA A M I 00000002 INTL 20120913)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Interpreter enabled
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: (supports S0 S5)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Using IOAPIC for interrupt routing
Dec 15 15:42:15 localhost.localdomain kernel: HEST: Table parsing has been initialized.
Dec 15 15:42:15 localhost.localdomain kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: platform does not support [AER]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:02: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 15 15:42:15 localhost.localdomain kernel: PCI host bridge to bus 0000:ff
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:ff: root bus resource [bus ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:08.0: [8086:6f80] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:08.2: [8086:6f32] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:08.3: [8086:6f83] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:09.0: [8086:6f90] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:09.2: [8086:6f33] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:09.3: [8086:6f93] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0b.0: [8086:6f81] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0b.1: [8086:6f36] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0b.2: [8086:6f37] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0b.3: [8086:6f76] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.0: [8086:6fe0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.1: [8086:6fe1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.2: [8086:6fe2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.3: [8086:6fe3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.4: [8086:6fe4] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.5: [8086:6fe5] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.6: [8086:6fe6] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0c.7: [8086:6fe7] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0d.0: [8086:6fe8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0d.1: [8086:6fe9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0d.2: [8086:6fea] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0d.3: [8086:6feb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.0: [8086:6ff8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.1: [8086:6ff9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.2: [8086:6ffa] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.3: [8086:6ffb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.4: [8086:6ffc] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.5: [8086:6ffd] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:0f.6: [8086:6ffe] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:10.0: [8086:6f1d] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:10.1: [8086:6f34] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:10.5: [8086:6f1e] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:10.6: [8086:6f7d] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:10.7: [8086:6f1f] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.0: [8086:6fa0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.1: [8086:6f30] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.2: [8086:6f70] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.4: [8086:6f60] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.5: [8086:6f38] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:12.6: [8086:6f78] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.0: [8086:6fa8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.1: [8086:6f71] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.2: [8086:6faa] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.3: [8086:6fab] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.6: [8086:6fae] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:13.7: [8086:6faf] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.0: [8086:6fb0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.1: [8086:6fb1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.2: [8086:6fb2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.3: [8086:6fb3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.4: [8086:6fbc] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.5: [8086:6fbd] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.6: [8086:6fbe] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:14.7: [8086:6fbf] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.0: [8086:6f68] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.1: [8086:6f79] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.2: [8086:6f6a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.3: [8086:6f6b] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.6: [8086:6f6e] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:16.7: [8086:6f6f] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.0: [8086:6fd0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.1: [8086:6fd1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.2: [8086:6fd2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.3: [8086:6fd3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.4: [8086:6fb8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.5: [8086:6fb9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.6: [8086:6fba] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:17.7: [8086:6fbb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1e.0: [8086:6f98] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1e.1: [8086:6f99] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1e.2: [8086:6f9a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1e.3: [8086:6fc0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1e.4: [8086:6f9c] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1f.0: [8086:6f88] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:ff:1f.2: [8086:6f8a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: platform does not support [AER]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A03:03: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 15 15:42:15 localhost.localdomain kernel: PCI host bridge to bus 0000:7f
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:7f: root bus resource [bus 7f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:08.0: [8086:6f80] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:08.2: [8086:6f32] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:08.3: [8086:6f83] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:09.0: [8086:6f90] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:09.2: [8086:6f33] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:09.3: [8086:6f93] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0b.0: [8086:6f81] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0b.1: [8086:6f36] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0b.2: [8086:6f37] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0b.3: [8086:6f76] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.0: [8086:6fe0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.1: [8086:6fe1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.2: [8086:6fe2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.3: [8086:6fe3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.4: [8086:6fe4] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.5: [8086:6fe5] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.6: [8086:6fe6] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0c.7: [8086:6fe7] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0d.0: [8086:6fe8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0d.1: [8086:6fe9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0d.2: [8086:6fea] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0d.3: [8086:6feb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.0: [8086:6ff8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.1: [8086:6ff9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.2: [8086:6ffa] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.3: [8086:6ffb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.4: [8086:6ffc] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.5: [8086:6ffd] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:0f.6: [8086:6ffe] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:10.0: [8086:6f1d] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:10.1: [8086:6f34] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:10.5: [8086:6f1e] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:10.6: [8086:6f7d] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:10.7: [8086:6f1f] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.0: [8086:6fa0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.1: [8086:6f30] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.2: [8086:6f70] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.4: [8086:6f60] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.5: [8086:6f38] type 00 class 0x110100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:12.6: [8086:6f78] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.0: [8086:6fa8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.1: [8086:6f71] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.2: [8086:6faa] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.3: [8086:6fab] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.6: [8086:6fae] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:13.7: [8086:6faf] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.0: [8086:6fb0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.1: [8086:6fb1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.2: [8086:6fb2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.3: [8086:6fb3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.4: [8086:6fbc] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.5: [8086:6fbd] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.6: [8086:6fbe] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:14.7: [8086:6fbf] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.0: [8086:6f68] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.1: [8086:6f79] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.2: [8086:6f6a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.3: [8086:6f6b] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.6: [8086:6f6e] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:16.7: [8086:6f6f] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.0: [8086:6fd0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.1: [8086:6fd1] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.2: [8086:6fd2] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.3: [8086:6fd3] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.4: [8086:6fb8] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.5: [8086:6fb9] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.6: [8086:6fba] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:17.7: [8086:6fbb] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1e.0: [8086:6f98] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1e.1: [8086:6f99] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1e.2: [8086:6f9a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1e.3: [8086:6fc0] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1e.4: [8086:6f9c] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1f.0: [8086:6f88] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:7f:1f.2: [8086:6f8a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 15 15:42:15 localhost.localdomain kernel: PCI host bridge to bus 0000:00
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [io 0x1000-0x7fff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffafff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:00.0: [8086:6f00] type 00 class 0x060000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: [8086:6f02] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: [8086:6f04] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: [8086:6f08] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:05.0: [8086:6f28] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:05.1: [8086:6f29] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:05.2: [8086:6f2a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:05.4: [8086:6f2c] type 00 class 0x080020
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:05.4: reg 0x10: [mem 0xc7d19000-0xc7d19fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: [8086:8d62] type 00 class 0x010601
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x10: [io 0x7110-0x7117]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x14: [io 0x7100-0x7103]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x18: [io 0x70f0-0x70f7]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x1c: [io 0x70e0-0x70e3]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x20: [io 0x7020-0x703f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x24: [mem 0xc7d18000-0xc7d187ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:11.4: PME# supported from D3hot
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.0: reg 0x10: [mem 0xc7d17000-0xc7d1700f 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.1: [8086:8d3b] type 00 class 0x078000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.1: reg 0x10: [mem 0xc7d16000-0xc7d1600f 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xc7d14000-0xc7d143ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xc7d13000-0xc7d133ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.0: [8086:8d44] type 00 class 0x060100
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x10: [io 0x7070-0x7077]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x14: [io 0x7060-0x7063]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x18: [io 0x7050-0x7057]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x7040-0x7043]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x20: [io 0x7000-0x701f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xc7d12000-0xc7d127ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.2: PME# supported from D3hot
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xc7d11000-0xc7d110ff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0580-0x059f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.6: [8086:8d24] type 00 class 0x118000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xc7d10000-0xc7d10fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: acpiphp: Slot [255] registered
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x10: [mem 0xc6400000-0xc65fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x18: [io 0x6020-0x603f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x20: [mem 0xc6604000-0xc6607fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x184: [mem 0xc7900000-0xc7903fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: VF(n) BAR0 space: [mem 0xc7900000-0xc79fffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x190: [mem 0xc7800000-0xc7803fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: VF(n) BAR3 space: [mem 0xc7800000-0xc78fffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x10: [mem 0xc6200000-0xc63fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x18: [io 0x6000-0x601f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x20: [mem 0xc6600000-0xc6603fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x184: [mem 0xc7700000-0xc7703fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: VF(n) BAR0 space: [mem 0xc7700000-0xc77fffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x190: [mem 0xc7600000-0xc7603fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: VF(n) BAR3 space: [mem 0xc7600000-0xc76fffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: PCI bridge to [bus 01-02]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [io 0x6000-0x6fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc7600000-0xc79fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: [1000:005d] type 00 class 0x010400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x10: [io 0x5000-0x50ff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x14: [mem 0xc7c00000-0xc7c0ffff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x1c: [mem 0xc7b00000-0xc7bfffff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x30: [mem 0xc7a00000-0xc7afffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: supports D1 D2
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [io 0x5000-0x5fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [mem 0xc7a00000-0xc7cfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x10: [mem 0xc5e00000-0xc5ffffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x18: [io 0x4020-0x403f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x20: [mem 0xc6004000-0xc6007fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x30: [mem 0xc7180000-0xc71fffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x184: [mem 0xc7500000-0xc7503fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: VF(n) BAR0 space: [mem 0xc7500000-0xc75fffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x190: [mem 0xc7400000-0xc7403fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: VF(n) BAR3 space: [mem 0xc7400000-0xc74fffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x10: [mem 0xc5c00000-0xc5dfffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x18: [io 0x4000-0x401f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x20: [mem 0xc6000000-0xc6003fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x30: [mem 0xc7100000-0xc717ffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x184: [mem 0xc7300000-0xc7303fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: VF(n) BAR0 space: [mem 0xc7300000-0xc73fffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x190: [mem 0xc7200000-0xc7203fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: VF(n) BAR3 space: [mem 0xc7200000-0xc72fffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: PCI bridge to [bus 04-05]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [io 0x4000-0x4fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc7100000-0xc75fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: [1a03:1150] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: supports D1 D2
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: PCI bridge to [bus 06-07]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: [1a03:2000] type 00 class 0x030000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x10: [mem 0xc6800000-0xc6ffffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x14: [mem 0xc7000000-0xc701ffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x18: [io 0x3000-0x307f]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: supports D1 D2
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: on NUMA node 0
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: platform does not support [AER]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 15 15:42:15 localhost.localdomain kernel: acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 15 15:42:15 localhost.localdomain kernel: PCI host bridge to bus 0000:80
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [bus 80-fe]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [io 0x8000-0xffff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffbfff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: [8086:6f02] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: [8086:6f03] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: [8086:6f04] type 01 class 0x060400
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: System wakeup disabled by ACPI
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:05.0: [8086:6f28] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:05.1: [8086:6f29] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:05.2: [8086:6f2a] type 00 class 0x088000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:05.4: [8086:6f2c] type 00 class 0x080020
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:81:00.0: [8086:0953] type 00 class 0x010802
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:81:00.0: reg 0x10: [mem 0xfbe10000-0xfbe13fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:81:00.0: reg 0x30: [mem 0xfbe00000-0xfbe0ffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: PCI bridge to [bus 81]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:82:00.0: [8086:0953] type 00 class 0x010802
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:82:00.0: reg 0x10: [mem 0xfbd10000-0xfbd13fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:82:00.0: reg 0x30: [mem 0xfbd00000-0xfbd0ffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: PCI bridge to [bus 82]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xfbd00000-0xfbdfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x10: [mem 0xfb400000-0xfb5fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x20: [mem 0xfb604000-0xfb607fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x30: [mem 0xfb880000-0xfb8fffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: PME# supported from D0 D3hot
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x184: [mem 0xfbc00000-0xfbc03fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: VF(n) BAR0 space: [mem 0xfbc00000-0xfbcfffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x190: [mem 0xfbb00000-0xfbb03fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: VF(n) BAR3 space: [mem 0xfbb00000-0xfbbfffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: [8086:1528] type 00 class 0x020000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x10: [mem 0xfb200000-0xfb3fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x20: [mem 0xfb600000-0xfb603fff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x30: [mem 0xfb800000-0xfb87ffff pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: PME# supported from D0 D3hot
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x184: [mem 0xfba00000-0xfba03fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: VF(n) BAR0 space: [mem 0xfba00000-0xfbafffff 64bit] (contains BAR0 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x190: [mem 0xfb900000-0xfb903fff 64bit]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: VF(n) BAR3 space: [mem 0xfb900000-0xfb9fffff 64bit] (contains BAR3 for 64 VFs)
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: PCI bridge to [bus 83-84]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb800000-0xfbcfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: on NUMA node 1
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Enabled 2 GPEs in block 00 to 3F
Dec 15 15:42:15 localhost.localdomain kernel: vgaarb: device added: PCI:0000:07:00.0,decodes=io+mem,owns=io+mem,locks=none
Dec 15 15:42:15 localhost.localdomain kernel: vgaarb: loaded
Dec 15 15:42:15 localhost.localdomain kernel: vgaarb: bridge control possible 0000:07:00.0
Dec 15 15:42:15 localhost.localdomain kernel: SCSI subsystem initialized
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: bus type USB registered
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new interface driver usbfs
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new interface driver hub
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new device driver usb
Dec 15 15:42:15 localhost.localdomain kernel: PCI: Using ACPI for IRQ routing
Dec 15 15:42:15 localhost.localdomain kernel: PCI: pci_cache_line_size set to 64 bytes
Dec 15 15:42:15 localhost.localdomain kernel: e820: reserve RAM buffer [mem 0x0009b000-0x0009ffff]
Dec 15 15:42:15 localhost.localdomain kernel: e820: reserve RAM buffer [mem 0x786b4000-0x7bffffff]
Dec 15 15:42:15 localhost.localdomain kernel: NetLabel: Initializing
Dec 15 15:42:15 localhost.localdomain kernel: NetLabel: domain hash size = 128
Dec 15 15:42:15 localhost.localdomain kernel: NetLabel: protocols = UNLABELED CIPSOv4
Dec 15 15:42:15 localhost.localdomain kernel: NetLabel: unlabeled traffic allowed by default
Dec 15 15:42:15 localhost.localdomain kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Dec 15 15:42:15 localhost.localdomain kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Dec 15 15:42:15 localhost.localdomain kernel: Switched to clocksource hpet
Dec 15 15:42:15 localhost.localdomain kernel: pnp: PnP ACPI init
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: bus type PNP registered
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0500-0x057f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0400-0x047f] could not be reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0580-0x059f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0600-0x061f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0880-0x0883] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [io 0x0800-0x081f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: [io 0x0a00-0x0a0f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: [io 0x0a10-0x0a1f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: [io 0x0a20-0x0a2f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: [io 0x0a30-0x0a3f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: [io 0x0a40-0x0a4f] has been reserved
Dec 15 15:42:15 localhost.localdomain kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:03: [dma 0 disabled]
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:04: [dma 0 disabled]
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Dec 15 15:42:15 localhost.localdomain kernel: pnp 00:05: Plug and Play ACPI device, IDs IPI0001 (active)
Dec 15 15:42:15 localhost.localdomain kernel: pnp: PnP ACPI: found 6 devices
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: bus type PNP unregistered
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: PCI bridge to [bus 01-02]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [io 0x6000-0x6fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc7600000-0xc79fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [io 0x5000-0x5fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [mem 0xc7a00000-0xc7cfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: PCI bridge to [bus 04-05]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [io 0x4000-0x4fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc7100000-0xc75fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: PCI bridge to [bus 06-07]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: resource 5 [io 0x1000-0x7fff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:00: resource 7 [mem 0x90000000-0xc7ffafff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:01: resource 0 [io 0x6000-0x6fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:01: resource 1 [mem 0xc7600000-0xc79fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:01: resource 2 [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:03: resource 1 [mem 0xc7a00000-0xc7cfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:04: resource 1 [mem 0xc7100000-0xc75fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:04: resource 2 [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:06: resource 0 [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:06: resource 1 [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:07: resource 0 [io 0x3000-0x3fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:07: resource 1 [mem 0xc6800000-0xc70fffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [io 0x1000-0x0fff] to [bus 81] add_size 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [io 0x1000-0x0fff] to [bus 82] add_size 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: BAR 15: assigned [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: BAR 15: assigned [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: BAR 13: assigned [io 0x8000-0x8fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: BAR 13: assigned [io 0x9000-0x9fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: PCI bridge to [bus 81]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [io 0x8000-0x8fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: PCI bridge to [bus 82]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [io 0x9000-0x9fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xfbd00000-0xfbdfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: PCI bridge to [bus 83-84]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb800000-0xfbcfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: resource 4 [io 0x8000-0xffff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffbfff window]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:81: resource 0 [io 0x8000-0x8fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:81: resource 1 [mem 0xfbe00000-0xfbefffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:81: resource 2 [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:82: resource 0 [io 0x9000-0x9fff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:82: resource 1 [mem 0xfbd00000-0xfbdfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:82: resource 2 [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:83: resource 1 [mem 0xfb800000-0xfbcfffff]
Dec 15 15:42:15 localhost.localdomain kernel: pci_bus 0000:83: resource 2 [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 2
Dec 15 15:42:15 localhost.localdomain kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: TCP: Hash tables configured (established 524288 bind 65536)
Dec 15 15:42:15 localhost.localdomain kernel: TCP: reno registered
Dec 15 15:42:15 localhost.localdomain kernel: UDP hash table entries: 65536 (order: 9, 2097152 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 1
Dec 15 15:42:15 localhost.localdomain kernel: PCI: CLS mismatch (64 != 32), using 64 bytes
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: [Firmware Bug]: VPD access disabled
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: Boot video device
Dec 15 15:42:15 localhost.localdomain kernel: Unpacking initramfs...
Dec 15 15:42:15 localhost.localdomain kernel: Freeing initrd memory: 357392k freed
Dec 15 15:42:15 localhost.localdomain kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Dec 15 15:42:15 localhost.localdomain kernel: software IO TLB [mem 0x5e911000-0x62911000] (64MB) mapped at [ffff88005e911000-ffff880062910fff]
Dec 15 15:42:15 localhost.localdomain kernel: Intel CQM monitoring enabled
Dec 15 15:42:15 localhost.localdomain kernel: Intel MBM enabled
Dec 15 15:42:15 localhost.localdomain kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
Dec 15 15:42:15 localhost.localdomain kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Dec 15 15:42:15 localhost.localdomain kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Dec 15 15:42:15 localhost.localdomain kernel: RAPL PMU: hw unit of domain dram 2^-16 Joules
Dec 15 15:42:15 localhost.localdomain kernel: sha1_ssse3: Using AVX2 optimized SHA-1 implementation
Dec 15 15:42:15 localhost.localdomain kernel: sha256_ssse3: Using AVX2 optimized SHA-256 implementation
Dec 15 15:42:15 localhost.localdomain kernel: futex hash table entries: 16384 (order: 8, 1048576 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: Initialise system trusted keyring
Dec 15 15:42:15 localhost.localdomain kernel: audit: initializing netlink socket (disabled)
Dec 15 15:42:15 localhost.localdomain kernel: type=2000 audit(1481834532.788:1): initialized
Dec 15 15:42:15 localhost.localdomain kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Dec 15 15:42:15 localhost.localdomain kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Dec 15 15:42:15 localhost.localdomain kernel: zpool: loaded
Dec 15 15:42:15 localhost.localdomain kernel: zbud: loaded
Dec 15 15:42:15 localhost.localdomain kernel: VFS: Disk quotas dquot_6.5.2
Dec 15 15:42:15 localhost.localdomain kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 15 15:42:15 localhost.localdomain kernel: msgmni has been set to 32768
Dec 15 15:42:15 localhost.localdomain kernel: Key type big_key registered
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 38
Dec 15 15:42:15 localhost.localdomain kernel: Key type asymmetric registered
Dec 15 15:42:15 localhost.localdomain kernel: Asymmetric key parser 'x509' registered
Dec 15 15:42:15 localhost.localdomain kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Dec 15 15:42:15 localhost.localdomain kernel: io scheduler noop registered
Dec 15 15:42:15 localhost.localdomain kernel: io scheduler deadline registered (default)
Dec 15 15:42:15 localhost.localdomain kernel: io scheduler cfq registered
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:02.0: irq 27 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:03.0: irq 29 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:1c.0: irq 30 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:01.0: irq 32 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:01.1: irq 33 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:02.0: irq 35 for MSI/MSI-X
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:04:00.1: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:81:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:82:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.0: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pci 0000:83:00.1: Signaling PME through PCIe PME interrupt
Dec 15 15:42:15 localhost.localdomain kernel: pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
Dec 15 15:42:15 localhost.localdomain kernel: ioapic: probe of 0000:00:05.4 failed with error -22
Dec 15 15:42:15 localhost.localdomain kernel: ioapic: probe of 0000:80:05.4 failed with error -22
Dec 15 15:42:15 localhost.localdomain kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Dec 15 15:42:15 localhost.localdomain kernel: pciehp 0000:80:01.0:pcie04: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- LLActRep+
Dec 15 15:42:15 localhost.localdomain kernel: pciehp 0000:80:01.0:pcie04: service driver pciehp loaded
Dec 15 15:42:15 localhost.localdomain kernel: pciehp 0000:80:01.1:pcie04: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- LLActRep+
Dec 15 15:42:15 localhost.localdomain kernel: pciehp 0000:80:01.1:pcie04: service driver pciehp loaded
Dec 15 15:42:15 localhost.localdomain kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Dec 15 15:42:15 localhost.localdomain kernel: intel_idle: MWAIT substates: 0x2120
Dec 15 15:42:15 localhost.localdomain kernel: intel_idle: v0.4.1 model 0x4F
Dec 15 15:42:15 localhost.localdomain kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Dec 15 15:42:15 localhost.localdomain kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Power Button [PWRB]
Dec 15 15:42:15 localhost.localdomain kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Power Button [PWRF]
Dec 15 15:42:15 localhost.localdomain kernel: ACPI: Requesting acpi_cpufreq
Dec 15 15:42:15 localhost.localdomain kernel: Request for unknown module key 'Red Hat Enterprise Linux kernel signing key: 024834c1c880cbe64486566a7d0555fe8211701e' err -11
Dec 15 15:42:15 localhost.localdomain kernel: acpi_cpufreq: module verification failed: signature and/or required key missing - tainting kernel
Dec 15 15:42:15 localhost.localdomain kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Dec 15 15:42:15 localhost.localdomain kernel: pstore: Registered erst as persistent store backend
Dec 15 15:42:15 localhost.localdomain kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Dec 15 15:42:15 localhost.localdomain kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Dec 15 15:42:15 localhost.localdomain kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Dec 15 15:42:15 localhost.localdomain kernel: 00:04: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Dec 15 15:42:15 localhost.localdomain kernel: Non-volatile memory driver v1.3
Dec 15 15:42:15 localhost.localdomain kernel: Linux agpgart interface v0.103
Dec 15 15:42:15 localhost.localdomain kernel: crash memory driver: version 1.1
Dec 15 15:42:15 localhost.localdomain kernel: rdac: device handler registered
Dec 15 15:42:15 localhost.localdomain kernel: hp_sw: device handler registered
Dec 15 15:42:15 localhost.localdomain kernel: emc: device handler registered
Dec 15 15:42:15 localhost.localdomain kernel: alua: device handler registered
Dec 15 15:42:15 localhost.localdomain kernel: libphy: Fixed MDIO Bus: probed
Dec 15 15:42:15 localhost.localdomain kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci: EHCI PCI platform driver
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: debug port 2
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: irq 18, io mem 0xc7d14000
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Dec 15 15:42:15 localhost.localdomain kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Dec 15 15:42:15 localhost.localdomain kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 15 15:42:15 localhost.localdomain kernel: usb usb1: Product: EHCI Host Controller
Dec 15 15:42:15 localhost.localdomain kernel: usb usb1: Manufacturer: Linux 3.10.0-514.2.2.el7.x86_64 ehci_hcd
Dec 15 15:42:15 localhost.localdomain kernel: usb usb1: SerialNumber: 0000:00:1a.0
Dec 15 15:42:15 localhost.localdomain kernel: hub 1-0:1.0: USB hub found
Dec 15 15:42:15 localhost.localdomain kernel: hub 1-0:1.0: 2 ports detected
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: debug port 2
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: irq 18, io mem 0xc7d13000
Dec 15 15:42:15 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Dec 15 15:42:15 localhost.localdomain kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Dec 15 15:42:15 localhost.localdomain kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 15 15:42:15 localhost.localdomain kernel: usb usb2: Product: EHCI Host Controller
Dec 15 15:42:15 localhost.localdomain kernel: usb usb2: Manufacturer: Linux 3.10.0-514.2.2.el7.x86_64 ehci_hcd
Dec 15 15:42:15 localhost.localdomain kernel: usb usb2: SerialNumber: 0000:00:1d.0
Dec 15 15:42:15 localhost.localdomain kernel: hub 2-0:1.0: USB hub found
Dec 15 15:42:15 localhost.localdomain kernel: hub 2-0:1.0: 2 ports detected
Dec 15 15:42:15 localhost.localdomain kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Dec 15 15:42:15 localhost.localdomain kernel: ohci-pci: OHCI PCI platform driver
Dec 15 15:42:15 localhost.localdomain kernel: uhci_hcd: USB Universal Host Controller Interface driver
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new interface driver usbserial
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new interface driver usbserial_generic
Dec 15 15:42:15 localhost.localdomain kernel: usbserial: USB Serial support registered for generic
Dec 15 15:42:15 localhost.localdomain kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Dec 15 15:42:15 localhost.localdomain kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Dec 15 15:42:15 localhost.localdomain kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Dec 15 15:42:15 localhost.localdomain kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=800a
Dec 15 15:42:15 localhost.localdomain kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 15 15:42:15 localhost.localdomain kernel: hub 1-1:1.0: USB hub found
Dec 15 15:42:15 localhost.localdomain kernel: hub 1-1:1.0: 6 ports detected
Dec 15 15:42:15 localhost.localdomain kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=8002
Dec 15 15:42:15 localhost.localdomain kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 15 15:42:15 localhost.localdomain kernel: hub 2-1:1.0: USB hub found
Dec 15 15:42:15 localhost.localdomain kernel: hub 2-1:1.0: 8 ports detected
Dec 15 15:42:15 localhost.localdomain kernel: tsc: Refined TSC clocksource calibration: 2194.916 MHz
Dec 15 15:42:15 localhost.localdomain kernel: i8042: No controller found
Dec 15 15:42:15 localhost.localdomain kernel: Switched to clocksource tsc
Dec 15 15:42:15 localhost.localdomain kernel: mousedev: PS/2 mouse device common for all mice
Dec 15 15:42:15 localhost.localdomain kernel: rtc_cmos 00:00: RTC can wake from S4
Dec 15 15:42:15 localhost.localdomain kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Dec 15 15:42:15 localhost.localdomain kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Dec 15 15:42:15 localhost.localdomain kernel: Intel P-state driver initializing.
Dec 15 15:42:15 localhost.localdomain kernel: cpuidle: using governor menu
Dec 15 15:42:15 localhost.localdomain kernel: hidraw: raw HID events driver (C) Jiri Kosina
Dec 15 15:42:15 localhost.localdomain kernel: usbcore: registered new interface driver usbhid
Dec 15 15:42:15 localhost.localdomain kernel: usbhid: USB HID core driver
Dec 15 15:42:15 localhost.localdomain kernel: drop_monitor: Initializing network drop monitor service
Dec 15 15:42:15 localhost.localdomain kernel: TCP: cubic registered
Dec 15 15:42:15 localhost.localdomain kernel: Initializing XFRM netlink socket
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 10
Dec 15 15:42:15 localhost.localdomain kernel: NET: Registered protocol family 17
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU0 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU1 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU2 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU3 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU4 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU5 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU6 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU7 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU8 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU9 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU10 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU11 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU12 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU13 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU14 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU15 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU16 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU17 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU18 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU19 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU20 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU21 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU22 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU23 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU24 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU25 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU26 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU27 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU28 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU29 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU30 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU31 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU32 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU33 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU34 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU35 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU36 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU37 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU38 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU39 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU40 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU41 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU42 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU43 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU44 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU45 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU46 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: CPU47 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:15 localhost.localdomain kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Dec 15 15:42:15 localhost.localdomain kernel: Loading compiled-in X.509 certificates
Dec 15 15:42:15 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux Driver Update Program (key 3): bf57f3e87362bc7229d9f465321773dfd1f77a80'
Dec 15 15:42:15 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kpatch signing key: 4d38fd864ebe18c5f0b72e3852e2014c3a676fc8'
Dec 15 15:42:15 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kernel signing key: 024834c1c880cbe64486566a7d0555fe8211701e'
Dec 15 15:42:15 localhost.localdomain kernel: registered taskstats version 1
Dec 15 15:42:15 localhost.localdomain kernel: Key type trusted registered
Dec 15 15:42:15 localhost.localdomain kernel: Key type encrypted registered
Dec 15 15:42:15 localhost.localdomain kernel: IMA: No TPM chip found, activating TPM-bypass!
Dec 15 15:42:15 localhost.localdomain kernel: rtc_cmos 00:00: setting system clock to 2016-12-15 20:42:15 UTC (1481834535)
Dec 15 15:42:15 localhost.localdomain kernel: Freeing unused kernel memory: 1684k freed
Dec 15 15:42:15 localhost.localdomain kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Dec 15 15:42:15 localhost.localdomain systemd[1]: Inserted module 'ip_tables'
Dec 15 15:42:15 localhost.localdomain 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)
Dec 15 15:42:15 localhost.localdomain systemd[1]: Detected architecture x86-64.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Set hostname to <localhost.localdomain>.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Reached target Encrypted Volumes.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Encrypted Volumes.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Created slice Root Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Root Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Created slice System Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting System Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Collect Read-Ahead Data...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Created slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Created slice User and Session Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting User and Session Slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Listening on udev Kernel Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting udev Kernel Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Listening on Delayed Shutdown Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Delayed Shutdown Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Reached target Slices.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Slices.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Listening on udev Control Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting udev Control Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Created slice system-getty.slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting system-getty.slice.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Reached target Swap.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Swap.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Listening on Journal Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Journal Socket.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounting POSIX Message Queue File System...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounting Huge Pages File System...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Journal Service...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounting Debug File System...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Create list of required static device nodes for the current kernel...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounted POSIX Message Queue File System.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounted Debug File System.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounted Huge Pages File System.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Collect Read-Ahead Data.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Create list of required static device nodes for the current kernel.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Create Static Device Nodes in /dev...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounting Configuration File System...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Apply Kernel Variables...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Remount Root and Kernel File Systems...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Setup Virtual Console...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Mounted Configuration File System.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Create Static Device Nodes in /dev.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Apply Kernel Variables.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Remount Root and Kernel File Systems.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Configure read-only root support...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Rebuild Hardware Database...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Load/Save Random Seed...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting udev Kernel Device Manager...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Reached target Local File Systems (Pre).
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Local File Systems (Pre).
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Configure read-only root support.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Load/Save Random Seed.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Reached target Local File Systems.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Local File Systems.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Rebuild Journal Catalog...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Mark the need to relabel after reboot...
Dec 15 15:42:15 localhost.localdomain systemd-journal[367]: Journal started
Dec 15 15:42:15 localhost.localdomain systemd-udevd[393]: starting version 219
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started udev Kernel Device Manager.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Journal Service.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Rebuild Journal Catalog.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Mark the need to relabel after reboot.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Flush Journal to Persistent Storage...
Dec 15 15:42:15 localhost.localdomain systemd-journal[367]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Flush Journal to Persistent Storage.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Create Volatile Files and Directories...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Create Volatile Files and Directories.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Security Auditing Service...
Dec 15 15:42:15 localhost.localdomain auditd[405]: Started dispatcher: /sbin/audispd pid: 409
Dec 15 15:42:15 localhost.localdomain audispd[409]: priority_boost_parser called with: 4
Dec 15 15:42:15 localhost.localdomain audispd[409]: max_restarts_parser called with: 10
Dec 15 15:42:15 localhost.localdomain audispd[409]: No plugins found, exiting
Dec 15 15:42:15 localhost.localdomain kernel: type=1305 audit(1481834535.617:2): audit_pid=405 old=0 auid=4294967295 ses=4294967295 res=1
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Security Auditing Service.
Dec 15 15:42:15 localhost.localdomain auditd[405]: Init complete, auditd 2.6.5 listening for events (startup state enable)
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Update UTMP about System Boot/Shutdown.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Setup Virtual Console.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Rebuild Hardware Database.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting udev Coldplug all Devices...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Update is Completed...
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started Update is Completed.
Dec 15 15:42:15 localhost.localdomain kernel: ipmi message handler version 39.2
Dec 15 15:42:15 localhost.localdomain kernel: FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
Dec 15 15:42:15 localhost.localdomain kernel: IPMI System Interface driver.
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: probing via SMBIOS
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: probing via SPMI
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
Dec 15 15:42:15 localhost.localdomain kernel: ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Dec 15 15:42:15 localhost.localdomain systemd[1]: Started udev Coldplug all Devices.
Dec 15 15:42:15 localhost.localdomain systemd[1]: Starting Show Plymouth Boot Screen...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target System Initialization.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting System Initialization.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Flexible branding.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Flexible branding.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Daily Cleanup of Temporary Directories.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Daily Cleanup of Temporary Directories.
Dec 15 15:42:16 localhost.localdomain kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Timers.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Timers.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Listening on Open-iSCSI iscsid Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Open-iSCSI iscsid Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Listening on D-Bus System Message Bus Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting D-Bus System Message Bus Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Listening on Open-iSCSI iscsiuio Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Open-iSCSI iscsiuio Socket.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Sockets.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Sockets.
Dec 15 15:42:16 localhost.localdomain kernel: dca service started, version 1.12.1
Dec 15 15:42:16 localhost.localdomain kernel: libata version 3.00 loaded.
Dec 15 15:42:16 localhost.localdomain kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Dec 15 15:42:16 localhost.localdomain kernel: mei_me 0000:00:16.0: Device doesn't have valid ME Interface
Dec 15 15:42:16 localhost.localdomain kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 15 15:42:16 localhost.localdomain kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Dec 15 15:42:16 localhost.localdomain kernel: EDAC MC: Ver: 3.0.0
Dec 15 15:42:16 localhost.localdomain kernel: megasas: 06.811.02.00-rh1
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: FW now in Ready state
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 36 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 37 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 38 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 39 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 40 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 41 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 42 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 43 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 44 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 45 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 46 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 47 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 48 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 49 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 50 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 51 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 52 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 53 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 54 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 55 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 56 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 57 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 58 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 59 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 60 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 61 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 62 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 63 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 64 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 65 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 66 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 67 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 68 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 69 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 70 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 71 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 74 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 75 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 76 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 77 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 78 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 79 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 80 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 81 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 82 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 83 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 84 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 85 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: PTP clock support registered
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware supports msix : (96)
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: current msix/online cpus : (48/48)
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: RDPQ mode : (disabled)
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Current firmware maximum commands: 928 LDIO threshold: 0
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:11.4: version 3.0
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:11.4: irq 86 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:11.4: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0xf impl SATA mode
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:11.4: flags: 64bit ncq pm led clo pio slum part ems apst
Dec 15 15:42:16 localhost.localdomain kernel: nvme 0000:81:00.0: irq 87 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 15 15:42:16 localhost.localdomain kernel: nvme 0000:82:00.0: irq 89 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fac
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fad
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6c
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6d
Dec 15 15:42:16 localhost.localdomain kernel: input: PC Speaker as /devices/platform/pcspkr/input/input2
Dec 15 15:42:16 localhost.localdomain kernel: EDAC MC0: Giving out device to 'sbridge_edac.c' 'Broadwell Socket#0': DEV 0000:ff:12.0
Dec 15 15:42:16 localhost.localdomain kernel: EDAC MC1: Giving out device to 'sbridge_edac.c' 'Broadwell Socket#1': DEV 0000:7f:12.0
Dec 15 15:42:16 localhost.localdomain kernel: EDAC sbridge: Ver: 1.1.1
Dec 15 15:42:16 localhost.localdomain kernel: [drm] Initialized drm 1.1.0 20060810
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k-rh7.3
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe: Copyright (c) 1999-2016 Intel Corporation.
Dec 15 15:42:16 localhost.localdomain kernel: pmd_set_huge: Cannot satisfy [mem 0xc6400000-0xc6600000] with a huge-page mapping due to MTRR override.
Dec 15 15:42:16 localhost.localdomain kernel: scsi host1: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host2: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host3: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host4: ahci
Dec 15 15:42:16 localhost.localdomain kernel: ata1: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18100 irq 86
Dec 15 15:42:16 localhost.localdomain kernel: ata2: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18180 irq 86
Dec 15 15:42:16 localhost.localdomain kernel: ata3: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18200 irq 86
Dec 15 15:42:16 localhost.localdomain kernel: ata4: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18280 irq 86
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:1f.2: irq 90 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Dec 15 15:42:16 localhost.localdomain kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
Dec 15 15:42:16 localhost.localdomain systemd[1]: Received SIGRTMIN+20 from PID 514 (plymouthd).
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Show Plymouth Boot Screen.
Dec 15 15:42:16 localhost.localdomain kernel: scsi host5: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host6: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host7: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host8: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host9: ahci
Dec 15 15:42:16 localhost.localdomain kernel: scsi host10: ahci
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Init cmd success
Dec 15 15:42:16 localhost.localdomain kernel: ata5: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12100 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: ata6: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12180 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: ata7: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12200 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: ata8: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12280 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: ata9: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12300 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: power_meter ACPI000D:00: Found ACPI power meter.
Dec 15 15:42:16 localhost.localdomain kernel: power_meter ACPI000D:00: Ignoring unsafe software power cap!
Dec 15 15:42:16 localhost.localdomain kernel: wmi: Mapper loaded
Dec 15 15:42:16 localhost.localdomain kernel: ata10: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12380 irq 90
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware type : Extended VD(240 VD)firmware
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: controller type : MR(1024MB)
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Online Controller Reset(OCR) : Enabled
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Secure JBOD support : Yes
Dec 15 15:42:16 localhost.localdomain kernel: ipmi_si ipmi_si.0: Found new BMC (man_id: 0x001c4c, prod_id: 0x3242, dev_id: 0x20)
Dec 15 15:42:16 localhost.localdomain kernel: ipmi_si ipmi_si.0: IPMI kcs interface initialized
Dec 15 15:42:16 localhost.localdomain kernel: ipmi device interface
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Forward Password Requests to Plymouth Directory Watch.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Paths.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Paths.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Basic System.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Basic System.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Login Service...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Load CPU microcode update...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting OpenSSH Server Key Generation...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Authorization Manager...
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: INIT adapter done
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Jbod map is not supported megasas_setup_jbod_map 5000
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started D-Bus System Message Bus.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU0 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU0 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU1 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: AES CTR mode by8 optimization enabled
Dec 15 15:42:16 localhost.localdomain polkitd[605]: Started polkitd version 0.112
Dec 15 15:42:16 localhost.localdomain dbus-daemon[606]: dbus[606]: [system] Successfully activated service 'org.freedesktop.systemd1'
Dec 15 15:42:16 localhost.localdomain dbus[606]: [system] Successfully activated service 'org.freedesktop.systemd1'
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting D-Bus System Message Bus...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Network Manager...
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: pci id : (0x1000)/(0x005d)/(0x152d)/(0x89cb)
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: unevenspan support : no
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware crash dump : no
Dec 15 15:42:16 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: jbod sync map : no
Dec 15 15:42:16 localhost.localdomain kernel: scsi host0: Avago SAS based MegaRAID driver
Dec 15 15:42:16 localhost.localdomain kernel: scsi 0:0:8:0: Enclosure QUANTA S2B 1U 2.5 1000 PQ: 0 ANSI: 5
Dec 15 15:42:16 localhost.localdomain kernel: alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU1 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU2 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Dump dmesg to /var/log/dmesg...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started irqbalance daemon.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU2 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU3 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU3 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU4 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU4 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU5 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting irqbalance daemon...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting NTP client/server...
Dec 15 15:42:16 localhost.localdomain chronyd[642]: chronyd version 2.1.1 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +DEBUG +ASYNCDNS +IPV6 +SECHASH)
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU5 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU6 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain chronyd[642]: Generated key 1
Dec 15 15:42:16 localhost.localdomain polkitd[605]: Loading rules from directory /etc/polkit-1/rules.d
Dec 15 15:42:16 localhost.localdomain polkitd[605]: Loading rules from directory /usr/share/polkit-1/rules.d
Dec 15 15:42:16 localhost.localdomain polkitd[605]: Finished loading, compiling and executing 2 rules
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU6 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain polkitd[605]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU7 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU7 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Dump dmesg to /var/log/dmesg.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU8 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU8 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.1093] NetworkManager (version 1.4.0-13.el7_3) is starting...
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.1146] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf)
Dec 15 15:42:16 localhost.localdomain smartd[639]: smartd 6.2 2013-07-26 r3841 [x86_64-linux-3.10.0-514.2.2.el7.x86_64] (local build)
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU9 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU9 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU10 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
Dec 15 15:42:16 localhost.localdomain smartd[639]: Opened configuration file /etc/smartmontools/smartd.conf
Dec 15 15:42:16 localhost.localdomain smartd[639]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU10 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU11 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.1211] manager[0x7f694e7080d0]: monitoring kernel firmware directory '/lib/firmware'.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_09], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_09], [HITACHI HUC109030CSS600 A5B0], lu id: 0x5000cca06e44ecf0, S/N: W5H6X38E, 300 GB
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU11 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_09], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_10], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_10], [HITACHI HUC109030CSS600 A5B0], lu id: 0x5000cca06e448e9c, S/N: W5H6PUJE, 300 GB
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.1261] dns-mgr[0x7f694e6e3960]: init: dns=default, rc-manager=file
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU12 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU12 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU13 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU13 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU14 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_10], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_11], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_11], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2c4617, S/N: S47041Y00000K608C5E8, 1.00 TB
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU14 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU15 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU15 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_11], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_12], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_12], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2cb9fb, S/N: S4704EP40000K605AP7S, 1.00 TB
Dec 15 15:42:16 localhost.localdomain dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:42:16 localhost.localdomain dbus-daemon[606]: dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started NTP client/server.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU16 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: iTCO_vendor_support: vendor-support=0
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU16 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: alg: No test for crc32 (crc32-pclmul)
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU17 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU17 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU18 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU18 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU19 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU19 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU20 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU20 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU21 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_12], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_13], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_13], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2bb26f, S/N: S47042KT0000K6105EEP, 1.00 TB
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU21 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU22 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU22 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU23 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU23 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU24 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_13], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU24 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU25 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_14], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_14], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f30cebb, S/N: S4703Y7M0000K6107PX4, 1.00 TB
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU25 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU26 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU26 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_14], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU27 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU27 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU28 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_15], opened
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_15], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2b7d3f, S/N: S47042NT0000K6105EQQ, 1.00 TB
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU28 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Authorization Manager.
Dec 15 15:42:16 localhost.localdomain systemd-logind[602]: Watching system buttons on /dev/input/event1 (Power Button)
Dec 15 15:42:16 localhost.localdomain systemd-logind[602]: Watching system buttons on /dev/input/event0 (Power Button)
Dec 15 15:42:16 localhost.localdomain systemd-logind[602]: New seat seat0.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Network Manager.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU29 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU29 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU30 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU30 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_15], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Login Service.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_16], opened
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_16], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f30d117, S/N: S4703Y6H0000K6106XD8, 1.00 TB
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Network Manager Wait Online...
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU31 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Dec 15 15:42:16 localhost.localdomain kernel: iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU31 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU32 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU32 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU33 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU33 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU34 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain smartd[639]: Device: /dev/bus/0 [megaraid_disk_16], is SMART capable. Adding to "monitor" list.
Dec 15 15:42:16 localhost.localdomain smartd[639]: Monitoring 0 ATA and 8 SCSI devices
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU34 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU35 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU35 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain dbus-daemon[606]: dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:42:16 localhost.localdomain dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2148] settings: loaded plugin ifcfg-rh: (c) 2007 - 2015 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ifcfg-rh.so)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2153] settings: loaded plugin iBFT: (c) 2014 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ibft.so)
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU36 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU36 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU37 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2154] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU37 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain dbus[606]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Dec 15 15:42:16 localhost.localdomain dbus-daemon[606]: dbus[606]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU38 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU38 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU39 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Hostname Service...
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU39 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU40 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU40 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU41 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU41 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU42 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU42 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU43 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU43 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU44 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain dbus-daemon[606]: dbus[606]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dec 15 15:42:16 localhost.localdomain dbus[606]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU44 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU45 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: scsi 0:0:8:0: Attached scsi generic sg0 type 13
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU45 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU46 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU46 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU47 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2587] settings: hostname: using hostnamed
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2588] settings: hostname changed from (none) to "localhost.localdomain"
Dec 15 15:42:16 localhost.localdomain kernel: microcode: CPU47 updated to revision 0xb00001d, date = 2016-06-06
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2593] dhcp-init: Using DHCP client 'dhclient'
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2593] manager: WiFi enabled by radio killswitch; enabled by state file
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2594] manager: WWAN enabled by radio killswitch; enabled by state file
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2594] manager: Networking is enabled by state file
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2595] Loaded device plugin: NMVxlanFactory (internal)
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 91 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 92 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 93 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 94 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 95 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 96 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 97 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 98 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 99 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 100 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 101 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 102 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 103 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 104 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 105 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 106 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 107 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 108 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 109 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 110 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 111 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 112 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 113 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 114 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 115 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 116 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 117 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 118 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 119 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 120 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 121 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 122 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 123 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 124 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 125 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 126 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 127 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 128 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 129 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 130 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 131 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 132 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 133 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 134 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 135 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 136 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 137 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 138 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 139 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: Found RAPL domain package
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: Found RAPL domain dram
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: DRAM domain energy unit 15300pj
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: Found RAPL domain package
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: Found RAPL domain dram
Dec 15 15:42:16 localhost.localdomain kernel: intel_rapl: DRAM domain energy unit 15300pj
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2596] Loaded device plugin: NMVlanFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2596] Loaded device plugin: NMVethFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2596] Loaded device plugin: NMTunFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2596] Loaded device plugin: NMMacvlanFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2597] Loaded device plugin: NMIPTunnelFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2597] Loaded device plugin: NMInfinibandFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2597] Loaded device plugin: NMEthernetFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2598] Loaded device plugin: NMBridgeFactory (internal)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2598] Loaded device plugin: NMBondFactory (internal)
Dec 15 15:42:16 localhost.localdomain nm-dispatcher[677]: req:1 'hostname': new request (4 scripts)
Dec 15 15:42:16 localhost.localdomain nm-dispatcher[677]: req:1 'hostname': start running ordered scripts...
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2645] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/libnm-device-plugin-team.so)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2661] device (lo): link connected
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2689] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.2703] manager: startup complete
Dec 15 15:42:16 localhost.localdomain kernel: ses 0:0:8:0: Attached Enclosure device
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Load CPU microcode update.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Hostname Service.
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Network Manager Wait Online.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting LSB: Bring up/down networking...
Dec 15 15:42:16 localhost.localdomain kernel: ata1: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata3: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata2: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata4: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: 2c:60:0c:ca:aa:55
Dec 15 15:42:16 localhost.localdomain kernel: ata7: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata8: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata10: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata6: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata5: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain kernel: ata9: SATA link down (SStatus 0 SControl 300)
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.4635] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Dec 15 15:42:16 localhost.localdomain sshd-keygen[604]: Generating SSH2 RSA host key: [ OK ]
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:16 localhost.localdomain sshd-keygen[604]: Generating SSH2 ECDSA host key: [ OK ]
Dec 15 15:42:16 localhost.localdomain sshd-keygen[604]: Generating SSH2 ED25519 host key: [ OK ]
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started OpenSSH Server Key Generation.
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 141 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 142 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 143 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 144 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 145 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 146 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 147 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 148 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 149 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 150 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 151 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 152 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 153 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 154 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 155 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 156 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 157 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 158 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 159 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 160 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 161 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 162 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 163 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 164 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 165 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 166 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 167 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 168 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 169 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 170 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 171 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 172 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 173 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 174 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 175 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 176 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 177 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 178 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 179 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 180 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 181 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 182 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 183 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 184 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 185 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 186 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 187 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 188 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 189 for MSI/MSI-X
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: 2c:60:0c:ca:aa:56
Dec 15 15:42:16 localhost.localdomain network[700]: Bringing up loopback interface: [ OK ]
Dec 15 15:42:16 localhost.localdomain NetworkManager[632]: <info> [1481834536.9180] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started LSB: Bring up/down networking.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Network.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Network.
Dec 15 15:42:16 localhost.localdomain kernel: ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting OpenSSH server daemon...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting System Logging Service...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Dynamic System Tuning Daemon...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Logout off all iSCSI sessions on shutdown...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Dynamic Login...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Enable periodic update of entitlement certificates....
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Postfix Mail Transport Agent...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Network is Online.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Network is Online.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Ironic Python Agent.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Ironic Python Agent...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started System Logging Service.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Logout off all iSCSI sessions on shutdown.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Dynamic Login.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Enable periodic update of entitlement certificates..
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Remote File Systems (Pre).
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Remote File Systems (Pre).
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Remote File Systems.
Dec 15 15:42:16 localhost.localdomain sshd[864]: Server listening on 0.0.0.0 port 22.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Remote File Systems.
Dec 15 15:42:16 localhost.localdomain sshd[864]: Server listening on :: port 22.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting LSB: Starts the Spacewalk Daemon...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Crash recovery kernel arming...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Permit User Sessions...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started OpenSSH server daemon.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Permit User Sessions.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Command Scheduler.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Command Scheduler...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Terminate Plymouth Boot Screen...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Wait for Plymouth Boot Screen to Quit...
Dec 15 15:42:16 localhost.localdomain crond[869]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 64% if used.)
Dec 15 15:42:16 localhost.localdomain crond[869]: (CRON) INFO (running with inotify support)
Dec 15 15:42:16 localhost.localdomain rhnsd[865]: Starting Spacewalk Daemon: [ OK ]
Dec 15 15:42:16 localhost.localdomain rhnsd[879]: Spacewalk Services Daemon starting up, check in interval 240 minutes.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started LSB: Starts the Spacewalk Daemon.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Received SIGRTMIN+21 from PID 514 (plymouthd).
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Terminate Plymouth Boot Screen.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Wait for Plymouth Boot Screen to Quit.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Started Getty on tty1.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Getty on tty1...
Dec 15 15:42:16 localhost.localdomain systemd[1]: Reached target Login Prompts.
Dec 15 15:42:16 localhost.localdomain systemd[1]: Starting Login Prompts.
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 190 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 191 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 192 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 193 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 194 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 195 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 196 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 197 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 198 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 199 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 200 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 201 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 202 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 203 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 204 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 205 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 206 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 207 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 208 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 209 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 210 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 211 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 212 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 213 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 214 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 215 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 216 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 217 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 218 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 219 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 220 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 221 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 222 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 223 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 224 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 225 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 226 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 227 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 228 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 229 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 230 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 231 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 232 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 233 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 234 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 235 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 236 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 237 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 238 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: 2c:60:0c:84:31:c5
Dec 15 15:42:17 localhost.localdomain NetworkManager[632]: <info> [1481834537.3737] manager: (eth2): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.0: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:17 localhost.localdomain postfix/postfix-script[1442]: starting the Postfix mail system
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 240 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 241 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 242 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 243 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 244 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 245 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 246 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 247 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 248 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 249 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 250 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 251 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 252 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 253 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 254 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 255 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 256 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 257 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 258 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 259 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 260 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 261 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 262 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 263 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 264 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 265 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 266 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 267 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 268 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 269 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 270 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 271 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 272 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 273 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 274 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 275 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 276 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 277 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 278 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 279 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 280 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 281 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 282 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 283 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 284 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 285 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 286 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 287 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 288 for MSI/MSI-X
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:17 localhost.localdomain postfix/master[1458]: daemon started -- version 2.10.1, configuration /etc/postfix
Dec 15 15:42:17 localhost.localdomain systemd[1]: Started Postfix Mail Transport Agent.
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: 2c:60:0c:84:31:c6
Dec 15 15:42:17 localhost.localdomain NetworkManager[632]: <info> [1481834537.8276] manager: (eth3): new Ethernet device (/org/freedesktop/NetworkManager/Devices/4)
Dec 15 15:42:17 localhost.localdomain kernel: ixgbe 0000:04:00.1: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:18 localhost.localdomain systemd[1]: Started Dynamic System Tuning Daemon.
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 290 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 291 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 292 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 293 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 294 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 295 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 296 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 297 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 298 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 299 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 300 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 301 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 302 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 303 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 304 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 305 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 306 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 307 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 308 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 309 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 310 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 311 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 312 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 313 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 314 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 315 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 316 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 317 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 318 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 319 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 320 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 321 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 322 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 323 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 324 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 325 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 326 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 327 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 328 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 329 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 330 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 331 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 332 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 333 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 334 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 335 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 336 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 337 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 338 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:18 localhost.localdomain systemd[1]: Reached target Multi-User System.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting Multi-User System.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Started Stop Read-Ahead Data Collection 10s After Completed Startup.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting Stop Read-Ahead Data Collection 10s After Completed Startup.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting Update UTMP about System Runlevel Changes...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Started Update UTMP about System Runlevel Changes.
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: MAC: 3, PHY: 0, PBA No: G36748-005
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: a0:36:9f:47:e0:60
Dec 15 15:42:18 localhost.localdomain kdumpctl[866]: Error: /boot/vmlinuz-3.10.0-514.2.2.el7.x86_64 not found.
Dec 15 15:42:18 localhost.localdomain kdumpctl[866]: Starting kdump: [FAILED]
Dec 15 15:42:18 localhost.localdomain systemd[1]: kdump.service: main process exited, code=exited, status=1/FAILURE
Dec 15 15:42:18 localhost.localdomain systemd[1]: Failed to start Crash recovery kernel arming.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Startup finished in 8.004s (kernel) + 2.765s (userspace) = 10.770s.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Unit kdump.service entered failed state.
Dec 15 15:42:18 localhost.localdomain systemd[1]: kdump.service failed.
Dec 15 15:42:18 localhost.localdomain NetworkManager[632]: <info> [1481834538.3548] manager: (eth4): new Ethernet device (/org/freedesktop/NetworkManager/Devices/5)
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.0: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 89 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 339 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 340 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 341 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 342 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 343 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 344 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 345 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 346 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 347 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 348 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 349 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 350 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 351 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 352 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 353 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 354 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 355 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 356 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 357 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 358 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 359 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 360 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 361 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 362 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 363 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 364 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 365 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 366 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 367 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:82:00.0: irq 368 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 369 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 370 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 371 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 372 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 373 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 374 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 375 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 376 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 377 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 378 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 379 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 380 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 381 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 382 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 383 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 384 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 385 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 386 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 387 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 388 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 389 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 390 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 391 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 392 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 393 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 394 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 395 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 396 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 397 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 398 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 399 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 400 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 401 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 402 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 403 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 404 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 405 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 406 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 407 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 408 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 409 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 410 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 411 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 412 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 413 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 414 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 415 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 416 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 417 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: PCI Express bandwidth of 32GT/s available
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 87 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 418 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 419 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 420 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 421 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 422 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 423 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 424 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 425 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 426 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 427 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 428 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 429 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 430 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 431 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 432 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 433 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 434 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 435 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 436 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 437 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 438 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 439 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 440 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 441 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 442 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 443 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 444 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 445 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 446 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: nvme 0000:81:00.0: irq 447 for MSI/MSI-X
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: MAC: 3, PHY: 0, PBA No: G36748-005
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: a0:36:9f:47:e0:62
Dec 15 15:42:18 localhost.localdomain kernel: nvme0n1: p1 p2
Dec 15 15:42:18 localhost.localdomain NetworkManager[632]: <info> [1481834538.8807] manager: (eth5): new Ethernet device (/org/freedesktop/NetworkManager/Devices/6)
Dec 15 15:42:18 localhost.localdomain kernel: ixgbe 0000:83:00.1: Intel(R) 10 Gigabit Network Connection
Dec 15 15:42:18 localhost.localdomain NetworkManager[632]: <info> [1481834538.9038] device (eth1): interface index 3 renamed iface from 'eth1' to 'ens255f1'
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain NetworkManager[632]: <info> [1481834538.9066] device (ens255f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:18 localhost.localdomain systemd[1]: Created slice system-dhcp\x2dinterface.slice.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting system-dhcp\x2dinterface.slice.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens255f1...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens255f0...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens3f0...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens3f1...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens6f0...
Dec 15 15:42:18 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 15 15:42:18 localhost.localdomain systemd[1]: Starting DHCP interface ens6f1...
Dec 15 15:42:19 localhost.localdomain kernel: pps pps0: new PPS source ptp0
Dec 15 15:42:19 localhost.localdomain kernel: ixgbe 0000:01:00.0: registered PHC device on ens255f0
Dec 15 15:42:19 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 15 15:42:19 localhost.localdomain kernel: pps pps1: new PPS source ptp1
Dec 15 15:42:19 localhost.localdomain kernel: ixgbe 0000:01:00.1: registered PHC device on ens255f1
Dec 15 15:42:19 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 15 15:42:19 localhost.localdomain kernel: pps pps2: new PPS source ptp2
Dec 15 15:42:19 localhost.localdomain kernel: ixgbe 0000:04:00.0: registered PHC device on ens3f0
Dec 15 15:42:20 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: /usr/lib/python2.7/site-packages/pecan/__init__.py:122: RuntimeWarning: `static_root` is only used when `debug` is True, ignoring
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: RuntimeWarning
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:20.059 855 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:20.061 855 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:20.061 855 INFO root [-] Hardware manager found: ironic_python_agent.hardware:GenericHardwareManager
Dec 15 15:42:20 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:20.062 855 INFO ironic_python_agent.inspector [-] Inspection is disabled, skipping
Dec 15 15:42:20 localhost.localdomain kernel: pps pps3: new PPS source ptp3
Dec 15 15:42:20 localhost.localdomain kernel: ixgbe 0000:04:00.1: registered PHC device on ens3f1
Dec 15 15:42:20 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 15 15:42:20 localhost.localdomain kernel: pps pps4: new PPS source ptp4
Dec 15 15:42:20 localhost.localdomain kernel: ixgbe 0000:83:00.0: registered PHC device on ens6f0
Dec 15 15:42:20 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 15 15:42:20 localhost.localdomain kernel: pps pps5: new PPS source ptp5
Dec 15 15:42:20 localhost.localdomain kernel: ixgbe 0000:83:00.1: registered PHC device on ens6f1
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0528] device (eth0): interface index 2 renamed iface from 'eth0' to 'ens255f0'
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0530] device (ens255f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0559] device (eth2): interface index 4 renamed iface from 'eth2' to 'ens3f0'
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0560] device (ens3f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0586] device (eth3): interface index 5 renamed iface from 'eth3' to 'ens3f1'
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0588] device (ens3f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0614] device (eth4): interface index 6 renamed iface from 'eth4' to 'ens6f0'
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0616] device (ens6f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0643] device (eth5): interface index 7 renamed iface from 'eth5' to 'ens6f1'
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0644] device (ens6f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0780] device (ens255f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0793] device (ens255f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0804] device (ens3f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0815] device (ens3f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0825] device (ens6f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 15 15:42:21 localhost.localdomain NetworkManager[632]: <info> [1481834541.0836] device (ens6f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 15 15:42:21 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.104 855 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.105 855 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client [-] Lookup failed
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client Traceback (most recent call last):
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 158, in _do_lookup
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client if self.use_ramdisk_api
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 124, in _do_new_lookup
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client params=params)
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 71, in _request
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client **kwargs)
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 475, in request
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client resp = self.send(prep, **send_kwargs)
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 585, in send
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client r = adapter.send(request, **kwargs)
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 467, in send
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client raise ConnectionError(e, request=request)
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client ConnectionError: HTTPConnectionPool(host='192.0.2.1', port=6385): Max retries exceeded with url: /v1/lookup?addresses=2c%3A60%3A0c%3Aca%3Aaa%3A56%2C2c%3A60%3A0c%3Aca%3Aaa%3A55%2C2c%3A60%3A0c%3A84%3A31%3Ac6%2C2c%3A60%3A0c%3A84%3A31%3Ac5%2Ca0%3A36%3A9f%3A47%3Ae0%3A62%2Ca0%3A36%3A9f%3A47%3Ae0%3A60 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x1d73490>: Failed to establish a new connection: [Errno 101] Network is unreachable',))
Dec 15 15:42:21 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:21.296 855 ERROR ironic_python_agent.ironic_api_client
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client [-] Lookup failed
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client Traceback (most recent call last):
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 158, in _do_lookup
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client if self.use_ramdisk_api
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 124, in _do_new_lookup
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client params=params)
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 71, in _request
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client **kwargs)
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 475, in request
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client resp = self.send(prep, **send_kwargs)
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 585, in send
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client r = adapter.send(request, **kwargs)
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 467, in send
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client raise ConnectionError(e, request=request)
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client ConnectionError: HTTPConnectionPool(host='192.0.2.1', port=6385): Max retries exceeded with url: /v1/lookup?addresses=2c%3A60%3A0c%3Aca%3Aaa%3A56%2C2c%3A60%3A0c%3Aca%3Aaa%3A55%2C2c%3A60%3A0c%3A84%3A31%3Ac6%2C2c%3A60%3A0c%3A84%3A31%3Ac5%2Ca0%3A36%3A9f%3A47%3Ae0%3A62%2Ca0%3A36%3A9f%3A47%3Ae0%3A60 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x1d73450>: Failed to establish a new connection: [Errno 101] Network is unreachable',))
Dec 15 15:42:22 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:22.697 855 ERROR ironic_python_agent.ironic_api_client
Dec 15 15:42:22 localhost.localdomain kernel: ixgbe 0000:01:00.0 ens255f0: NIC Link is Up 1 Gbps, Flow Control: RX/TX
Dec 15 15:42:22 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens255f0: link becomes ready
Dec 15 15:42:22 localhost.localdomain NetworkManager[632]: <info> [1481834542.7840] device (ens255f0): link connected
Dec 15 15:42:23 localhost.localdomain dhcp-all-interfaces.sh[2210]: Inspecting interface: ens255f0...Configured ens255f0
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5073] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens255f0 (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28,"System ens255f0")
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5086] policy: auto-activating connection 'System ens255f0'
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5109] device (ens255f0): Activation: starting connection 'System ens255f0' (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28)
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5113] device (ens255f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5115] manager: NetworkManager state is now CONNECTING
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5124] device (ens255f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5142] device (ens255f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5155] dhcp4 (ens255f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:23 localhost.localdomain NetworkManager[632]: <info> [1481834543.5177] dhcp4 (ens255f0): dhclient started with pid 2358
Dec 15 15:42:23 localhost.localdomain dhclient[2358]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 5 (xid=0xdc99ef8)
Dec 15 15:42:23 localhost.localdomain systemd[1]: Started DHCP interface ens255f0.
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client [-] Lookup failed
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client Traceback (most recent call last):
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 158, in _do_lookup
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client if self.use_ramdisk_api
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 124, in _do_new_lookup
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client params=params)
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 71, in _request
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client **kwargs)
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 475, in request
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client resp = self.send(prep, **send_kwargs)
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 585, in send
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client r = adapter.send(request, **kwargs)
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 467, in send
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client raise ConnectionError(e, request=request)
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client ConnectionError: HTTPConnectionPool(host='192.0.2.1', port=6385): Max retries exceeded with url: /v1/lookup?addresses=2c%3A60%3A0c%3Aca%3Aaa%3A56%2C2c%3A60%3A0c%3Aca%3Aaa%3A55%2C2c%3A60%3A0c%3A84%3A31%3Ac6%2C2c%3A60%3A0c%3A84%3A31%3Ac5%2Ca0%3A36%3A9f%3A47%3Ae0%3A62%2Ca0%3A36%3A9f%3A47%3Ae0%3A60 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x1d73450>: Failed to establish a new connection: [Errno 101] Network is unreachable',))
Dec 15 15:42:24 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:24.653 855 ERROR ironic_python_agent.ironic_api_client
Dec 15 15:42:26 localhost.localdomain kernel: ixgbe 0000:04:00.1 ens3f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 15 15:42:26 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens3f1: link becomes ready
Dec 15 15:42:26 localhost.localdomain NetworkManager[632]: <info> [1481834546.8549] device (ens3f1): link connected
Dec 15 15:42:26 localhost.localdomain kernel: ixgbe 0000:83:00.0 ens6f0: NIC Link is Up 10 Gbps, Flow Control: None
Dec 15 15:42:26 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens6f0: link becomes ready
Dec 15 15:42:26 localhost.localdomain NetworkManager[632]: <info> [1481834546.8799] device (ens6f0): link connected
Dec 15 15:42:27 localhost.localdomain kernel: ixgbe 0000:83:00.1 ens6f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 15 15:42:27 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens6f1: link becomes ready
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.2562] device (ens6f1): link connected
Dec 15 15:42:27 localhost.localdomain dhcp-all-interfaces.sh[2243]: Inspecting interface: ens3f1...Configured ens3f1
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5681] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens3f1 (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86,"System ens3f1")
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5695] policy: auto-activating connection 'System ens3f1'
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5712] device (ens3f1): Activation: starting connection 'System ens3f1' (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86)
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5715] device (ens3f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5723] device (ens3f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5735] device (ens3f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5741] dhcp4 (ens3f1): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.5763] dhcp4 (ens3f1): dhclient started with pid 2447
Dec 15 15:42:27 localhost.localdomain dhclient[2447]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 6 (xid=0x6251989d)
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client [-] Lookup failed
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client Traceback (most recent call last):
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 158, in _do_lookup
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client if self.use_ramdisk_api
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 124, in _do_new_lookup
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client params=params)
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 71, in _request
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client **kwargs)
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 475, in request
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client resp = self.send(prep, **send_kwargs)
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 585, in send
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client r = adapter.send(request, **kwargs)
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 467, in send
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client raise ConnectionError(e, request=request)
Dec 15 15:42:27 localhost.localdomain systemd[1]: Started DHCP interface ens3f1.
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client ConnectionError: HTTPConnectionPool(host='192.0.2.1', port=6385): Max retries exceeded with url: /v1/lookup?addresses=2c%3A60%3A0c%3Aca%3Aaa%3A56%2C2c%3A60%3A0c%3Aca%3Aaa%3A55%2C2c%3A60%3A0c%3A84%3A31%3Ac6%2C2c%3A60%3A0c%3A84%3A31%3Ac5%2Ca0%3A36%3A9f%3A47%3Ae0%3A62%2Ca0%3A36%3A9f%3A47%3Ae0%3A60 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x1d73450>: Failed to establish a new connection: [Errno 101] Network is unreachable',))
Dec 15 15:42:27 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:27.672 855 ERROR ironic_python_agent.ironic_api_client
Dec 15 15:42:27 localhost.localdomain dhcp-all-interfaces.sh[2247]: Inspecting interface: ens6f0...Configured ens6f0
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9587] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens6f0 (35620381-6232-4966-541e-dfdfa039f804,"System ens6f0")
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9601] policy: auto-activating connection 'System ens6f0'
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9618] device (ens6f0): Activation: starting connection 'System ens6f0' (35620381-6232-4966-541e-dfdfa039f804)
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9622] device (ens6f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9630] device (ens6f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9642] device (ens6f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9648] dhcp4 (ens6f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:27 localhost.localdomain NetworkManager[632]: <info> [1481834547.9671] dhcp4 (ens6f0): dhclient started with pid 2476
Dec 15 15:42:28 localhost.localdomain dhclient[2476]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 6 (xid=0x2e9f4af9)
Dec 15 15:42:28 localhost.localdomain dhcp-all-interfaces.sh[2251]: Inspecting interface: ens6f1...Configured ens6f1
Dec 15 15:42:28 localhost.localdomain systemd[1]: Started DHCP interface ens6f0.
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3180] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens6f1 (6c01aac9-fcbb-f202-48fc-82146b96bce2,"System ens6f1")
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3195] policy: auto-activating connection 'System ens6f1'
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3212] device (ens6f1): Activation: starting connection 'System ens6f1' (6c01aac9-fcbb-f202-48fc-82146b96bce2)
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3215] device (ens6f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3223] device (ens6f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3235] device (ens6f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3241] dhcp4 (ens6f1): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:28 localhost.localdomain NetworkManager[632]: <info> [1481834548.3263] dhcp4 (ens6f1): dhclient started with pid 2507
Dec 15 15:42:28 localhost.localdomain dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 3 (xid=0x2185e3b9)
Dec 15 15:42:28 localhost.localdomain systemd[1]: Started DHCP interface ens6f1.
Dec 15 15:42:28 localhost.localdomain dhclient[2358]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 12 (xid=0xdc99ef8)
Dec 15 15:42:29 localhost.localdomain kernel: ixgbe 0000:04:00.0 ens3f0: NIC Link is Up 10 Gbps, Flow Control: None
Dec 15 15:42:29 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens3f0: link becomes ready
Dec 15 15:42:29 localhost.localdomain NetworkManager[632]: <info> [1481834549.5123] device (ens3f0): link connected
Dec 15 15:42:30 localhost.localdomain dhcp-all-interfaces.sh[2228]: Inspecting interface: ens3f0...Configured ens3f0
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2878] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens3f0 (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1,"System ens3f0")
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2892] policy: auto-activating connection 'System ens3f0'
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2908] device (ens3f0): Activation: starting connection 'System ens3f0' (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1)
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2912] device (ens3f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2920] device (ens3f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2932] device (ens3f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2938] dhcp4 (ens3f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:30 localhost.localdomain NetworkManager[632]: <info> [1481834550.2960] dhcp4 (ens3f0): dhclient started with pid 2545
Dec 15 15:42:30 localhost.localdomain dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 3 (xid=0x456b5b41)
Dec 15 15:42:30 localhost.localdomain systemd[1]: Started DHCP interface ens3f0.
Dec 15 15:42:31 localhost.localdomain dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 4 (xid=0x2185e3b9)
Dec 15 15:42:31 localhost.localdomain kernel: ixgbe 0000:01:00.1 ens255f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 15 15:42:31 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens255f1: link becomes ready
Dec 15 15:42:31 localhost.localdomain NetworkManager[632]: <info> [1481834551.8769] device (ens255f1): link connected
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client [-] Lookup failed
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client Traceback (most recent call last):
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 158, in _do_lookup
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client if self.use_ramdisk_api
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 124, in _do_new_lookup
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client params=params)
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/ironic_python_agent/ironic_api_client.py", line 71, in _request
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client **kwargs)
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 475, in request
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client resp = self.send(prep, **send_kwargs)
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/sessions.py", line 585, in send
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client r = adapter.send(request, **kwargs)
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client File "/usr/lib/python2.7/site-packages/requests/adapters.py", line 467, in send
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client raise ConnectionError(e, request=request)
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client ConnectionError: HTTPConnectionPool(host='192.0.2.1', port=6385): Max retries exceeded with url: /v1/lookup?addresses=2c%3A60%3A0c%3Aca%3Aaa%3A56%2C2c%3A60%3A0c%3Aca%3Aaa%3A55%2C2c%3A60%3A0c%3A84%3A31%3Ac6%2C2c%3A60%3A0c%3A84%3A31%3Ac5%2Ca0%3A36%3A9f%3A47%3Ae0%3A62%2Ca0%3A36%3A9f%3A47%3Ae0%3A60 (Caused by NewConnectionError('<requests.packages.urllib3.connection.HTTPConnection object at 0x1d73450>: Failed to establish a new connection: [Errno 101] Network is unreachable',))
Dec 15 15:42:32 localhost.localdomain ironic-python-agent[855]: 2016-12-15 15:42:32.567 855 ERROR ironic_python_agent.ironic_api_client
Dec 15 15:42:32 localhost.localdomain dhcp-all-interfaces.sh[2207]: Inspecting interface: ens255f1...Configured ens255f1
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9785] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens255f1 (22db92a1-3453-1bc2-c0ec-1e82dc411b63,"System ens255f1")
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9798] policy: auto-activating connection 'System ens255f1'
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9814] device (ens255f1): Activation: starting connection 'System ens255f1' (22db92a1-3453-1bc2-c0ec-1e82dc411b63)
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9818] device (ens255f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9825] device (ens255f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9840] device (ens255f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9846] dhcp4 (ens255f1): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:42:32 localhost.localdomain NetworkManager[632]: <info> [1481834552.9868] dhcp4 (ens255f1): dhclient started with pid 2579
Dec 15 15:42:33 localhost.localdomain dhclient[2579]: DHCPDISCOVER on ens255f1 to 255.255.255.255 port 67 interval 3 (xid=0xdf722ee)
Dec 15 15:42:33 localhost.localdomain systemd[1]: Started DHCP interface ens255f1.
Dec 15 15:42:33 localhost.localdomain systemd[1]: Reached target Network (Pre).
Dec 15 15:42:33 localhost.localdomain systemd[1]: Starting Network (Pre).
Dec 15 15:42:33 localhost.localdomain dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 3 (xid=0x456b5b41)
Dec 15 15:42:33 localhost.localdomain dhclient[2447]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 21 (xid=0x6251989d)
Dec 15 15:42:34 localhost.localdomain dhclient[2476]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 15 (xid=0x2e9f4af9)
Dec 15 15:42:35 localhost.localdomain dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 6 (xid=0x2185e3b9)
Dec 15 15:42:36 localhost.localdomain dhclient[2579]: DHCPDISCOVER on ens255f1 to 255.255.255.255 port 67 interval 6 (xid=0xdf722ee)
Dec 15 15:42:36 localhost.localdomain dhclient[2579]: DHCPREQUEST on ens255f1 to 255.255.255.255 port 67 (xid=0xdf722ee)
Dec 15 15:42:36 localhost.localdomain dhclient[2579]: DHCPOFFER from 192.0.2.20
Dec 15 15:42:36 localhost.localdomain dhclient[2579]: DHCPACK from 192.0.2.20 (xid=0xdf722ee)
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5908] dhcp4 (ens255f1): address 192.0.2.28
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5908] dhcp4 (ens255f1): plen 24 (255.255.255.0)
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5909] dhcp4 (ens255f1): gateway 192.0.2.1
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5909] dhcp4 (ens255f1): server identifier 192.0.2.20
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5909] dhcp4 (ens255f1): lease time 86400
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5909] dhcp4 (ens255f1): hostname 'host-192-0-2-28'
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5910] dhcp4 (ens255f1): nameserver '10.19.109.254'
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5910] dhcp4 (ens255f1): domain name 'openstacklocal'
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5910] dhcp4 (ens255f1): state changed unknown -> bound
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5928] device (ens255f1): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Dec 15 15:42:36 localhost.localdomain dhclient[2579]: bound to 192.0.2.28 -- renewal in 34893 seconds.
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5941] device (ens255f1): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5946] device (ens255f1): state change: secondaries -> activated (reason 'none') [90 100 0]
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5953] policy: set 'System ens255f1' (ens255f1) as default for IPv4 routing and DNS
Dec 15 15:42:36 localhost.localdomain NetworkManager[632]: <info> [1481834556.5955] policy: setting system hostname to 'host-192-0-2-28' (from DHCPv4)
Dec 15 15:42:36 host-192-0-2-28 systemd-hostnamed[685]: Changed host name to 'host-192-0-2-28'
Dec 15 15:42:36 host-192-0-2-28 NetworkManager[632]: <info> [1481834556.5980] device (ens255f1): Activation: successful, device activated.
Dec 15 15:42:36 host-192-0-2-28 dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:42:36 host-192-0-2-28 dbus-daemon[606]: dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:42:36 host-192-0-2-28 systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 15 15:42:36 host-192-0-2-28 dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:42:36 host-192-0-2-28 dbus-daemon[606]: dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:42:36 host-192-0-2-28 systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 15 15:42:36 host-192-0-2-28 nm-dispatcher[2597]: req:1 'up' [ens255f1]: new request (4 scripts)
Dec 15 15:42:36 host-192-0-2-28 nm-dispatcher[2597]: req:1 'up' [ens255f1]: start running ordered scripts...
Dec 15 15:42:36 host-192-0-2-28 nm-dispatcher[2597]: req:2 'hostname': new request (4 scripts)
Dec 15 15:42:36 host-192-0-2-28 systemd[1]: Unit iscsi.service cannot be reloaded because it is inactive.
Dec 15 15:42:36 host-192-0-2-28 nm-dispatcher[2597]: req:2 'hostname': start running ordered scripts...
Dec 15 15:42:36 host-192-0-2-28 dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 6 (xid=0x456b5b41)
Dec 15 15:42:40 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:40.803 855 INFO ironic_python_agent.agent [-] Lookup succeeded, node UUID is 7364397c-974e-40f1-8a32-83a0f4ef3853
Dec 15 15:42:40 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:40.812 855 INFO ironic_python_agent.agent [-] starting heartbeater
Dec 15 15:42:40 host-192-0-2-28 dhclient[2358]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 18 (xid=0xdc99ef8)
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.008 855 INFO ironic_python_agent.agent [-] heartbeat successful
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.009 855 INFO ironic_python_agent.agent [-] sleeping before next heartbeat, interval: 139.198612357
Dec 15 15:42:41 host-192-0-2-28 dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 8 (xid=0x2185e3b9)
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.232 855 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.234 855 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.255 855 INFO ironic_lib.disk_utils [-] Disk metadata on /dev/nvme0n1 successfully destroyed for node 7364397c-974e-40f1-8a32-83a0f4ef3853
Dec 15 15:42:41 host-192-0-2-28 kernel: Rounding down aligned max_sectors from 4294967295 to 4294967288
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.334 855 INFO ironic_python_agent.extensions.iscsi [-] Created iSCSI target with iqn iqn.2008-10.org.openstack:7364397c-974e-40f1-8a32-83a0f4ef3853, portal port 3260, on device /dev/nvme0n1 using linux-io
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:42:41.334 855 INFO root [-] Command iscsi.start_iscsi_target completed: Command name: start_iscsi_target, params: {u'iqn': u'iqn.2008-10.org.openstack:7364397c-974e-40f1-8a32-83a0f4ef3853', u'wipe_disk_metadata': True}, status: SUCCEEDED, result: {'iscsi_target_iqn': u'iqn.2008-10.org.openstack:7364397c-974e-40f1-8a32-83a0f4ef3853'}.
Dec 15 15:42:41 host-192-0-2-28 ironic-python-agent[855]: 192.0.2.1 - - [15/Dec/2016 15:42:41] "POST /v1/commands?wait=true HTTP/1.1" 200 365
Dec 15 15:42:42 host-192-0-2-28 dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 8 (xid=0x456b5b41)
Dec 15 15:42:49 host-192-0-2-28 systemd[1]: Starting Stop Read-Ahead Data Collection...
Dec 15 15:42:49 host-192-0-2-28 systemd[1]: Started Stop Read-Ahead Data Collection.
Dec 15 15:42:49 host-192-0-2-28 dhclient[2476]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 10 (xid=0x2e9f4af9)
Dec 15 15:42:49 host-192-0-2-28 dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 13 (xid=0x2185e3b9)
Dec 15 15:42:50 host-192-0-2-28 dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 14 (xid=0x456b5b41)
Dec 15 15:42:54 host-192-0-2-28 dhclient[2447]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 7 (xid=0x6251989d)
Dec 15 15:42:58 host-192-0-2-28 dhclient[2358]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 11 (xid=0xdc99ef8)
Dec 15 15:42:59 host-192-0-2-28 dhclient[2476]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 20 (xid=0x2e9f4af9)
Dec 15 15:43:01 host-192-0-2-28 dhclient[2447]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 9 (xid=0x6251989d)
Dec 15 15:43:02 host-192-0-2-28 dhclient[2507]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 14 (xid=0x2185e3b9)
Dec 15 15:43:04 host-192-0-2-28 dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 11 (xid=0x456b5b41)
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <warn> [1481834588.5018] dhcp4 (ens255f0): request timed out
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5019] dhcp4 (ens255f0): state changed unknown -> timeout
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5180] dhcp4 (ens255f0): canceled DHCP transaction, DHCP client pid 2358
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5180] dhcp4 (ens255f0): state changed timeout -> done
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5182] device (ens255f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <warn> [1481834588.5188] device (ens255f0): Activation: failed for connection 'System ens255f0'
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5192] device (ens255f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5231] policy: auto-activating connection 'System ens255f0'
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5240] device (ens255f0): Activation: starting connection 'System ens255f0' (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28)
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5241] device (ens255f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5245] device (ens255f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5255] device (ens255f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5257] dhcp4 (ens255f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:43:08 host-192-0-2-28 NetworkManager[632]: <info> [1481834588.5268] dhcp4 (ens255f0): dhclient started with pid 2676
Dec 15 15:43:08 host-192-0-2-28 dhclient[2676]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 6 (xid=0x2484ea5c)
Dec 15 15:43:09 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:43:09.553 855 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 15 15:43:09 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:43:09.554 855 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 15 15:43:09 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:43:09.555 855 INFO ironic_python_agent.extensions.iscsi [-] Deleting iSCSI target iqn.2008-10.org.openstack:7364397c-974e-40f1-8a32-83a0f4ef3853 for device /dev/nvme0n1.
Dec 15 15:43:09 host-192-0-2-28 kernel: SGI XFS with ACLs, security attributes, no debug enabled
Dec 15 15:43:09 host-192-0-2-28 kernel: XFS (nvme0n1p2): Mounting V5 Filesystem
Dec 15 15:43:09 host-192-0-2-28 kernel: XFS (nvme0n1p2): Ending clean mount
Dec 15 15:43:09 host-192-0-2-28 kernel: device-mapper: uevent: version 1.0.3
Dec 15 15:43:09 host-192-0-2-28 kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Dec 15 15:43:10 host-192-0-2-28 kernel: xor: automatically using best checksumming function:
Dec 15 15:43:10 host-192-0-2-28 kernel: avx : 25160.000 MB/sec
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: sse2x1 gen() 8136 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: sse2x2 gen() 10023 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: sse2x4 gen() 11695 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: avx2x1 gen() 15824 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: avx2x2 gen() 18417 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: avx2x4 gen() 21070 MB/s
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: using algorithm avx2x4 gen() (21070 MB/s)
Dec 15 15:43:10 host-192-0-2-28 kernel: raid6: using avx2x2 recovery algorithm
Dec 15 15:43:10 host-192-0-2-28 kernel: Btrfs loaded
Dec 15 15:43:10 host-192-0-2-28 kernel: fuse init (API version 7.22)
Dec 15 15:43:10 host-192-0-2-28 systemd[1]: Mounting FUSE Control File System...
Dec 15 15:43:10 host-192-0-2-28 systemd[1]: Mounted FUSE Control File System.
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: os-prober: debug: running /usr/libexec/os-probes/50mounted-tests on /dev/nvme0n1p1
Dec 15 15:43:10 host-192-0-2-28 kernel: ISO 9660 Extensions: Microsoft Joliet Level 3
Dec 15 15:43:10 host-192-0-2-28 kernel: ISO 9660 Extensions: RRIP_1991A
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: mounted as iso9660 filesystem
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/05efi
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 05efi: debug: Not on UEFI platform
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/10freedos
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 10freedos: debug: /dev/nvme0n1p1 is not a FAT partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/10qnx
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 10qnx: debug: /dev/nvme0n1p1 is not a QNX4 partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/20macosx
Dec 15 15:43:10 host-192-0-2-28 macosx-prober[3121]: debug: /dev/nvme0n1p1 is not an HFS+ partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/20microsoft
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 20microsoft: debug: /dev/nvme0n1p1 is not a MS partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/30utility
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 30utility: debug: /dev/nvme0n1p1 is not a FAT partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/40lsb
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/70hurd
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/80minix
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/83haiku
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 83haiku: debug: /dev/nvme0n1p1 is not a BeFS partition: exiting
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/90linux-distro
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/90solaris
Dec 15 15:43:10 host-192-0-2-28 logger[3082]: 50mounted-tests: debug: running subtest /usr/libexec/os-probes/mounted/efi
Dec 15 15:43:10 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:43:10.614 855 INFO ironic_python_agent.extensions.image [-] GRUB2 successfully installed on /dev/nvme0n1
Dec 15 15:43:10 host-192-0-2-28 kernel: XFS (nvme0n1p2): Unmounting Filesystem
Dec 15 15:43:10 host-192-0-2-28 ironic-python-agent[855]: 2016-12-15 15:43:10.642 855 INFO root [-] Command image.install_bootloader completed: Command name: install_bootloader, params: {u'efi_system_part_uuid': None, u'root_uuid': u'c74ef9ee-610f-4003-99c2-d5423c85e7ef'}, status: SUCCEEDED, result: None.
Dec 15 15:43:10 host-192-0-2-28 ironic-python-agent[855]: 192.0.2.1 - - [15/Dec/2016 15:43:10] "POST /v1/commands?wait=true HTTP/1.1" 200 265
Dec 15 15:43:10 host-192-0-2-28 dhclient[2447]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 15 (xid=0x6251989d)
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <warn> [1481834592.5024] dhcp4 (ens3f1): request timed out
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5024] dhcp4 (ens3f1): state changed unknown -> timeout
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5186] dhcp4 (ens3f1): canceled DHCP transaction, DHCP client pid 2447
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5186] dhcp4 (ens3f1): state changed timeout -> done
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5191] device (ens3f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <warn> [1481834592.5196] device (ens3f1): Activation: failed for connection 'System ens3f1'
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5201] device (ens3f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5236] policy: auto-activating connection 'System ens3f1'
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5247] device (ens3f1): Activation: starting connection 'System ens3f1' (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86)
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5249] device (ens3f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5253] device (ens3f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5260] device (ens3f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5263] dhcp4 (ens3f1): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:43:12 host-192-0-2-28 NetworkManager[632]: <info> [1481834592.5278] dhcp4 (ens3f1): dhclient started with pid 3165
Dec 15 15:43:12 host-192-0-2-28 dhclient[3165]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 3 (xid=0x5d475eed)
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <warn> [1481834593.5004] dhcp4 (ens6f0): request timed out
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5005] dhcp4 (ens6f0): state changed unknown -> timeout
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5086] dhcp4 (ens6f0): canceled DHCP transaction, DHCP client pid 2476
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5086] dhcp4 (ens6f0): state changed timeout -> done
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <warn> [1481834593.5088] dhcp4 (ens6f1): request timed out
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5089] dhcp4 (ens6f1): state changed unknown -> timeout
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5168] dhcp4 (ens6f1): canceled DHCP transaction, DHCP client pid 2507
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5168] dhcp4 (ens6f1): state changed timeout -> done
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5172] device (ens6f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <warn> [1481834593.5175] device (ens6f0): Activation: failed for connection 'System ens6f0'
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5177] device (ens6f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <warn> [1481834593.5179] device (ens6f1): Activation: failed for connection 'System ens6f1'
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5186] device (ens6f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5207] device (ens6f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5238] policy: auto-activating connection 'System ens6f0'
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5251] policy: auto-activating connection 'System ens6f1'
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5262] device (ens6f0): Activation: starting connection 'System ens6f0' (35620381-6232-4966-541e-dfdfa039f804)
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5266] device (ens6f1): Activation: starting connection 'System ens6f1' (6c01aac9-fcbb-f202-48fc-82146b96bce2)
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5268] device (ens6f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5270] device (ens6f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5273] device (ens6f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5280] device (ens6f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5288] device (ens6f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5291] dhcp4 (ens6f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5305] dhcp4 (ens6f0): dhclient started with pid 3170
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5315] device (ens6f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5319] dhcp4 (ens6f1): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:43:13 host-192-0-2-28 NetworkManager[632]: <info> [1481834593.5332] dhcp4 (ens6f1): dhclient started with pid 3171
Dec 15 15:43:13 host-192-0-2-28 dhclient[3170]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 7 (xid=0x1e8ba86)
Dec 15 15:43:13 host-192-0-2-28 dhclient[3171]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 7 (xid=0x654355ac)
Dec 15 15:43:14 host-192-0-2-28 dhclient[2676]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 8 (xid=0x2484ea5c)
Dec 15 15:43:15 host-192-0-2-28 dhclient[2545]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 14 (xid=0x456b5b41)
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <warn> [1481834595.5018] dhcp4 (ens3f0): request timed out
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5018] dhcp4 (ens3f0): state changed unknown -> timeout
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5098] dhcp4 (ens3f0): canceled DHCP transaction, DHCP client pid 2545
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5098] dhcp4 (ens3f0): state changed timeout -> done
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5101] device (ens3f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5103] manager: NetworkManager state is now CONNECTED_GLOBAL
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5105] manager: NetworkManager state is now CONNECTED_SITE
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5105] manager: NetworkManager state is now CONNECTED_GLOBAL
Dec 15 15:43:15 host-192-0-2-28 dbus-daemon[606]: dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:43:15 host-192-0-2-28 dbus[606]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <warn> [1481834595.5108] device (ens3f0): Activation: failed for connection 'System ens3f0'
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5114] device (ens3f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 15 15:43:15 host-192-0-2-28 systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5151] policy: auto-activating connection 'System ens3f0'
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5161] device (ens3f0): Activation: starting connection 'System ens3f0' (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1)
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5163] device (ens3f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5168] device (ens3f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5177] device (ens3f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5180] dhcp4 (ens3f0): activation: beginning transaction (timeout in 45 seconds)
Dec 15 15:43:15 host-192-0-2-28 dbus-daemon[606]: dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:43:15 host-192-0-2-28 dbus[606]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 15 15:43:15 host-192-0-2-28 systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 15 15:43:15 host-192-0-2-28 nm-dispatcher[3180]: req:1 'connectivity-change': new request (4 scripts)
Dec 15 15:43:15 host-192-0-2-28 nm-dispatcher[3180]: req:1 'connectivity-change': start running ordered scripts...
Dec 15 15:43:15 host-192-0-2-28 NetworkManager[632]: <info> [1481834595.5194] dhcp4 (ens3f0): dhclient started with pid 3183
Dec 15 15:43:15 host-192-0-2-28 dhclient[3183]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 5 (xid=0x7433e458)
Dec 15 15:43:15 host-192-0-2-28 dhclient[3165]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 3 (xid=0x5d475eed)
Dec 15 15:43:18 host-192-0-2-28 dhclient[3165]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 7 (xid=0x5d475eed)
Dec 15 15:43:20 host-192-0-2-28 dhclient[3171]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 9 (xid=0x654355ac)
Dec 15 15:43:20 host-192-0-2-28 dhclient[3183]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 8 (xid=0x7433e458)
Dec 15 15:43:20 host-192-0-2-28 dhclient[3170]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 15 (xid=0x1e8ba86)
Dec 15 15:43:22 host-192-0-2-28 dhclient[2676]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 12 (xid=0x2484ea5c)
Dec 15 15:43:25 host-192-0-2-28 dhclient[3165]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 13 (xid=0x5d475eed)
-- Logs begin at Fri 2016-12-16 10:14:06 EST, end at Fri 2016-12-16 10:15:59 EST. --
Dec 16 10:14:06 localhost.localdomain systemd-journal[325]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 16 10:14:06 localhost.localdomain systemd-journal[325]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys cpuset
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys cpu
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys cpuacct
Dec 16 10:14:06 localhost.localdomain kernel: Linux version 3.10.0-514.2.2.el7.x86_64 (mockbuild@x86-019.build.eng.bos.redhat.com) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC) ) #1 SMP Wed Nov 16 13:15:13 EST 2016
Dec 16 10:14:06 localhost.localdomain kernel: Command line: ipa-inspection-callback-url=http://192.0.2.1:5050/v1/continue ipa-inspection-collectors=default,extra-hardware,logs systemd.journald.forward_to_console=yes BOOTIF=2c:60:0c:ca:78:8f ipa-debug=1 ipa-inspection-dhcp-all-interfaces=1 ipa-collect-lldp=1 initrd=agent.ramdisk rootpwd="$1$ny.TiJfC$d59nmkcGz1uFVTMz3MGM/0"
Dec 16 10:14:06 localhost.localdomain kernel: e820: BIOS-provided physical RAM map:
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009afff] usable
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x000000000009b000-0x000000000009ffff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000786d7fff] usable
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000786d8000-0x000000007999afff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x000000007999b000-0x0000000079ef4fff] ACPI NVS
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000079ef5000-0x000000008fffffff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Dec 16 10:14:06 localhost.localdomain kernel: BIOS-e820: [mem 0x0000000100000000-0x000000207fffffff] usable
Dec 16 10:14:06 localhost.localdomain kernel: NX (Execute Disable) protection: active
Dec 16 10:14:06 localhost.localdomain kernel: SMBIOS 3.0 present.
Dec 16 10:14:06 localhost.localdomain kernel: DMI: Quanta Computer Inc D51B-1U (dual 10G LoM)/S2B-MB (dual 10G LoM), BIOS S2B_3B04 02/18/2016
Dec 16 10:14:06 localhost.localdomain kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dec 16 10:14:06 localhost.localdomain kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dec 16 10:14:06 localhost.localdomain kernel: e820: last_pfn = 0x2080000 max_arch_pfn = 0x400000000
Dec 16 10:14:06 localhost.localdomain kernel: MTRR default type: write-back
Dec 16 10:14:06 localhost.localdomain kernel: MTRR fixed ranges enabled:
Dec 16 10:14:06 localhost.localdomain kernel: 00000-9FFFF write-back
Dec 16 10:14:06 localhost.localdomain kernel: A0000-BFFFF uncachable
Dec 16 10:14:06 localhost.localdomain kernel: C0000-FFFFF write-protect
Dec 16 10:14:06 localhost.localdomain kernel: MTRR variable ranges enabled:
Dec 16 10:14:06 localhost.localdomain kernel: 0 base 000080000000 mask 3FFF80000000 uncachable
Dec 16 10:14:06 localhost.localdomain kernel: 1 base 038000000000 mask 3F8000000000 uncachable
Dec 16 10:14:06 localhost.localdomain kernel: 2 base 0000C5C00000 mask 3FFFFFC00000 write-through
Dec 16 10:14:06 localhost.localdomain kernel: 3 base 0000C6000000 mask 3FFFFF800000 write-through
Dec 16 10:14:06 localhost.localdomain kernel: 4 base 0000C6700000 mask 3FFFFFF00000 uncachable
Dec 16 10:14:06 localhost.localdomain kernel: 5 base 0000FB200000 mask 3FFFFFE00000 write-through
Dec 16 10:14:06 localhost.localdomain kernel: 6 base 0000FB400000 mask 3FFFFFE00000 write-through
Dec 16 10:14:06 localhost.localdomain kernel: 7 base 0000FB600000 mask 3FFFFFF00000 write-through
Dec 16 10:14:06 localhost.localdomain kernel: 8 disabled
Dec 16 10:14:06 localhost.localdomain kernel: 9 disabled
Dec 16 10:14:06 localhost.localdomain kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Dec 16 10:14:06 localhost.localdomain kernel: e820: last_pfn = 0x786d8 max_arch_pfn = 0x400000000
Dec 16 10:14:06 localhost.localdomain kernel: found SMP MP-table at [mem 0x000fdcf0-0x000fdcff] mapped at [ffff8800000fdcf0]
Dec 16 10:14:06 localhost.localdomain kernel: Base memory trampoline at [ffff880000085000] 85000 size 24576
Dec 16 10:14:06 localhost.localdomain kernel: Using GB pages for direct mapping
Dec 16 10:14:06 localhost.localdomain kernel: BRK [0x01f9f000, 0x01f9ffff] PGTABLE
Dec 16 10:14:06 localhost.localdomain kernel: BRK [0x01fa0000, 0x01fa0fff] PGTABLE
Dec 16 10:14:06 localhost.localdomain kernel: BRK [0x01fa1000, 0x01fa1fff] PGTABLE
Dec 16 10:14:06 localhost.localdomain kernel: RAMDISK: [mem 0x62935000-0x78638fff]
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: RSDP 00000000000f0580 00024 (v02 ALASKA)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: XSDT 0000000079a0b0a8 000CC (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: FACP 0000000079a3eda8 0010C (v05 ALASKA A M I 01072009 AMI 00010013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: DSDT 0000000079a0b208 33B9A (v02 ALASKA A M I 01072009 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: FACS 0000000079ef3f80 00040
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: APIC 0000000079a3eeb8 00304 (v03 ALASKA A M I 01072009 AMI 00010013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: FPDT 0000000079a3f1c0 00044 (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: FIDT 0000000079a3f208 0009C (v01 ALASKA A M I 01072009 AMI 00010013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SPMI 0000000079a3f2a8 00041 (v05 ALASKA A M I 00000000 AMI. 00000000)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: MCFG 0000000079a3f2f0 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: UEFI 0000000079a3f330 00042 (v01 ALASKA A M I 01072009 00000000)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: HPET 0000000079a3f378 00038 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: MSCT 0000000079a3f3b0 00090 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SLIT 0000000079a3f440 00030 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SRAT 0000000079a3f470 01158 (v03 ALASKA A M I 00000001 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: WDDT 0000000079a405c8 00040 (v01 ALASKA A M I 00000000 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SSDT 0000000079a40608 1700F (v02 ALASKA PmMgt 00000002 INTL 20120913)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SSDT 0000000079a57618 02652 (v02 ALASKA SpsNm 00000002 INTL 20120913)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: SSDT 0000000079a59c70 00064 (v02 ALASKA SpsNvs 00000002 INTL 20120913)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PRAD 0000000079a59cd8 00102 (v02 ALASKA A M I 00000002 INTL 20120913)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: DMAR 0000000079a59de0 00110 (v01 ALASKA A M I 00000001 INTL 20091013)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: HEST 0000000079a59ef0 000A8 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: BERT 0000000079a59f98 00030 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: ERST 0000000079a59fc8 00230 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: EINJ 0000000079a5a1f8 00130 (v01 ALASKA A M I 00000001 INTL 00000001)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Local APIC address 0xfee00000
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x02 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x06 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x08 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x0a -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x10 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x12 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x14 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x16 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x18 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x1a -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x20 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x22 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x24 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x26 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x28 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x2a -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x30 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x32 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x34 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x36 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x38 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x3a -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x03 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x07 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x09 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x0b -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x11 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x13 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x15 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x17 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x19 -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 0 -> APIC 0x1b -> Node 0
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x21 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x23 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x25 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x27 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x29 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x2b -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x31 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x33 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x35 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x37 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x39 -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: PXM 1 -> APIC 0x3b -> Node 1
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: Node 0 PXM 0 [mem 0x100000000-0x107fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: SRAT: Node 1 PXM 1 [mem 0x1080000000-0x207fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: NUMA: Initialized distance table, cnt=2
Dec 16 10:14:06 localhost.localdomain kernel: NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x107fffffff] -> [mem 0x00000000-0x107fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: Initmem setup node 0 [mem 0x00000000-0x107fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: NODE_DATA [mem 0x107ffd9000-0x107fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: Initmem setup node 1 [mem 0x1080000000-0x207fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: NODE_DATA [mem 0x207ffd6000-0x207fffcfff]
Dec 16 10:14:06 localhost.localdomain kernel: Zone ranges:
Dec 16 10:14:06 localhost.localdomain kernel: DMA [mem 0x00001000-0x00ffffff]
Dec 16 10:14:06 localhost.localdomain kernel: DMA32 [mem 0x01000000-0xffffffff]
Dec 16 10:14:06 localhost.localdomain kernel: Normal [mem 0x100000000-0x207fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: Movable zone start for each node
Dec 16 10:14:06 localhost.localdomain kernel: Early memory node ranges
Dec 16 10:14:06 localhost.localdomain kernel: node 0: [mem 0x00001000-0x0009afff]
Dec 16 10:14:06 localhost.localdomain kernel: node 0: [mem 0x00100000-0x786d7fff]
Dec 16 10:14:06 localhost.localdomain kernel: node 0: [mem 0x100000000-0x107fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: node 1: [mem 0x1080000000-0x207fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: On node 0 totalpages: 16746098
Dec 16 10:14:06 localhost.localdomain kernel: DMA zone: 64 pages used for memmap
Dec 16 10:14:06 localhost.localdomain kernel: DMA zone: 37 pages reserved
Dec 16 10:14:06 localhost.localdomain kernel: DMA zone: 3994 pages, LIFO batch:0
Dec 16 10:14:06 localhost.localdomain kernel: DMA32 zone: 7644 pages used for memmap
Dec 16 10:14:06 localhost.localdomain kernel: DMA32 zone: 489176 pages, LIFO batch:31
Dec 16 10:14:06 localhost.localdomain kernel: Normal zone: 253952 pages used for memmap
Dec 16 10:14:06 localhost.localdomain kernel: Normal zone: 16252928 pages, LIFO batch:31
Dec 16 10:14:06 localhost.localdomain kernel: On node 1 totalpages: 16777216
Dec 16 10:14:06 localhost.localdomain kernel: Normal zone: 262144 pages used for memmap
Dec 16 10:14:06 localhost.localdomain kernel: Normal zone: 16777216 pages, LIFO batch:31
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PM-Timer IO Port: 0x408
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Local APIC address 0xfee00000
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x10] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x12] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x14] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x16] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x18] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x1a] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x20] lapic_id[0x20] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x22] lapic_id[0x22] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x24] lapic_id[0x24] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x26] lapic_id[0x26] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x28] lapic_id[0x28] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x2a] lapic_id[0x2a] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x30] lapic_id[0x30] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x32] lapic_id[0x32] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x34] lapic_id[0x34] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x36] lapic_id[0x36] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x38] lapic_id[0x38] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x3a] lapic_id[0x3a] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x11] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x13] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x15] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x17] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x19] lapic_id[0x19] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x1b] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x21] lapic_id[0x21] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x23] lapic_id[0x23] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x25] lapic_id[0x25] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x27] lapic_id[0x27] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x29] lapic_id[0x29] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x2b] lapic_id[0x2b] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x31] lapic_id[0x31] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x33] lapic_id[0x33] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x35] lapic_id[0x35] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x37] lapic_id[0x37] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x39] lapic_id[0x39] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC (acpi_id[0x3b] lapic_id[0x3b] enabled)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x30] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x32] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x34] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x36] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x38] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x3a] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x31] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x33] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x35] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x37] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x39] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: LAPIC_NMI (acpi_id[0x3b] high edge lint[0x1])
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
Dec 16 10:14:06 localhost.localdomain kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
Dec 16 10:14:06 localhost.localdomain kernel: IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
Dec 16 10:14:06 localhost.localdomain kernel: IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: IRQ0 used by override.
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: IRQ9 used by override.
Dec 16 10:14:06 localhost.localdomain kernel: Using ACPI (MADT) for SMP configuration information
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Allowing 48 CPUs, 0 hotplug CPUs
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x0009b000-0x0009ffff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x786d8000-0x7999afff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x7999b000-0x79ef4fff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x79ef5000-0x8fffffff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed44fff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xfed45000-0xfeffffff]
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Dec 16 10:14:06 localhost.localdomain kernel: e820: [mem 0x90000000-0xfed1bfff] available for PCI devices
Dec 16 10:14:06 localhost.localdomain kernel: Booting paravirtualized kernel on bare hardware
Dec 16 10:14:06 localhost.localdomain kernel: setup_percpu: NR_CPUS:5120 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
Dec 16 10:14:06 localhost.localdomain kernel: PERCPU: Embedded 33 pages/cpu @ffff88103f800000 s96728 r8192 d30248 u262144
Dec 16 10:14:06 localhost.localdomain kernel: pcpu-alloc: s96728 r8192 d30248 u262144 alloc=1*2097152
Dec 16 10:14:06 localhost.localdomain kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 24 25 26 27
Dec 16 10:14:06 localhost.localdomain kernel: pcpu-alloc: [0] 28 29 30 31 32 33 34 35 [1] 12 13 14 15 16 17 18 19
Dec 16 10:14:06 localhost.localdomain kernel: pcpu-alloc: [1] 20 21 22 23 36 37 38 39 [1] 40 41 42 43 44 45 46 47
Dec 16 10:14:06 localhost.localdomain kernel: Built 2 zonelists in Zone order, mobility grouping on. Total pages: 32999473
Dec 16 10:14:06 localhost.localdomain kernel: Policy zone: Normal
Dec 16 10:14:06 localhost.localdomain kernel: Kernel command line: ipa-inspection-callback-url=http://192.0.2.1:5050/v1/continue ipa-inspection-collectors=default,extra-hardware,logs systemd.journald.forward_to_console=yes BOOTIF=2c:60:0c:ca:78:8f ipa-debug=1 ipa-inspection-dhcp-all-interfaces=1 ipa-collect-lldp=1 initrd=agent.ramdisk rootpwd="$1$ny.TiJfC$d59nmkcGz1uFVTMz3MGM/0"
Dec 16 10:14:06 localhost.localdomain kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
Dec 16 10:14:06 localhost.localdomain kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
Dec 16 10:14:06 localhost.localdomain kernel: Memory: 6252144k/136314880k available (6764k kernel code, 2221624k absent, 2543844k reserved, 4433k data, 1684k init)
Dec 16 10:14:06 localhost.localdomain kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
Dec 16 10:14:06 localhost.localdomain kernel: Hierarchical RCU implementation.
Dec 16 10:14:06 localhost.localdomain kernel: RCU restricting CPUs from NR_CPUS=5120 to nr_cpu_ids=48.
Dec 16 10:14:06 localhost.localdomain kernel: NR_IRQS:327936 nr_irqs:1624 0
Dec 16 10:14:06 localhost.localdomain kernel: Console: colour VGA+ 80x25
Dec 16 10:14:06 localhost.localdomain kernel: console [tty0] enabled
Dec 16 10:14:06 localhost.localdomain kernel: allocated 536870912 bytes of page_cgroup
Dec 16 10:14:06 localhost.localdomain kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Dec 16 10:14:06 localhost.localdomain kernel: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
Dec 16 10:14:06 localhost.localdomain kernel: hpet clockevent registered
Dec 16 10:14:06 localhost.localdomain kernel: tsc: Fast TSC calibration using PIT
Dec 16 10:14:06 localhost.localdomain kernel: tsc: Detected 2194.884 MHz processor
Dec 16 10:14:06 localhost.localdomain kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.76 BogoMIPS (lpj=2194884)
Dec 16 10:14:06 localhost.localdomain kernel: pid_max: default: 49152 minimum: 384
Dec 16 10:14:06 localhost.localdomain kernel: Security Framework initialized
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: Initializing.
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: Starting in permissive mode
Dec 16 10:14:06 localhost.localdomain kernel: Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: Mount-cache hash table entries: 4096
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys memory
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys devices
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys freezer
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys net_cls
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys blkio
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys perf_event
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys hugetlb
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys pids
Dec 16 10:14:06 localhost.localdomain kernel: Initializing cgroup subsys net_prio
Dec 16 10:14:06 localhost.localdomain kernel: CPU: Physical Processor ID: 0
Dec 16 10:14:06 localhost.localdomain kernel: CPU: Processor Core ID: 0
Dec 16 10:14:06 localhost.localdomain kernel: mce: CPU supports 22 MCE banks
Dec 16 10:14:06 localhost.localdomain kernel: CPU0: Thermal monitoring enabled (TM1)
Dec 16 10:14:06 localhost.localdomain kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Dec 16 10:14:06 localhost.localdomain kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
Dec 16 10:14:06 localhost.localdomain kernel: tlb_flushall_shift: 6
Dec 16 10:14:06 localhost.localdomain kernel: Freeing SMP alternatives: 28k freed
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Core revision 20130517
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: All ACPI Tables successfully acquired
Dec 16 10:14:06 localhost.localdomain kernel: ftrace: allocating 25812 entries in 101 pages
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Max logical packages: 4
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: APIC(20) Converting physical 1 to logical package 1
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: Host address width 46
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: DRHD base: 0x000000fbffc000 flags: 0x0
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: dmar0: reg_base_addr fbffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: DRHD base: 0x000000c7ffc000 flags: 0x1
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: dmar1: reg_base_addr c7ffc000 ver 1:0 cap 8d2078c106f0466 ecap f020df
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: RMRR base: 0x0000007bb7c000 end: 0x0000007bb8bfff
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: ATSR flags: 0x0
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
Dec 16 10:14:06 localhost.localdomain kernel: DMAR: RHSA base: 0x000000fbffc000 proximity domain: 0x1
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: IOAPIC id 3 under DRHD base 0xfbffc000 IOMMU 0
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: IOAPIC id 1 under DRHD base 0xc7ffc000 IOMMU 1
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xc7ffc000 IOMMU 1
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: HPET id 0 under DRHD base 0xc7ffc000
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Dec 16 10:14:06 localhost.localdomain kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Dec 16 10:14:06 localhost.localdomain kernel: IRQ remapping doesn't support X2APIC mode, disable x2apic.
Dec 16 10:14:06 localhost.localdomain kernel: Switched APIC routing to physical flat.
Dec 16 10:14:06 localhost.localdomain kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz (fam: 06, model: 4f, stepping: 01)
Dec 16 10:14:06 localhost.localdomain kernel: TSC deadline timer enabled
Dec 16 10:14:06 localhost.localdomain kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Broadwell events, full-width counters, Intel PMU driver.
Dec 16 10:14:06 localhost.localdomain kernel: ... version: 3
Dec 16 10:14:06 localhost.localdomain kernel: ... bit width: 48
Dec 16 10:14:06 localhost.localdomain kernel: ... generic registers: 4
Dec 16 10:14:06 localhost.localdomain kernel: ... value mask: 0000ffffffffffff
Dec 16 10:14:06 localhost.localdomain kernel: ... max period: 0000ffffffffffff
Dec 16 10:14:06 localhost.localdomain kernel: ... fixed-purpose events: 3
Dec 16 10:14:06 localhost.localdomain kernel: ... event mask: 000000070000000f
Dec 16 10:14:06 localhost.localdomain kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 OK
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Booting Node 1, Processors #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 OK
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Booting Node 0, Processors #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35 OK
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Booting Node 1, Processors #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47 OK
Dec 16 10:14:06 localhost.localdomain kernel: Brought up 48 CPUs
Dec 16 10:14:06 localhost.localdomain kernel: smpboot: Total of 48 processors activated (210847.48 BogoMIPS)
Dec 16 10:14:06 localhost.localdomain kernel: node 0 initialised, 15400044 pages in 303ms
Dec 16 10:14:06 localhost.localdomain kernel: node 1 initialised, 15924273 pages in 308ms
Dec 16 10:14:06 localhost.localdomain kernel: devtmpfs: initialized
Dec 16 10:14:06 localhost.localdomain kernel: EVM: security.selinux
Dec 16 10:14:06 localhost.localdomain kernel: EVM: security.ima
Dec 16 10:14:06 localhost.localdomain kernel: EVM: security.capability
Dec 16 10:14:06 localhost.localdomain kernel: PM: Registering ACPI NVS region [mem 0x7999b000-0x79ef4fff] (5611520 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: atomic64 test passed for x86-64 platform with CX8 and with SSE
Dec 16 10:14:06 localhost.localdomain kernel: pinctrl core: initialized pinctrl subsystem
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 16
Dec 16 10:14:06 localhost.localdomain kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: bus type PCI registered
Dec 16 10:14:06 localhost.localdomain kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Dec 16 10:14:06 localhost.localdomain kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0x80000000-0x8fffffff] (base 0x80000000)
Dec 16 10:14:06 localhost.localdomain kernel: PCI: MMCONFIG at [mem 0x80000000-0x8fffffff] reserved in E820
Dec 16 10:14:06 localhost.localdomain kernel: PCI: Using configuration type 1 for base access
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Added _OSI(Module Device)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Added _OSI(Processor Device)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Added _OSI(Processor Aggregator Device)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: EC: Look up EC in DSDT
Dec 16 10:14:06 localhost.localdomain kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Dynamic OEM Table Load:
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PRAD (null) 00102 (v02 ALASKA A M I 00000002 INTL 20120913)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Interpreter enabled
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: (supports S0 S5)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Using IOAPIC for interrupt routing
Dec 16 10:14:06 localhost.localdomain kernel: HEST: Table parsing has been initialized.
Dec 16 10:14:06 localhost.localdomain kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: platform does not support [AER]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:02: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 16 10:14:06 localhost.localdomain kernel: PCI host bridge to bus 0000:ff
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:ff: root bus resource [bus ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:08.0: [8086:6f80] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:08.2: [8086:6f32] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:08.3: [8086:6f83] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:09.0: [8086:6f90] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:09.2: [8086:6f33] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:09.3: [8086:6f93] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0b.0: [8086:6f81] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0b.1: [8086:6f36] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0b.2: [8086:6f37] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0b.3: [8086:6f76] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.0: [8086:6fe0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.1: [8086:6fe1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.2: [8086:6fe2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.3: [8086:6fe3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.4: [8086:6fe4] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.5: [8086:6fe5] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.6: [8086:6fe6] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0c.7: [8086:6fe7] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0d.0: [8086:6fe8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0d.1: [8086:6fe9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0d.2: [8086:6fea] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0d.3: [8086:6feb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.0: [8086:6ff8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.1: [8086:6ff9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.2: [8086:6ffa] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.3: [8086:6ffb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.4: [8086:6ffc] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.5: [8086:6ffd] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:0f.6: [8086:6ffe] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:10.0: [8086:6f1d] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:10.1: [8086:6f34] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:10.5: [8086:6f1e] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:10.6: [8086:6f7d] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:10.7: [8086:6f1f] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.0: [8086:6fa0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.1: [8086:6f30] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.2: [8086:6f70] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.4: [8086:6f60] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.5: [8086:6f38] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:12.6: [8086:6f78] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.0: [8086:6fa8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.1: [8086:6f71] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.2: [8086:6faa] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.3: [8086:6fab] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.6: [8086:6fae] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:13.7: [8086:6faf] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.0: [8086:6fb0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.1: [8086:6fb1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.2: [8086:6fb2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.3: [8086:6fb3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.4: [8086:6fbc] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.5: [8086:6fbd] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.6: [8086:6fbe] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:14.7: [8086:6fbf] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.0: [8086:6f68] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.1: [8086:6f79] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.2: [8086:6f6a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.3: [8086:6f6b] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.6: [8086:6f6e] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:16.7: [8086:6f6f] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.0: [8086:6fd0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.1: [8086:6fd1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.2: [8086:6fd2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.3: [8086:6fd3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.4: [8086:6fb8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.5: [8086:6fb9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.6: [8086:6fba] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:17.7: [8086:6fbb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1e.0: [8086:6f98] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1e.1: [8086:6f99] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1e.2: [8086:6f9a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1e.3: [8086:6fc0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1e.4: [8086:6f9c] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1f.0: [8086:6f88] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:ff:1f.2: [8086:6f8a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: platform does not support [AER]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A03:03: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 16 10:14:06 localhost.localdomain kernel: PCI host bridge to bus 0000:7f
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:7f: root bus resource [bus 7f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:08.0: [8086:6f80] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:08.2: [8086:6f32] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:08.3: [8086:6f83] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:09.0: [8086:6f90] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:09.2: [8086:6f33] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:09.3: [8086:6f93] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0b.0: [8086:6f81] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0b.1: [8086:6f36] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0b.2: [8086:6f37] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0b.3: [8086:6f76] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.0: [8086:6fe0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.1: [8086:6fe1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.2: [8086:6fe2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.3: [8086:6fe3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.4: [8086:6fe4] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.5: [8086:6fe5] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.6: [8086:6fe6] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0c.7: [8086:6fe7] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0d.0: [8086:6fe8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0d.1: [8086:6fe9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0d.2: [8086:6fea] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0d.3: [8086:6feb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.0: [8086:6ff8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.1: [8086:6ff9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.2: [8086:6ffa] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.3: [8086:6ffb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.4: [8086:6ffc] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.5: [8086:6ffd] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:0f.6: [8086:6ffe] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:10.0: [8086:6f1d] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:10.1: [8086:6f34] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:10.5: [8086:6f1e] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:10.6: [8086:6f7d] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:10.7: [8086:6f1f] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.0: [8086:6fa0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.1: [8086:6f30] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.2: [8086:6f70] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.4: [8086:6f60] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.5: [8086:6f38] type 00 class 0x110100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:12.6: [8086:6f78] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.0: [8086:6fa8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.1: [8086:6f71] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.2: [8086:6faa] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.3: [8086:6fab] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.6: [8086:6fae] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:13.7: [8086:6faf] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.0: [8086:6fb0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.1: [8086:6fb1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.2: [8086:6fb2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.3: [8086:6fb3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.4: [8086:6fbc] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.5: [8086:6fbd] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.6: [8086:6fbe] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:14.7: [8086:6fbf] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.0: [8086:6f68] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.1: [8086:6f79] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.2: [8086:6f6a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.3: [8086:6f6b] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.6: [8086:6f6e] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:16.7: [8086:6f6f] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.0: [8086:6fd0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.1: [8086:6fd1] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.2: [8086:6fd2] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.3: [8086:6fd3] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.4: [8086:6fb8] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.5: [8086:6fb9] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.6: [8086:6fba] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:17.7: [8086:6fbb] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1e.0: [8086:6f98] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1e.1: [8086:6f99] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1e.2: [8086:6f9a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1e.3: [8086:6fc0] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1e.4: [8086:6f9c] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1f.0: [8086:6f88] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:7f:1f.2: [8086:6f8a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 16 10:14:06 localhost.localdomain kernel: PCI host bridge to bus 0000:00
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [io 0x1000-0x7fff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffafff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:00.0: [8086:6f00] type 00 class 0x060000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: [8086:6f02] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: [8086:6f04] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: [8086:6f08] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:05.0: [8086:6f28] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:05.1: [8086:6f29] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:05.2: [8086:6f2a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:05.4: [8086:6f2c] type 00 class 0x080020
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:05.4: reg 0x10: [mem 0xc7d19000-0xc7d19fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.0: [8086:8d7c] type 00 class 0xff0000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: [8086:8d62] type 00 class 0x010601
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x10: [io 0x7110-0x7117]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x14: [io 0x7100-0x7103]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x18: [io 0x70f0-0x70f7]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x1c: [io 0x70e0-0x70e3]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x20: [io 0x7020-0x703f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: reg 0x24: [mem 0xc7d18000-0xc7d187ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:11.4: PME# supported from D3hot
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.0: [8086:8d3a] type 00 class 0x078000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.0: reg 0x10: [mem 0xc7d17000-0xc7d1700f 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.1: [8086:8d3b] type 00 class 0x078000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.1: reg 0x10: [mem 0xc7d16000-0xc7d1600f 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1a.0: [8086:8d2d] type 00 class 0x0c0320
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xc7d14000-0xc7d143ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: [8086:8d10] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1d.0: [8086:8d26] type 00 class 0x0c0320
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xc7d13000-0xc7d133ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.0: [8086:8d44] type 00 class 0x060100
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: [8086:8d02] type 00 class 0x010601
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x10: [io 0x7070-0x7077]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x14: [io 0x7060-0x7063]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x18: [io 0x7050-0x7057]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x7040-0x7043]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x20: [io 0x7000-0x701f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xc7d12000-0xc7d127ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.2: PME# supported from D3hot
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.3: [8086:8d22] type 00 class 0x0c0500
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xc7d11000-0xc7d110ff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0580-0x059f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.6: [8086:8d24] type 00 class 0x118000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xc7d10000-0xc7d10fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: acpiphp: Slot [255] registered
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x10: [mem 0xc6400000-0xc65fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x18: [io 0x6020-0x603f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x20: [mem 0xc6604000-0xc6607fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x184: [mem 0xc7900000-0xc7903fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: VF(n) BAR0 space: [mem 0xc7900000-0xc79fffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: reg 0x190: [mem 0xc7800000-0xc7803fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: VF(n) BAR3 space: [mem 0xc7800000-0xc78fffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x10: [mem 0xc6200000-0xc63fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x18: [io 0x6000-0x601f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x20: [mem 0xc6600000-0xc6603fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x184: [mem 0xc7700000-0xc7703fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: VF(n) BAR0 space: [mem 0xc7700000-0xc77fffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: reg 0x190: [mem 0xc7600000-0xc7603fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: VF(n) BAR3 space: [mem 0xc7600000-0xc76fffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: PCI bridge to [bus 01-02]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [io 0x6000-0x6fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc7600000-0xc79fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: [1000:005d] type 00 class 0x010400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x10: [io 0x5000-0x50ff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x14: [mem 0xc7c00000-0xc7c0ffff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x1c: [mem 0xc7b00000-0xc7bfffff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: reg 0x30: [mem 0xc7a00000-0xc7afffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: supports D1 D2
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [io 0x5000-0x5fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [mem 0xc7a00000-0xc7cfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x10: [mem 0xc5e00000-0xc5ffffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x18: [io 0x4020-0x403f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x20: [mem 0xc6004000-0xc6007fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x30: [mem 0xc7180000-0xc71fffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x184: [mem 0xc7500000-0xc7503fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: VF(n) BAR0 space: [mem 0xc7500000-0xc75fffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: reg 0x190: [mem 0xc7400000-0xc7403fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: VF(n) BAR3 space: [mem 0xc7400000-0xc74fffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x10: [mem 0xc5c00000-0xc5dfffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x18: [io 0x4000-0x401f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x20: [mem 0xc6000000-0xc6003fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x30: [mem 0xc7100000-0xc717ffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x184: [mem 0xc7300000-0xc7303fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: VF(n) BAR0 space: [mem 0xc7300000-0xc73fffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: reg 0x190: [mem 0xc7200000-0xc7203fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: VF(n) BAR3 space: [mem 0xc7200000-0xc72fffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: PCI bridge to [bus 04-05]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [io 0x4000-0x4fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc7100000-0xc75fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: [1a03:1150] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: supports D1 D2
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: PCI bridge to [bus 06-07]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: [1a03:2000] type 00 class 0x030000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x10: [mem 0xc6800000-0xc6ffffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x14: [mem 0xc7000000-0xc701ffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: reg 0x18: [io 0x3000-0x307f]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: supports D1 D2
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: on NUMA node 0
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: platform does not support [AER]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
Dec 16 10:14:06 localhost.localdomain kernel: acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
Dec 16 10:14:06 localhost.localdomain kernel: PCI host bridge to bus 0000:80
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [bus 80-fe]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [io 0x8000-0xffff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffbfff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: [8086:6f02] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: [8086:6f03] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: [8086:6f04] type 01 class 0x060400
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: System wakeup disabled by ACPI
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:05.0: [8086:6f28] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:05.1: [8086:6f29] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:05.2: [8086:6f2a] type 00 class 0x088000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:05.4: [8086:6f2c] type 00 class 0x080020
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:81:00.0: [8086:0953] type 00 class 0x010802
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:81:00.0: reg 0x10: [mem 0xfbe10000-0xfbe13fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:81:00.0: reg 0x30: [mem 0xfbe00000-0xfbe0ffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: PCI bridge to [bus 81]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:82:00.0: [8086:0953] type 00 class 0x010802
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:82:00.0: reg 0x10: [mem 0xfbd10000-0xfbd13fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:82:00.0: reg 0x30: [mem 0xfbd00000-0xfbd0ffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: PCI bridge to [bus 82]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xfbd00000-0xfbdfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x10: [mem 0xfb400000-0xfb5fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x20: [mem 0xfb604000-0xfb607fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x30: [mem 0xfb880000-0xfb8fffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: PME# supported from D0 D3hot
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x184: [mem 0xfbc00000-0xfbc03fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: VF(n) BAR0 space: [mem 0xfbc00000-0xfbcfffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: reg 0x190: [mem 0xfbb00000-0xfbb03fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: VF(n) BAR3 space: [mem 0xfbb00000-0xfbbfffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: [8086:1528] type 00 class 0x020000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x10: [mem 0xfb200000-0xfb3fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x20: [mem 0xfb600000-0xfb603fff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x30: [mem 0xfb800000-0xfb87ffff pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: PME# supported from D0 D3hot
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x184: [mem 0xfba00000-0xfba03fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: VF(n) BAR0 space: [mem 0xfba00000-0xfbafffff 64bit] (contains BAR0 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: reg 0x190: [mem 0xfb900000-0xfb903fff 64bit]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: VF(n) BAR3 space: [mem 0xfb900000-0xfb9fffff 64bit] (contains BAR3 for 64 VFs)
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: PCI bridge to [bus 83-84]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb800000-0xfbcfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: on NUMA node 1
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 *11 12 14 15)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 11 12 14 15)
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Enabled 2 GPEs in block 00 to 3F
Dec 16 10:14:06 localhost.localdomain kernel: vgaarb: device added: PCI:0000:07:00.0,decodes=io+mem,owns=io+mem,locks=none
Dec 16 10:14:06 localhost.localdomain kernel: vgaarb: loaded
Dec 16 10:14:06 localhost.localdomain kernel: vgaarb: bridge control possible 0000:07:00.0
Dec 16 10:14:06 localhost.localdomain kernel: SCSI subsystem initialized
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: bus type USB registered
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new interface driver usbfs
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new interface driver hub
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new device driver usb
Dec 16 10:14:06 localhost.localdomain kernel: PCI: Using ACPI for IRQ routing
Dec 16 10:14:06 localhost.localdomain kernel: PCI: pci_cache_line_size set to 64 bytes
Dec 16 10:14:06 localhost.localdomain kernel: e820: reserve RAM buffer [mem 0x0009b000-0x0009ffff]
Dec 16 10:14:06 localhost.localdomain kernel: e820: reserve RAM buffer [mem 0x786d8000-0x7bffffff]
Dec 16 10:14:06 localhost.localdomain kernel: NetLabel: Initializing
Dec 16 10:14:06 localhost.localdomain kernel: NetLabel: domain hash size = 128
Dec 16 10:14:06 localhost.localdomain kernel: NetLabel: protocols = UNLABELED CIPSOv4
Dec 16 10:14:06 localhost.localdomain kernel: NetLabel: unlabeled traffic allowed by default
Dec 16 10:14:06 localhost.localdomain kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Dec 16 10:14:06 localhost.localdomain kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Dec 16 10:14:06 localhost.localdomain kernel: Switched to clocksource hpet
Dec 16 10:14:06 localhost.localdomain kernel: pnp: PnP ACPI init
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: bus type PNP registered
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0500-0x057f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0400-0x047f] could not be reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0580-0x059f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0600-0x061f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0880-0x0883] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [io 0x0800-0x081f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfed1c000-0xfed3ffff] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfed45000-0xfed8bfff] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfee00000-0xfeefffff] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfed12000-0xfed1200f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfed12010-0xfed1201f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: [mem 0xfed1b000-0xfed1bfff] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: [io 0x0a00-0x0a0f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: [io 0x0a10-0x0a1f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: [io 0x0a20-0x0a2f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: [io 0x0a30-0x0a3f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: [io 0x0a40-0x0a4f] has been reserved
Dec 16 10:14:06 localhost.localdomain kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:03: [dma 0 disabled]
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active)
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:04: [dma 0 disabled]
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Dec 16 10:14:06 localhost.localdomain kernel: pnp 00:05: Plug and Play ACPI device, IDs IPI0001 (active)
Dec 16 10:14:06 localhost.localdomain kernel: pnp: PnP ACPI: found 6 devices
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: bus type PNP unregistered
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: PCI bridge to [bus 01-02]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [io 0x6000-0x6fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc7600000-0xc79fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:01.0: bridge window [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: PCI bridge to [bus 03]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [io 0x5000-0x5fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:02.0: bridge window [mem 0xc7a00000-0xc7cfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: PCI bridge to [bus 04-05]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [io 0x4000-0x4fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc7100000-0xc75fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:03.0: bridge window [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: PCI bridge to [bus 06-07]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:00:1c.0: bridge window [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: resource 5 [io 0x1000-0x7fff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:00: resource 7 [mem 0x90000000-0xc7ffafff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:01: resource 0 [io 0x6000-0x6fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:01: resource 1 [mem 0xc7600000-0xc79fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:01: resource 2 [mem 0xc6200000-0xc66fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:03: resource 1 [mem 0xc7a00000-0xc7cfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:04: resource 1 [mem 0xc7100000-0xc75fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:04: resource 2 [mem 0xc5c00000-0xc60fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:06: resource 0 [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:06: resource 1 [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:07: resource 0 [io 0x3000-0x3fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:07: resource 1 [mem 0xc6800000-0xc70fffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [io 0x1000-0x0fff] to [bus 81] add_size 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 81] add_size 200000 add_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [io 0x1000-0x0fff] to [bus 82] add_size 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 82] add_size 200000 add_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: BAR 15: assigned [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: BAR 15: assigned [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: BAR 13: assigned [io 0x8000-0x8fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: BAR 13: assigned [io 0x9000-0x9fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: PCI bridge to [bus 81]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [io 0x8000-0x8fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xfbe00000-0xfbefffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.0: bridge window [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: PCI bridge to [bus 82]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [io 0x9000-0x9fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xfbd00000-0xfbdfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:01.1: bridge window [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: PCI bridge to [bus 83-84]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb800000-0xfbcfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:80:02.0: bridge window [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: resource 4 [io 0x8000-0xffff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffbfff window]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:81: resource 0 [io 0x8000-0x8fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:81: resource 1 [mem 0xfbe00000-0xfbefffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:81: resource 2 [mem 0xc8000000-0xc81fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:82: resource 0 [io 0x9000-0x9fff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:82: resource 1 [mem 0xfbd00000-0xfbdfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:82: resource 2 [mem 0xc8200000-0xc83fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:83: resource 1 [mem 0xfb800000-0xfbcfffff]
Dec 16 10:14:06 localhost.localdomain kernel: pci_bus 0000:83: resource 2 [mem 0xfb200000-0xfb6fffff 64bit pref]
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 2
Dec 16 10:14:06 localhost.localdomain kernel: TCP established hash table entries: 524288 (order: 10, 4194304 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: TCP: Hash tables configured (established 524288 bind 65536)
Dec 16 10:14:06 localhost.localdomain kernel: TCP: reno registered
Dec 16 10:14:06 localhost.localdomain kernel: UDP hash table entries: 65536 (order: 9, 2097152 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 1
Dec 16 10:14:06 localhost.localdomain kernel: PCI: CLS mismatch (64 != 32), using 64 bytes
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: [Firmware Bug]: VPD access disabled
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: Boot video device
Dec 16 10:14:06 localhost.localdomain kernel: Unpacking initramfs...
Dec 16 10:14:06 localhost.localdomain kernel: Freeing initrd memory: 357392k freed
Dec 16 10:14:06 localhost.localdomain kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Dec 16 10:14:06 localhost.localdomain kernel: software IO TLB [mem 0x5e935000-0x62935000] (64MB) mapped at [ffff88005e935000-ffff880062934fff]
Dec 16 10:14:06 localhost.localdomain kernel: Intel CQM monitoring enabled
Dec 16 10:14:06 localhost.localdomain kernel: Intel MBM enabled
Dec 16 10:14:06 localhost.localdomain kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
Dec 16 10:14:06 localhost.localdomain kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Dec 16 10:14:06 localhost.localdomain kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Dec 16 10:14:06 localhost.localdomain kernel: RAPL PMU: hw unit of domain dram 2^-16 Joules
Dec 16 10:14:06 localhost.localdomain kernel: sha1_ssse3: Using AVX2 optimized SHA-1 implementation
Dec 16 10:14:06 localhost.localdomain kernel: sha256_ssse3: Using AVX2 optimized SHA-256 implementation
Dec 16 10:14:06 localhost.localdomain kernel: futex hash table entries: 16384 (order: 8, 1048576 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: Initialise system trusted keyring
Dec 16 10:14:06 localhost.localdomain kernel: audit: initializing netlink socket (disabled)
Dec 16 10:14:06 localhost.localdomain kernel: type=2000 audit(1481901244.851:1): initialized
Dec 16 10:14:06 localhost.localdomain kernel: HugeTLB registered 1 GB page size, pre-allocated 0 pages
Dec 16 10:14:06 localhost.localdomain kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Dec 16 10:14:06 localhost.localdomain kernel: zpool: loaded
Dec 16 10:14:06 localhost.localdomain kernel: zbud: loaded
Dec 16 10:14:06 localhost.localdomain kernel: VFS: Disk quotas dquot_6.5.2
Dec 16 10:14:06 localhost.localdomain kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 16 10:14:06 localhost.localdomain kernel: msgmni has been set to 32768
Dec 16 10:14:06 localhost.localdomain kernel: Key type big_key registered
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: Registering netfilter hooks
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 38
Dec 16 10:14:06 localhost.localdomain kernel: Key type asymmetric registered
Dec 16 10:14:06 localhost.localdomain kernel: Asymmetric key parser 'x509' registered
Dec 16 10:14:06 localhost.localdomain kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
Dec 16 10:14:06 localhost.localdomain kernel: io scheduler noop registered
Dec 16 10:14:06 localhost.localdomain kernel: io scheduler deadline registered (default)
Dec 16 10:14:06 localhost.localdomain kernel: io scheduler cfq registered
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:02.0: irq 27 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:03.0: irq 29 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:1c.0: irq 30 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:01.0: irq 32 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:01.1: irq 33 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:02.0: irq 35 for MSI/MSI-X
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:00:02.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:04:00.1: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:00:03.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:07:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:01.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:81:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:80:01.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:01.1: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:82:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:80:01.1:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: pcieport 0000:80:02.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.0: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pci 0000:83:00.1: Signaling PME through PCIe PME interrupt
Dec 16 10:14:06 localhost.localdomain kernel: pcie_pme 0000:80:02.0:pcie01: service driver pcie_pme loaded
Dec 16 10:14:06 localhost.localdomain kernel: ioapic: probe of 0000:00:05.4 failed with error -22
Dec 16 10:14:06 localhost.localdomain kernel: ioapic: probe of 0000:80:05.4 failed with error -22
Dec 16 10:14:06 localhost.localdomain kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Dec 16 10:14:06 localhost.localdomain kernel: pciehp 0000:80:01.0:pcie04: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- LLActRep+
Dec 16 10:14:06 localhost.localdomain kernel: pciehp 0000:80:01.0:pcie04: service driver pciehp loaded
Dec 16 10:14:06 localhost.localdomain kernel: pciehp 0000:80:01.1:pcie04: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock- NoCompl- LLActRep+
Dec 16 10:14:06 localhost.localdomain kernel: pciehp 0000:80:01.1:pcie04: service driver pciehp loaded
Dec 16 10:14:06 localhost.localdomain kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Dec 16 10:14:06 localhost.localdomain kernel: intel_idle: MWAIT substates: 0x2120
Dec 16 10:14:06 localhost.localdomain kernel: intel_idle: v0.4.1 model 0x4F
Dec 16 10:14:06 localhost.localdomain kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Dec 16 10:14:06 localhost.localdomain kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Power Button [PWRB]
Dec 16 10:14:06 localhost.localdomain kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Power Button [PWRF]
Dec 16 10:14:06 localhost.localdomain kernel: ACPI: Requesting acpi_cpufreq
Dec 16 10:14:06 localhost.localdomain kernel: Request for unknown module key 'Red Hat Enterprise Linux kernel signing key: 024834c1c880cbe64486566a7d0555fe8211701e' err -11
Dec 16 10:14:06 localhost.localdomain kernel: acpi_cpufreq: module verification failed: signature and/or required key missing - tainting kernel
Dec 16 10:14:06 localhost.localdomain kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Dec 16 10:14:06 localhost.localdomain kernel: pstore: Registered erst as persistent store backend
Dec 16 10:14:06 localhost.localdomain kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Dec 16 10:14:06 localhost.localdomain kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Dec 16 10:14:06 localhost.localdomain kernel: 00:03: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Dec 16 10:14:06 localhost.localdomain kernel: 00:04: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Dec 16 10:14:06 localhost.localdomain kernel: Non-volatile memory driver v1.3
Dec 16 10:14:06 localhost.localdomain kernel: Linux agpgart interface v0.103
Dec 16 10:14:06 localhost.localdomain kernel: crash memory driver: version 1.1
Dec 16 10:14:06 localhost.localdomain kernel: rdac: device handler registered
Dec 16 10:14:06 localhost.localdomain kernel: hp_sw: device handler registered
Dec 16 10:14:06 localhost.localdomain kernel: emc: device handler registered
Dec 16 10:14:06 localhost.localdomain kernel: alua: device handler registered
Dec 16 10:14:06 localhost.localdomain kernel: libphy: Fixed MDIO Bus: probed
Dec 16 10:14:06 localhost.localdomain kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci: EHCI PCI platform driver
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: debug port 2
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: irq 18, io mem 0xc7d14000
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Dec 16 10:14:06 localhost.localdomain kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Dec 16 10:14:06 localhost.localdomain kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 16 10:14:06 localhost.localdomain kernel: usb usb1: Product: EHCI Host Controller
Dec 16 10:14:06 localhost.localdomain kernel: usb usb1: Manufacturer: Linux 3.10.0-514.2.2.el7.x86_64 ehci_hcd
Dec 16 10:14:06 localhost.localdomain kernel: usb usb1: SerialNumber: 0000:00:1a.0
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-0:1.0: USB hub found
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-0:1.0: 2 ports detected
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: debug port 2
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: irq 18, io mem 0xc7d13000
Dec 16 10:14:06 localhost.localdomain kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Dec 16 10:14:06 localhost.localdomain kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Dec 16 10:14:06 localhost.localdomain kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 16 10:14:06 localhost.localdomain kernel: usb usb2: Product: EHCI Host Controller
Dec 16 10:14:06 localhost.localdomain kernel: usb usb2: Manufacturer: Linux 3.10.0-514.2.2.el7.x86_64 ehci_hcd
Dec 16 10:14:06 localhost.localdomain kernel: usb usb2: SerialNumber: 0000:00:1d.0
Dec 16 10:14:06 localhost.localdomain kernel: hub 2-0:1.0: USB hub found
Dec 16 10:14:06 localhost.localdomain kernel: hub 2-0:1.0: 2 ports detected
Dec 16 10:14:06 localhost.localdomain kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Dec 16 10:14:06 localhost.localdomain kernel: ohci-pci: OHCI PCI platform driver
Dec 16 10:14:06 localhost.localdomain kernel: uhci_hcd: USB Universal Host Controller Interface driver
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new interface driver usbserial
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new interface driver usbserial_generic
Dec 16 10:14:06 localhost.localdomain kernel: usbserial: USB Serial support registered for generic
Dec 16 10:14:06 localhost.localdomain kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Dec 16 10:14:06 localhost.localdomain kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=800a
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-1:1.0: USB hub found
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-1:1.0: 6 ports detected
Dec 16 10:14:06 localhost.localdomain kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=8002
Dec 16 10:14:06 localhost.localdomain kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Dec 16 10:14:06 localhost.localdomain kernel: hub 2-1:1.0: USB hub found
Dec 16 10:14:06 localhost.localdomain kernel: hub 2-1:1.0: 8 ports detected
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: new high-speed USB device number 3 using ehci-pci
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: New USB device found, idVendor=046b, idProduct=ff01
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: Product: Virtual Hub
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: Manufacturer: American Megatrends Inc.
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2: SerialNumber: serial
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-1.2:1.0: USB hub found
Dec 16 10:14:06 localhost.localdomain kernel: hub 1-1.2:1.0: 5 ports detected
Dec 16 10:14:06 localhost.localdomain kernel: tsc: Refined TSC clocksource calibration: 2194.917 MHz
Dec 16 10:14:06 localhost.localdomain kernel: i8042: No controller found
Dec 16 10:14:06 localhost.localdomain kernel: Switched to clocksource tsc
Dec 16 10:14:06 localhost.localdomain kernel: mousedev: PS/2 mouse device common for all mice
Dec 16 10:14:06 localhost.localdomain kernel: rtc_cmos 00:00: RTC can wake from S4
Dec 16 10:14:06 localhost.localdomain kernel: rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
Dec 16 10:14:06 localhost.localdomain kernel: rtc_cmos 00:00: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Dec 16 10:14:06 localhost.localdomain kernel: Intel P-state driver initializing.
Dec 16 10:14:06 localhost.localdomain kernel: cpuidle: using governor menu
Dec 16 10:14:06 localhost.localdomain kernel: hidraw: raw HID events driver (C) Jiri Kosina
Dec 16 10:14:06 localhost.localdomain kernel: usbcore: registered new interface driver usbhid
Dec 16 10:14:06 localhost.localdomain kernel: usbhid: USB HID core driver
Dec 16 10:14:06 localhost.localdomain kernel: drop_monitor: Initializing network drop monitor service
Dec 16 10:14:06 localhost.localdomain kernel: TCP: cubic registered
Dec 16 10:14:06 localhost.localdomain kernel: Initializing XFRM netlink socket
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 10
Dec 16 10:14:06 localhost.localdomain kernel: NET: Registered protocol family 17
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU0 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU1 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU2 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU3 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU4 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU5 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU6 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU7 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU8 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU9 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU10 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU11 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU12 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU13 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU14 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU15 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU16 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU17 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU18 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU19 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU20 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU21 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU22 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU23 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU24 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU25 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU26 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU27 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU28 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU29 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU30 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU31 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU32 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU33 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU34 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU35 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU36 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU37 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU38 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU39 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU40 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU41 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU42 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU43 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU44 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU45 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU46 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: CPU47 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:06 localhost.localdomain kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Dec 16 10:14:06 localhost.localdomain kernel: Loading compiled-in X.509 certificates
Dec 16 10:14:06 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux Driver Update Program (key 3): bf57f3e87362bc7229d9f465321773dfd1f77a80'
Dec 16 10:14:06 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kpatch signing key: 4d38fd864ebe18c5f0b72e3852e2014c3a676fc8'
Dec 16 10:14:06 localhost.localdomain kernel: Loaded X.509 cert 'Red Hat Enterprise Linux kernel signing key: 024834c1c880cbe64486566a7d0555fe8211701e'
Dec 16 10:14:06 localhost.localdomain kernel: registered taskstats version 1
Dec 16 10:14:06 localhost.localdomain kernel: Key type trusted registered
Dec 16 10:14:06 localhost.localdomain kernel: Key type encrypted registered
Dec 16 10:14:06 localhost.localdomain kernel: IMA: No TPM chip found, activating TPM-bypass!
Dec 16 10:14:06 localhost.localdomain kernel: rtc_cmos 00:00: setting system clock to 2016-12-16 15:14:06 UTC (1481901246)
Dec 16 10:14:06 localhost.localdomain kernel: Freeing unused kernel memory: 1684k freed
Dec 16 10:14:06 localhost.localdomain kernel: type=1404 audit(1481901246.504:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2.1: new low-speed USB device number 4 using ehci-pci
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: 2048 avtab hash slots, 105085 rules.
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: 2048 avtab hash slots, 105085 rules.
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: 8 users, 14 roles, 4981 types, 305 bools, 1 sens, 1024 cats
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: 91 classes, 105085 rules
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: Completing initialization.
Dec 16 10:14:06 localhost.localdomain kernel: SELinux: Setting up existing superblocks.
Dec 16 10:14:06 localhost.localdomain kernel: type=1403 audit(1481901246.723:3): policy loaded auid=4294967295 ses=4294967295
Dec 16 10:14:06 localhost.localdomain systemd[1]: Successfully loaded SELinux policy in 221.689ms.
Dec 16 10:14:06 localhost.localdomain kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Dec 16 10:14:06 localhost.localdomain systemd[1]: Inserted module 'ip_tables'
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2.1: New USB device found, idVendor=046b, idProduct=ff10
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2.1: Product: Virtual Keyboard and Mouse
Dec 16 10:14:06 localhost.localdomain kernel: usb 1-1.2.1: Manufacturer: American Megatrends Inc.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Relabelled /dev and /run in 10.420ms.
Dec 16 10:14:06 localhost.localdomain kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.0/input/input2
Dec 16 10:14:06 localhost.localdomain 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)
Dec 16 10:14:06 localhost.localdomain systemd[1]: Detected architecture x86-64.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Set hostname to <localhost.localdomain>.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Reached target Encrypted Volumes.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Encrypted Volumes.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Reached target Swap.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Swap.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Created slice Root Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Root Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Listening on udev Kernel Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting udev Kernel Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Listening on Delayed Shutdown Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Delayed Shutdown Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Created slice User and Session Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting User and Session Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Created slice System Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting System Slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Created slice system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting system-selinux\x2dpolicy\x2dmigrate\x2dlocal\x2dchanges.slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Created slice system-getty.slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting system-getty.slice.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Collect Read-Ahead Data...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Listening on Journal Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Journal Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Journal Service...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounting POSIX Message Queue File System...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Create list of required static device nodes for the current kernel...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounting Huge Pages File System...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounting Debug File System...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Reached target Slices.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Slices.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Listening on udev Control Socket.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting udev Control Socket.
Dec 16 10:14:06 localhost.localdomain kernel: hid-generic 0003:046B:FF10.0001: input,hidraw0: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.2.1/input0
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounted POSIX Message Queue File System.
Dec 16 10:14:06 localhost.localdomain kernel: input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.1/input/input3
Dec 16 10:14:06 localhost.localdomain kernel: hid-generic 0003:046B:FF10.0002: input,hidraw1: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.2.1/input1
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounted Debug File System.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounted Huge Pages File System.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Collect Read-Ahead Data.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Create list of required static device nodes for the current kernel.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Remount Root and Kernel File Systems...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Setup Virtual Console...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Create Static Device Nodes in /dev...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounting Configuration File System...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Apply Kernel Variables...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Remount Root and Kernel File Systems.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Mounted Configuration File System.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Create Static Device Nodes in /dev.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Apply Kernel Variables.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting udev Kernel Device Manager...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Reached target Local File Systems (Pre).
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Local File Systems (Pre).
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Load/Save Random Seed...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Configure read-only root support...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Rebuild Hardware Database...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Load/Save Random Seed.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started udev Kernel Device Manager.
Dec 16 10:14:06 localhost.localdomain systemd-journal[325]: Journal started
Dec 16 10:14:06 localhost.localdomain systemd-udevd[352]: starting version 219
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Journal Service.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Configure read-only root support.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Reached target Local File Systems.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Local File Systems.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Migrate local SELinux policy changes from the old store structure to the new structure...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Rebuild Journal Catalog...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Flush Journal to Persistent Storage...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Migrate local SELinux policy changes from the old store structure to the new structure.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Rebuild Journal Catalog.
Dec 16 10:14:06 localhost.localdomain systemd-journal[325]: Runtime journal is using 8.0M (max allowed 4.0G, trying to leave 4.0G free of 62.8G available → current limit 4.0G).
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Flush Journal to Persistent Storage.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Create Volatile Files and Directories...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Create Volatile Files and Directories.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Security Auditing Service...
Dec 16 10:14:06 localhost.localdomain auditd[386]: Started dispatcher: /sbin/audispd pid: 389
Dec 16 10:14:06 localhost.localdomain kernel: type=1305 audit(1481901246.871:4): audit_pid=386 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 res=1
Dec 16 10:14:06 localhost.localdomain audispd[389]: priority_boost_parser called with: 4
Dec 16 10:14:06 localhost.localdomain audispd[389]: max_restarts_parser called with: 10
Dec 16 10:14:06 localhost.localdomain audispd[389]: No plugins found, exiting
Dec 16 10:14:06 localhost.localdomain auditd[386]: Init complete, auditd 2.6.5 listening for events (startup state enable)
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Setup Virtual Console.
Dec 16 10:14:06 localhost.localdomain augenrules[387]: /usr/sbin/restorecon set context /etc/audit/audit.rules->system_u:object_r:auditd_etc_t:s0 failed:'Operation not supported'
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Security Auditing Service.
Dec 16 10:14:06 localhost.localdomain systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Dec 16 10:14:06 localhost.localdomain systemd[1]: Started Update UTMP about System Boot/Shutdown.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Rebuild Hardware Database.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting udev Coldplug all Devices...
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Update is Completed...
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Update is Completed.
Dec 16 10:14:07 localhost.localdomain kernel: ipmi message handler version 39.2
Dec 16 10:14:07 localhost.localdomain kernel: FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
Dec 16 10:14:07 localhost.localdomain kernel: IPMI System Interface driver.
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: probing via SMBIOS
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: Adding SMBIOS-specified kcs state machine
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: probing via SPMI
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: SPMI: io 0xca2 regsize 1 spacing 1 irq 0
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Dec 16 10:14:07 localhost.localdomain kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Dec 16 10:14:07 localhost.localdomain kernel: dca service started, version 1.12.1
Dec 16 10:14:07 localhost.localdomain kernel: mei_me 0000:00:16.0: Device doesn't have valid ME Interface
Dec 16 10:14:07 localhost.localdomain kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Dec 16 10:14:07 localhost.localdomain kernel: libata version 3.00 loaded.
Dec 16 10:14:07 localhost.localdomain kernel: megasas: 06.811.02.00-rh1
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: FW now in Ready state
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 36 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 37 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 38 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 39 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 40 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 41 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 42 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 43 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 44 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 45 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 46 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 47 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 48 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 49 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 50 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 51 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 52 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 53 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 54 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 55 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 56 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 57 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 58 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 59 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 60 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 61 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 62 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 63 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 64 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 65 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 66 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 67 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 68 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 69 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 70 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 71 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 74 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 75 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 76 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 77 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 78 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 79 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 80 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 81 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 82 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 83 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 84 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: irq 85 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware supports msix : (96)
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: current msix/online cpus : (48/48)
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: RDPQ mode : (disabled)
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Current firmware maximum commands: 928 LDIO threshold: 0
Dec 16 10:14:07 localhost.localdomain kernel: EDAC MC: Ver: 3.0.0
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:11.4: version 3.0
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:11.4: irq 86 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:11.4: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0xf impl SATA mode
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:11.4: flags: 64bit ncq pm led clo pio slum part ems apst
Dec 16 10:14:07 localhost.localdomain kernel: PTP clock support registered
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa0
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffc
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6ffd
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f60
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 16 10:14:07 localhost.localdomain kernel: [drm] Initialized drm 1.1.0 20060810
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fa8
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f71
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faa
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fab
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fac
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6fad
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6faf
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f68
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f79
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6a
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6b
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6c
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Seeking for: PCI ID 8086:6f6d
Dec 16 10:14:07 localhost.localdomain kernel: EDAC MC0: Giving out device to 'sbridge_edac.c' 'Broadwell Socket#0': DEV 0000:ff:12.0
Dec 16 10:14:07 localhost.localdomain kernel: nvme 0000:81:00.0: irq 87 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: nvme 0000:82:00.0: irq 89 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: EDAC MC1: Giving out device to 'sbridge_edac.c' 'Broadwell Socket#1': DEV 0000:7f:12.0
Dec 16 10:14:07 localhost.localdomain kernel: EDAC sbridge: Ver: 1.1.1
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 4.4.0-k-rh7.3
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe: Copyright (c) 1999-2016 Intel Corporation.
Dec 16 10:14:07 localhost.localdomain kernel: pmd_set_huge: Cannot satisfy [mem 0xc6400000-0xc6600000] with a huge-page mapping due to MTRR override.
Dec 16 10:14:07 localhost.localdomain kernel: scsi host1: ahci
Dec 16 10:14:07 localhost.localdomain kernel: scsi host2: ahci
Dec 16 10:14:07 localhost.localdomain kernel: scsi host3: ahci
Dec 16 10:14:07 localhost.localdomain kernel: power_meter ACPI000D:00: Found ACPI power meter.
Dec 16 10:14:07 localhost.localdomain kernel: scsi host4: ahci
Dec 16 10:14:07 localhost.localdomain kernel: ata1: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18100 irq 86
Dec 16 10:14:07 localhost.localdomain kernel: ata2: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18180 irq 86
Dec 16 10:14:07 localhost.localdomain kernel: ata3: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18200 irq 86
Dec 16 10:14:07 localhost.localdomain kernel: ata4: SATA max UDMA/133 abar m2048@0xc7d18000 port 0xc7d18280 irq 86
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:1f.2: irq 90 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Dec 16 10:14:07 localhost.localdomain kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
Dec 16 10:14:07 localhost.localdomain kernel: power_meter ACPI000D:00: Ignoring unsafe software power cap!
Dec 16 10:14:07 localhost.localdomain kernel: input: PC Speaker as /devices/platform/pcspkr/input/input4
Dec 16 10:14:07 localhost.localdomain kernel: wmi: Mapper loaded
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Init cmd success
Dec 16 10:14:07 localhost.localdomain kernel: [drm] AST 2400 detected
Dec 16 10:14:07 localhost.localdomain kernel: [drm] Analog VGA only
Dec 16 10:14:07 localhost.localdomain kernel: [drm] dram 1632000000 1 16 00800000
Dec 16 10:14:07 localhost.localdomain kernel: [TTM] Zone kernel: Available graphics memory: 65954258 kiB
Dec 16 10:14:07 localhost.localdomain kernel: scsi host5: ahci
Dec 16 10:14:07 localhost.localdomain kernel: [TTM] Zone dma32: Available graphics memory: 2097152 kiB
Dec 16 10:14:07 localhost.localdomain kernel: scsi host6: ahci
Dec 16 10:14:07 localhost.localdomain kernel: [TTM] Initializing pool allocator
Dec 16 10:14:07 localhost.localdomain kernel: scsi host7: ahci
Dec 16 10:14:07 localhost.localdomain kernel: scsi host8: ahci
Dec 16 10:14:07 localhost.localdomain kernel: scsi host9: ahci
Dec 16 10:14:07 localhost.localdomain kernel: [TTM] Initializing DMA pool allocator
Dec 16 10:14:07 localhost.localdomain kernel: scsi host10: ahci
Dec 16 10:14:07 localhost.localdomain kernel: ata5: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12100 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: ata6: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12180 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: ata7: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12200 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: ata8: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12280 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: ata9: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12300 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: ata10: SATA max UDMA/133 abar m2048@0xc7d12000 port 0xc7d12380 irq 90
Dec 16 10:14:07 localhost.localdomain kernel: fbcon: astdrmfb (fb0) is primary device
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware type : Extended VD(240 VD)firmware
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: controller type : MR(1024MB)
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Online Controller Reset(OCR) : Enabled
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Secure JBOD support : Yes
Dec 16 10:14:07 localhost.localdomain kernel: ipmi device interface
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si ipmi_si.0: Found new BMC (man_id: 0x001c4c, prod_id: 0x3242, dev_id: 0x20)
Dec 16 10:14:07 localhost.localdomain kernel: ipmi_si ipmi_si.0: IPMI kcs interface initialized
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: INIT adapter done
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: Jbod map is not supported megasas_setup_jbod_map 5000
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: pci id : (0x1000)/(0x005d)/(0x152d)/(0x89cb)
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: unevenspan support : no
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: firmware crash dump : no
Dec 16 10:14:07 localhost.localdomain kernel: megaraid_sas 0000:03:00.0: jbod sync map : no
Dec 16 10:14:07 localhost.localdomain kernel: scsi host0: Avago SAS based MegaRAID driver
Dec 16 10:14:07 localhost.localdomain kernel: scsi 0:0:8:0: Enclosure QUANTA S2B 1U 2.5 1000 PQ: 0 ANSI: 5
Dec 16 10:14:07 localhost.localdomain kernel: Console: switching to colour frame buffer device 128x48
Dec 16 10:14:07 localhost.localdomain kernel: iTCO_vendor_support: vendor-support=0
Dec 16 10:14:07 localhost.localdomain kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Dec 16 10:14:07 localhost.localdomain kernel: iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Dec 16 10:14:07 localhost.localdomain kernel: ast 0000:07:00.0: fb0: astdrmfb frame buffer device
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started udev Coldplug all Devices.
Dec 16 10:14:07 localhost.localdomain kernel: [drm] Initialized ast 0.1.0 20120228 for 0000:07:00.0 on minor 0
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Show Plymouth Boot Screen...
Dec 16 10:14:07 localhost.localdomain kernel: scsi 0:0:8:0: Attached scsi generic sg0 type 13
Dec 16 10:14:07 localhost.localdomain kernel: ses 0:0:8:0: Attached Enclosure device
Dec 16 10:14:07 localhost.localdomain systemd[1]: Reached target System Initialization.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting System Initialization.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Listening on D-Bus System Message Bus Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting D-Bus System Message Bus Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Daily Cleanup of Temporary Directories.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Daily Cleanup of Temporary Directories.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Reached target Timers.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Timers.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Listening on Open-iSCSI iscsid Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Open-iSCSI iscsid Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Flexible branding.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Flexible branding.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Listening on Open-iSCSI iscsiuio Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Open-iSCSI iscsiuio Socket.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Reached target Sockets.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Sockets.
Dec 16 10:14:07 localhost.localdomain kernel: AES CTR mode by8 optimization enabled
Dec 16 10:14:07 localhost.localdomain kernel: alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 91 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 92 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 93 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 94 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 95 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 96 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 97 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 98 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 99 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 100 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 101 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 102 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 103 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 104 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 105 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 106 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 107 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 108 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 109 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 110 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 111 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 112 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 113 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 114 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 115 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 116 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 117 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 118 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 119 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 120 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 121 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 122 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 123 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 124 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 125 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 126 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 127 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 128 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 129 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 130 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 131 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 132 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 133 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 134 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 135 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 136 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 137 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 138 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: irq 139 for MSI/MSI-X
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:07 localhost.localdomain kernel: alg: No test for crc32 (crc32-pclmul)
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: Found RAPL domain package
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: Found RAPL domain dram
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: DRAM domain energy unit 15300pj
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: Found RAPL domain package
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: Found RAPL domain dram
Dec 16 10:14:07 localhost.localdomain kernel: intel_rapl: DRAM domain energy unit 15300pj
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: 2c:60:0c:ca:78:8e
Dec 16 10:14:07 localhost.localdomain kernel: ata2: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata3: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata1: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata4: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata9: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata7: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata5: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata6: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata10: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ata8: SATA link down (SStatus 0 SControl 300)
Dec 16 10:14:07 localhost.localdomain kernel: ixgbe 0000:01:00.0: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:07 localhost.localdomain systemd[1]: Received SIGRTMIN+20 from PID 628 (plymouthd).
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Show Plymouth Boot Screen.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Forward Password Requests to Plymouth Directory Watch.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Reached target Paths.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Paths.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Reached target Basic System.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Basic System.
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting OpenSSH Server Key Generation...
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU0 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU0 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU1 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU1 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU2 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU2 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU3 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU3 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU4 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU4 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU5 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU5 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU6 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU6 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU7 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU7 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU8 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU8 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU9 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU9 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU10 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU10 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU11 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU11 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU12 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU12 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU13 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU13 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU14 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU14 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU15 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU15 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU16 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU16 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU17 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU17 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU18 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU18 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU19 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU19 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU20 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU20 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU21 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU21 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU22 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU22 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU23 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU23 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU24 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU24 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU25 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU25 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU26 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU26 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU27 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU27 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU28 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU28 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU29 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU29 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU30 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU30 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU31 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU31 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU32 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU32 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU33 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU33 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU34 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU34 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU35 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU35 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU36 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU36 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU37 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU37 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU38 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU38 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU39 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU39 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU40 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU40 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU41 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU41 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU42 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU42 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU43 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU43 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU44 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU44 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU45 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU45 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU46 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU46 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU47 sig=0x406f1, pf=0x1, revision=0xb000014
Dec 16 10:14:08 localhost.localdomain kernel: microcode: CPU47 updated to revision 0xb00001d, date = 2016-06-06
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 141 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 142 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 143 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 144 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 145 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 146 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 147 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 148 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 149 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 150 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 151 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 152 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 153 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 154 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 155 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 156 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 157 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 158 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 159 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 160 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 161 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 162 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 163 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 164 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 165 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 166 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 167 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 168 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 169 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 170 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 171 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 172 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 173 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 174 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 175 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 176 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 177 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 178 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 179 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 180 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 181 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 182 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 183 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 184 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 185 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 186 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 187 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 188 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: irq 189 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Login Service...
Dec 16 10:14:07 localhost.localdomain systemd[1]: Starting Load CPU microcode update...
Dec 16 10:14:08 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.systemd1'
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: 2c:60:0c:ca:78:8f
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started D-Bus System Message Bus.
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: Generating SSH2 RSA host key: /sbin/restorecon set context /etc/ssh/ssh_host_rsa_key->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: /sbin/restorecon set context /etc/ssh/ssh_host_rsa_key.pub->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting D-Bus System Message Bus...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.1867] NetworkManager (version 1.4.0-13.el7_3) is starting...
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: [ OK ]
Dec 16 10:14:08 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.systemd1'
Dec 16 10:14:08 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Network Manager...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.1869] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf)
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: Generating SSH2 ECDSA host key: /sbin/restorecon set context /etc/ssh/ssh_host_ecdsa_key->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: /sbin/restorecon set context /etc/ssh/ssh_host_ecdsa_key.pub->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started irqbalance daemon.
Dec 16 10:14:08 localhost.localdomain chronyd[702]: chronyd version 2.1.1 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +DEBUG +ASYNCDNS +IPV6 +SECHASH)
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: [ OK ]
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:01:00.1: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting irqbalance daemon...
Dec 16 10:14:08 localhost.localdomain chronyd[702]: Generated key 1
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: Generating SSH2 ED25519 host key: /sbin/restorecon set context /etc/ssh/ssh_host_ed25519_key->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: /sbin/restorecon set context /etc/ssh/ssh_host_ed25519_key.pub->system_u:object_r:sshd_key_t:s0 failed:'Operation not supported'
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting NTP client/server...
Dec 16 10:14:08 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:14:08 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.1936] manager[0x7ff155afa0d0]: monitoring kernel firmware directory '/lib/firmware'.
Dec 16 10:14:08 localhost.localdomain sshd-keygen[668]: [ OK ]
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Dec 16 10:14:08 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.1965] dns-mgr[0x7ff155ad5970]: init: dns=default, rc-manager=file
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Dec 16 10:14:08 localhost.localdomain dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Authorization Manager...
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 190 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 191 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 192 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 193 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 194 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 195 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 196 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 197 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 198 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 199 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 200 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 201 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 202 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 203 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 204 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 205 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 206 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 207 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 208 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 209 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 210 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 211 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 212 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 213 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 214 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 215 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 216 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 217 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 218 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 219 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 220 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 221 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 222 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 223 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 224 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 225 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 226 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 227 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 228 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 229 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 230 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 231 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 232 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 233 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 234 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 235 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 236 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 237 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: irq 238 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:08 localhost.localdomain polkitd[709]: Started polkitd version 0.112
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Dump dmesg to /var/log/dmesg...
Dec 16 10:14:08 localhost.localdomain smartd[704]: smartd 6.2 2013-07-26 r3841 [x86_64-linux-3.10.0-514.2.2.el7.x86_64] (local build)
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: 2c:60:0c:84:31:5f
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started OpenSSH Server Key Generation.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Load CPU microcode update.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Opened configuration file /etc/smartmontools/smartd.conf
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Dump dmesg to /var/log/dmesg.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started NTP client/server.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_09], opened
Dec 16 10:14:08 localhost.localdomain systemd-logind[669]: New seat seat0.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_09], [HITACHI HUC109030CSS600 A5B0], lu id: 0x5000cca06e44b778, S/N: W5H6TJWG, 300 GB
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Network Manager.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_09], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Authorization Manager.
Dec 16 10:14:08 localhost.localdomain kernel: ixgbe 0000:04:00.0: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_10], opened
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Login Service.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_10], [HITACHI HUC109030CSS600 A5B0], lu id: 0x5000cca06e4496e4, S/N: W5H6RBME, 300 GB
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_10], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain systemd-logind[669]: Watching system buttons on /dev/input/event1 (Power Button)
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_11], opened
Dec 16 10:14:08 localhost.localdomain systemd-logind[669]: Watching system buttons on /dev/input/event0 (Power Button)
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_11], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2b7807, S/N: S47042Q60000K61060MM, 1.00 TB
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Network Manager Wait Online...
Dec 16 10:14:08 localhost.localdomain polkitd[709]: Loading rules from directory /etc/polkit-1/rules.d
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 16 10:14:08 localhost.localdomain polkitd[709]: Loading rules from directory /usr/share/polkit-1/rules.d
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting Hostname Service...
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_11], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Hostname Service.
Dec 16 10:14:08 localhost.localdomain polkitd[709]: Finished loading, compiling and executing 2 rules
Dec 16 10:14:08 localhost.localdomain systemd[1]: Started Network Manager Wait Online.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_12], opened
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 240 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 241 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 242 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 243 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 244 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 245 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 246 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 247 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 248 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 249 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 250 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 251 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 252 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 253 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 254 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 255 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 256 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 257 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 258 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 259 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 260 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 261 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 262 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 263 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 264 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 265 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 266 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 267 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 268 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 269 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 270 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 271 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 272 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 273 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 274 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 275 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 276 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 277 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 278 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 279 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 280 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 281 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 282 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 283 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 284 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 285 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 286 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 287 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: irq 288 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:08 localhost.localdomain systemd[1]: Starting LSB: Bring up/down networking...
Dec 16 10:14:08 localhost.localdomain polkitd[709]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: MAC: 3, PHY: 0, PBA No: 000000-000
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: 2c:60:0c:84:31:60
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_12], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2bd83b, S/N: S4701ZTQ0000K542BVYJ, 1.00 TB
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_12], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_13], opened
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_13], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2ded13, S/N: S47040ZY0000K6105J4N, 1.00 TB
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_13], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_14], opened
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_14], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f30e2f7, S/N: S4703Y520000K6105FCG, 1.00 TB
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_14], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_15], opened
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_15], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2bd4ff, S/N: S4701ZR40000K54680E5, 1.00 TB
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_15], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:04:00.1: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_16], opened
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_16], [SEAGATE ST1000NX0333 E002], lu id: 0x5000c5008f2e3e63, S/N: S47040M90000K6103SBH, 1.00 TB
Dec 16 10:14:09 localhost.localdomain network[742]: Bringing up loopback interface: [ OK ]
Dec 16 10:14:08 localhost.localdomain smartd[704]: Device: /dev/bus/0 [megaraid_disk_16], is SMART capable. Adding to "monitor" list.
Dec 16 10:14:08 localhost.localdomain smartd[704]: Monitoring 0 ATA and 8 SCSI devices
Dec 16 10:14:08 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.3291] settings: loaded plugin ifcfg-rh: (c) 2007 - 2015 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ifcfg-rh.so)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started LSB: Bring up/down networking.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.3295] settings: loaded plugin iBFT: (c) 2014 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ibft.so)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Reached target Network.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.3296] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Network.
Dec 16 10:14:08 localhost.localdomain dbus[675]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Postfix Mail Transport Agent...
Dec 16 10:14:08 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Dynamic System Tuning Daemon...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4384] settings: hostname: using hostnamed
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Dynamic Login...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4385] settings: hostname changed from (none) to "localhost.localdomain"
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 290 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 291 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 292 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 293 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 294 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 295 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 296 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 297 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 298 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 299 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 300 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 301 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 302 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 303 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 304 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 305 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 306 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 307 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 308 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 309 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 310 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 311 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 312 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 313 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 314 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 315 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 316 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 317 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 318 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 319 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 320 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 321 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 322 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 323 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 324 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 325 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 326 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 327 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 328 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 329 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 330 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 331 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 332 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 333 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 334 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 335 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 336 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 337 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: irq 338 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Logout off all iSCSI sessions on shutdown...
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4390] dhcp-init: Using DHCP client 'dhclient'
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Enable periodic update of entitlement certificates....
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4390] manager: WiFi enabled by radio killswitch; enabled by state file
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting System Logging Service...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4391] manager: WWAN enabled by radio killswitch; enabled by state file
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting OpenSSH server daemon...
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: MAC: 3, PHY: 0, PBA No: G36748-005
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: a0:36:9f:53:26:80
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4391] manager: Networking is enabled by state file
Dec 16 10:14:09 localhost.localdomain systemd[1]: Reached target Network is Online.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4392] Loaded device plugin: NMVxlanFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Network is Online.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4392] Loaded device plugin: NMVlanFactory (internal)
Dec 16 10:14:09 localhost.localdomain rhnsd[908]: Starting Spacewalk Daemon: [ OK ]
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Ironic Python Agent.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4392] Loaded device plugin: NMVethFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Ironic Python Agent...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4393] Loaded device plugin: NMTunFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started System Logging Service.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4393] Loaded device plugin: NMMacvlanFactory (internal)
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.0: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Dynamic Login.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4393] Loaded device plugin: NMIPTunnelFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Logout off all iSCSI sessions on shutdown.
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 87 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 89 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 339 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 340 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 341 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 342 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 343 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 344 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 345 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 346 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 347 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 348 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 349 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 350 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 351 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 352 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 353 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 354 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 355 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 356 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 357 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 358 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 359 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 360 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 361 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 362 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 363 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 364 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 365 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 366 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 367 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 368 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 369 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 370 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 371 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 372 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 373 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 374 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 375 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 376 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 377 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 378 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 379 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 380 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 381 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 382 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 383 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 384 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 385 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 386 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 387 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 388 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 389 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 390 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 391 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 392 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 393 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 394 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 395 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 396 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:81:00.0: irq 397 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: nvme 0000:82:00.0: irq 398 for MSI/MSI-X
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4394] Loaded device plugin: NMInfinibandFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Enable periodic update of entitlement certificates..
Dec 16 10:14:09 localhost.localdomain kernel: nvme0n1: p1 p2
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4394] Loaded device plugin: NMEthernetFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started OpenSSH server daemon.
Dec 16 10:14:09 localhost.localdomain kernel: nvme1n1:
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4395] Loaded device plugin: NMBridgeFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Reached target Remote File Systems (Pre).
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4395] Loaded device plugin: NMBondFactory (internal)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Remote File Systems (Pre).
Dec 16 10:14:08 localhost.localdomain nm-dispatcher[721]: req:1 'hostname': new request (4 scripts)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Reached target Remote File Systems.
Dec 16 10:14:08 localhost.localdomain nm-dispatcher[721]: req:1 'hostname': start running ordered scripts...
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Remote File Systems.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4411] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/libnm-device-plugin-team.so)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Crash recovery kernel arming...
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 399 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 400 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 401 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 402 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 403 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 404 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 405 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 406 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 407 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 408 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 409 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 410 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 411 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 412 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 413 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 414 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 415 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 416 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 417 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 418 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 419 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 420 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 421 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 422 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 423 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 424 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 425 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 426 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 427 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 428 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 429 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 430 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 431 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 432 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 433 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 434 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 435 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 436 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 437 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 438 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 439 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 440 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 441 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 442 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 443 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 444 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 445 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 446 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: irq 447 for MSI/MSI-X
Dec 16 10:14:09 localhost.localdomain kernel: ixgbe 0000:83:00.1: Multiqueue Enabled: Rx Queue count = 48, Tx Queue count = 48
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4427] device (lo): link connected
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting LSB: Starts the Spacewalk Daemon...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4444] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:83:00.1: PCI Express bandwidth of 32GT/s available
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:83:00.1: (Speed:5.0GT/s, Width: x8, Encoding Loss:20%)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Permit User Sessions...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4473] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started LSB: Starts the Spacewalk Daemon.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4481] manager: startup complete
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Permit User Sessions.
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.4577] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:83:00.1: MAC: 3, PHY: 0, PBA No: G36748-005
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:83:00.1: a0:36:9f:53:26:82
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Wait for Plymouth Boot Screen to Quit...
Dec 16 10:14:08 localhost.localdomain NetworkManager[687]: <info> [1481901248.7381] manager: (eth2): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Started Command Scheduler.
Dec 16 10:14:09 localhost.localdomain NetworkManager[687]: <info> [1481901249.1945] manager: (eth3): new Ethernet device (/org/freedesktop/NetworkManager/Devices/4)
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Command Scheduler...
Dec 16 10:14:09 localhost.localdomain sshd[900]: Server listening on 0.0.0.0 port 22.
Dec 16 10:14:09 localhost.localdomain systemd[1]: Starting Terminate Plymouth Boot Screen...
Dec 16 10:14:09 localhost.localdomain sshd[900]: Server listening on :: port 22.
Dec 16 10:14:09 localhost.localdomain rhnsd[926]: Spacewalk Services Daemon starting up, check in interval 240 minutes.
Dec 16 10:14:10 localhost.localdomain systemd[1]: Started Postfix Mail Transport Agent.
Dec 16 10:14:09 localhost.localdomain crond[999]: (CRON) INFO (RANDOM_DELAY will be scaled with factor 21% if used.)
Dec 16 10:14:09 localhost.localdomain NetworkManager[687]: <info> [1481901249.7211] manager: (eth4): new Ethernet device (/org/freedesktop/NetworkManager/Devices/5)
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:83:00.1: Intel(R) 10 Gigabit Network Connection
Dec 16 10:14:10 localhost.localdomain kdumpctl[906]: restorecon set context /var/crash->system_u:object_r:kdump_crash_t:s0 failed:'Operation not supported'
Dec 16 10:14:09 localhost.localdomain crond[999]: ((null)) Unauthorized SELinux context=system_u:unconfined_r:unconfined_t:s0 file_context=system_u:object_r:root_t:s0 (/etc/crontab)
Dec 16 10:14:09 localhost.localdomain crond[999]: (root) FAILED (loading cron table)
Dec 16 10:14:10 localhost.localdomain crond[999]: ((null)) Unauthorized SELinux context=system_u:unconfined_r:unconfined_t:s0 file_context=system_u:object_r:root_t:s0 (/etc/cron.d/0hourly)
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain crond[999]: (root) FAILED (loading cron table)
Dec 16 10:14:10 localhost.localdomain systemd[1]: Created slice system-dhcp\x2dinterface.slice.
Dec 16 10:14:10 localhost.localdomain crond[999]: (CRON) INFO (running with inotify support)
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting system-dhcp\x2dinterface.slice.
Dec 16 10:14:10 localhost.localdomain postfix/postfix-script[1432]: starting the Postfix mail system
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens255f0...
Dec 16 10:14:10 localhost.localdomain postfix/master[1449]: daemon started -- version 2.10.1, configuration /etc/postfix
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain NetworkManager[687]: <info> [1481901250.2474] manager: (eth5): new Ethernet device (/org/freedesktop/NetworkManager/Devices/6)
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens3f0...
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens3f1...
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens255f1...
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens6f0...
Dec 16 10:14:10 localhost.localdomain systemd[1]: Configuration file /usr/lib/systemd/system/dhcp-interface@.service is marked executable. Please remove executable permission bits. Proceeding anyway.
Dec 16 10:14:10 localhost.localdomain systemd[1]: Starting DHCP interface ens6f1...
Dec 16 10:14:10 localhost.localdomain systemd[1]: Started Dynamic System Tuning Daemon.
Dec 16 10:14:10 localhost.localdomain kernel: pps pps0: new PPS source ptp0
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:01:00.0: registered PHC device on ens255f0
Dec 16 10:14:10 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 16 10:14:10 localhost.localdomain kdumpctl[906]: Error: /boot/vmlinuz-3.10.0-514.2.2.el7.x86_64 not found.
Dec 16 10:14:10 localhost.localdomain systemd[1]: kdump.service: main process exited, code=exited, status=1/FAILURE
Dec 16 10:14:10 localhost.localdomain kdumpctl[906]: Starting kdump: [FAILED]
Dec 16 10:14:10 localhost.localdomain systemd[1]: Failed to start Crash recovery kernel arming.
Dec 16 10:14:10 localhost.localdomain kernel: pps pps1: new PPS source ptp1
Dec 16 10:14:10 localhost.localdomain kernel: ixgbe 0000:04:00.0: registered PHC device on ens3f0
Dec 16 10:14:10 localhost.localdomain systemd[1]: Unit kdump.service entered failed state.
Dec 16 10:14:10 localhost.localdomain systemd[1]: kdump.service failed.
Dec 16 10:14:11 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 16 10:14:11 localhost.localdomain kernel: pps pps2: new PPS source ptp2
Dec 16 10:14:11 localhost.localdomain kernel: ixgbe 0000:04:00.1: registered PHC device on ens3f1
Dec 16 10:14:11 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 16 10:14:11 localhost.localdomain kernel: pps pps3: new PPS source ptp3
Dec 16 10:14:11 localhost.localdomain kernel: ixgbe 0000:01:00.1: registered PHC device on ens255f1
Dec 16 10:14:11 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 16 10:14:11 localhost.localdomain kernel: pps pps4: new PPS source ptp4
Dec 16 10:14:11 localhost.localdomain kernel: ixgbe 0000:83:00.0: registered PHC device on ens6f0
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: pps pps5: new PPS source ptp5
Dec 16 10:14:12 localhost.localdomain kernel: ixgbe 0000:83:00.1: registered PHC device on ens6f1
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4384] device (eth0): interface index 2 renamed iface from 'eth0' to 'ens255f0'
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4387] device (ens255f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens3f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens255f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f0: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_UP): ens6f1: link is not ready
Dec 16 10:14:12 localhost.localdomain kernel: device ens255f1 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: /usr/lib/python2.7/site-packages/pecan/__init__.py:122: RuntimeWarning: `static_root` is only used when `debug` is True, ignoring
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: RuntimeWarning
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.439 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): iscsistart -f execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.448 899 DEBUG oslo_concurrency.processutils [-] CMD "iscsistart -f" returned: 21 in 0.008s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.448 899 DEBUG oslo_concurrency.processutils [-] u'iscsistart -f' failed. Not Retrying. execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:422
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.449 899 DEBUG root [-] No iscsi connection detected. Skipping iscsi. Error: Unexpected error while running command.
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: Command: iscsistart -f
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: Exit code: 21
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: Stdout: u'Could not get list of targets from firmware.\n'
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: Stderr: u'' _check_for_iscsi /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:91
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.450 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): udevadm settle execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.466 899 DEBUG oslo_concurrency.processutils [-] CMD "udevadm settle" returned: 0 in 0.016s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.467 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "udevadm settle" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.467 899 DEBUG ironic_lib.utils [-] Command stdout is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.467 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:14:12 localhost.localdomain kernel: device ens255f0 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain kernel: device ens3f1 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain kernel: device ens3f0 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain kernel: device ens6f1 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4416] device (eth2): interface index 4 renamed iface from 'eth2' to 'ens3f0'
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.468 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.478 899 DEBUG oslo_concurrency.processutils [-] CMD "lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE" returned: 0 in 0.010s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.479 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.479 899 DEBUG ironic_lib.utils [-] Command stdout is: "KNAME="nvme0n1" MODEL="INTEL SSDPE2MD400G4 " SIZE="400088457216" ROTA="0" TYPE="disk"
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: KNAME="nvme1n1" MODEL="INTEL SSDPE2MD400G4 " SIZE="400088457216" ROTA="0" TYPE="disk"
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.480 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.481 899 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.483 899 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.483 899 DEBUG root [-] TYPE did not match. Wanted: 'disk' but found: '' list_all_block_devices /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:132
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.484 899 INFO root [-] Hardware manager found: ironic_python_agent.hardware:GenericHardwareManager
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.484 899 INFO ironic_python_agent.inspector [-] inspection is enabled with collectors ['default', 'extra-hardware', 'logs']
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.487 899 INFO ironic_python_agent.netutils [-] Interface ens255f1 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain kernel: device ens6f0 entered promiscuous mode
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4418] device (ens3f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.489 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.523 899 INFO ironic_python_agent.netutils [-] Interface ens255f0 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.526 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.561 899 INFO ironic_python_agent.netutils [-] Interface ens3f1 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.563 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.600 899 INFO ironic_python_agent.netutils [-] Interface ens3f0 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.602 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.640 899 INFO ironic_python_agent.netutils [-] Interface ens6f1 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.642 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.672 899 INFO ironic_python_agent.netutils [-] Interface ens6f0 entering promiscuous mode to capture
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.674 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4443] device (eth3): interface index 5 renamed iface from 'eth3' to 'ens3f1'
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.688 899 DEBUG ironic_python_agent.netutils [-] Getting LLDP info for interfaces [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens255f0', <socket._socketobject object at 0x24c2670>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c2830>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)] _get_lldp_info /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:157
Dec 16 10:14:12 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:12.689 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens255f0', <socket._socketobject object at 0x24c2670>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c2830>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4445] device (ens3f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4471] device (eth1): interface index 3 renamed iface from 'eth1' to 'ens255f1'
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4473] device (ens255f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4498] device (eth4): interface index 6 renamed iface from 'eth4' to 'ens6f0'
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4500] device (ens6f0): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4524] device (eth5): interface index 7 renamed iface from 'eth5' to 'ens6f1'
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4526] device (ens6f1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4665] device (ens255f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4674] device (ens3f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4683] device (ens3f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4692] device (ens255f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4700] device (ens6f0): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:12 localhost.localdomain NetworkManager[687]: <info> [1481901252.4709] device (ens6f1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.0879] device (ens255f0): link connected
Dec 16 10:14:14 localhost.localdomain kernel: ixgbe 0000:01:00.0 ens255f0: NIC Link is Up 1 Gbps, Flow Control: RX/TX
Dec 16 10:14:14 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens255f0: link becomes ready
Dec 16 10:14:14 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:14.098 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f0
Dec 16 10:14:14 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:14.098 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c2830>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:14 localhost.localdomain systemd[1]: Received SIGRTMIN+21 from PID 628 (plymouthd).
Dec 16 10:14:14 localhost.localdomain systemd[1]: Started Wait for Plymouth Boot Screen to Quit.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Started Terminate Plymouth Boot Screen.
Dec 16 10:14:14 localhost.localdomain dhcp-all-interfaces.sh[1643]: Inspecting interface: ens255f0...Configured ens255f0
Dec 16 10:14:14 localhost.localdomain systemd[1]: Started Getty on tty1.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Starting Getty on tty1...
Dec 16 10:14:14 localhost.localdomain systemd[1]: Reached target Login Prompts.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Starting Login Prompts.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Reached target Multi-User System.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Starting Multi-User System.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Starting Update UTMP about System Runlevel Changes...
Dec 16 10:14:14 localhost.localdomain systemd[1]: Started Stop Read-Ahead Data Collection 10s After Completed Startup.
Dec 16 10:14:14 localhost.localdomain systemd[1]: Starting Stop Read-Ahead Data Collection 10s After Completed Startup.
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9743] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens255f0 (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28,"System ens255f0")
Dec 16 10:14:14 localhost.localdomain systemd[1]: Started Update UTMP about System Runlevel Changes.
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9756] policy: auto-activating connection 'System ens255f0'
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9778] device (ens255f0): Activation: starting connection 'System ens255f0' (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28)
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9781] device (ens255f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9783] manager: NetworkManager state is now CONNECTING
Dec 16 10:14:15 localhost.localdomain systemd[1]: Started DHCP interface ens255f0.
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9792] device (ens255f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9813] device (ens255f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9828] dhcp4 (ens255f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:14 localhost.localdomain NetworkManager[687]: <info> [1481901254.9852] dhcp4 (ens255f0): dhclient started with pid 2472
Dec 16 10:14:15 localhost.localdomain dhclient[2472]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 7 (xid=0x492cdf64)
Dec 16 10:14:17 localhost.localdomain kernel: ixgbe 0000:01:00.1 ens255f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 16 10:14:17 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens255f1: link becomes ready
Dec 16 10:14:17 localhost.localdomain NetworkManager[687]: <info> [1481901257.9436] device (ens255f1): link connected
Dec 16 10:14:18 localhost.localdomain kernel: ixgbe 0000:83:00.1 ens6f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 16 10:14:18 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens6f1: link becomes ready
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.2549] device (ens6f1): link connected
Dec 16 10:14:18 localhost.localdomain dhcp-all-interfaces.sh[1901]: Inspecting interface: ens6f1...Configured ens6f1
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6615] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens6f1 (6c01aac9-fcbb-f202-48fc-82146b96bce2,"System ens6f1")
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6630] policy: auto-activating connection 'System ens6f1'
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6647] device (ens6f1): Activation: starting connection 'System ens6f1' (6c01aac9-fcbb-f202-48fc-82146b96bce2)
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6650] device (ens6f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6659] device (ens6f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6671] device (ens6f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:18 localhost.localdomain systemd[1]: Started DHCP interface ens6f1.
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6677] dhcp4 (ens6f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:18 localhost.localdomain dhcp-all-interfaces.sh[1828]: Inspecting interface: ens255f1...Configured ens255f1
Dec 16 10:14:18 localhost.localdomain NetworkManager[687]: <info> [1481901258.6700] dhcp4 (ens6f1): dhclient started with pid 2559
Dec 16 10:14:18 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 4 (xid=0xaf9f704)
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0262] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens255f1 (22db92a1-3453-1bc2-c0ec-1e82dc411b63,"System ens255f1")
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0276] policy: auto-activating connection 'System ens255f1'
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0293] device (ens255f1): Activation: starting connection 'System ens255f1' (22db92a1-3453-1bc2-c0ec-1e82dc411b63)
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0296] device (ens255f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0303] device (ens255f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0318] device (ens255f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:19 localhost.localdomain systemd[1]: Started DHCP interface ens255f1.
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0324] dhcp4 (ens255f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.0346] dhcp4 (ens255f1): dhclient started with pid 2587
Dec 16 10:14:19 localhost.localdomain dhclient[2587]: DHCPDISCOVER on ens255f1 to 255.255.255.255 port 67 interval 4 (xid=0x7bc39e86)
Dec 16 10:14:19 localhost.localdomain dhclient[2587]: DHCPREQUEST on ens255f1 to 255.255.255.255 port 67 (xid=0x7bc39e86)
Dec 16 10:14:19 localhost.localdomain dhclient[2587]: DHCPOFFER from 192.0.2.1
Dec 16 10:14:19 localhost.localdomain dhclient[2587]: DHCPACK from 192.0.2.1 (xid=0x7bc39e86)
Dec 16 10:14:19 localhost.localdomain systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 16 10:14:19 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:14:19 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2987] dhcp4 (ens255f1): address 192.0.2.151
Dec 16 10:14:19 localhost.localdomain systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2987] dhcp4 (ens255f1): plen 24 (255.255.255.0)
Dec 16 10:14:19 localhost.localdomain systemd[1]: Unit iscsi.service cannot be reloaded because it is inactive.
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2988] dhcp4 (ens255f1): gateway 192.0.2.1
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2988] dhcp4 (ens255f1): server identifier 192.0.2.1
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2988] dhcp4 (ens255f1): lease time 120
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.2988] dhcp4 (ens255f1): state changed unknown -> bound
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.3005] device (ens255f1): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Dec 16 10:14:19 localhost.localdomain dhclient[2587]: bound to 192.0.2.151 -- renewal in 51 seconds.
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.3017] device (ens255f1): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.3022] device (ens255f1): state change: secondaries -> activated (reason 'none') [90 100 0]
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.3029] policy: set 'System ens255f1' (ens255f1) as default for IPv4 routing and DNS
Dec 16 10:14:19 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:19.596 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f1
Dec 16 10:14:19 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:19.597 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:19 localhost.localdomain NetworkManager[687]: <info> [1481901259.3034] device (ens255f1): Activation: successful, device activated.
Dec 16 10:14:19 localhost.localdomain dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:14:19 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:14:19 localhost.localdomain nm-dispatcher[2610]: req:1 'up' [ens255f1]: new request (4 scripts)
Dec 16 10:14:19 localhost.localdomain nm-dispatcher[2610]: req:1 'up' [ens255f1]: start running ordered scripts...
Dec 16 10:14:20 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:20.098 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f1
Dec 16 10:14:20 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:20.098 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:22 localhost.localdomain dhclient[2472]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 8 (xid=0x492cdf64)
Dec 16 10:14:23 localhost.localdomain kernel: ixgbe 0000:83:00.0 ens6f0: NIC Link is Up 10 Gbps, Flow Control: None
Dec 16 10:14:23 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens6f0: link becomes ready
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.0725] device (ens6f0): link connected
Dec 16 10:14:23 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 9 (xid=0xaf9f704)
Dec 16 10:14:23 localhost.localdomain dhcp-all-interfaces.sh[1864]: Inspecting interface: ens6f0...Configured ens6f0
Dec 16 10:14:23 localhost.localdomain kernel: ixgbe 0000:04:00.0 ens3f0: NIC Link is Up 10 Gbps, Flow Control: None
Dec 16 10:14:23 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens3f0: link becomes ready
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.3075] device (ens3f0): link connected
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4032] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens6f0 (35620381-6232-4966-541e-dfdfa039f804,"System ens6f0")
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4046] policy: auto-activating connection 'System ens6f0'
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4062] device (ens6f0): Activation: starting connection 'System ens6f0' (35620381-6232-4966-541e-dfdfa039f804)
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4066] device (ens6f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4074] device (ens6f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4086] device (ens6f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4093] dhcp4 (ens6f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.4115] dhcp4 (ens6f0): dhclient started with pid 2680
Dec 16 10:14:23 localhost.localdomain dhclient[2680]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 6 (xid=0x70c5d770)
Dec 16 10:14:23 localhost.localdomain systemd[1]: Started DHCP interface ens6f0.
Dec 16 10:14:23 localhost.localdomain kernel: ixgbe 0000:04:00.1 ens3f1: NIC Link is Up 10 Gbps, Flow Control: None
Dec 16 10:14:23 localhost.localdomain kernel: IPv6: ADDRCONF(NETDEV_CHANGE): ens3f1: link becomes ready
Dec 16 10:14:23 localhost.localdomain NetworkManager[687]: <info> [1481901263.6571] device (ens3f1): link connected
Dec 16 10:14:24 localhost.localdomain dhcp-all-interfaces.sh[1703]: Inspecting interface: ens3f0...Configured ens3f0
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4182] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens3f0 (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1,"System ens3f0")
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4196] policy: auto-activating connection 'System ens3f0'
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4213] device (ens3f0): Activation: starting connection 'System ens3f0' (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1)
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4217] device (ens3f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4224] device (ens3f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4241] device (ens3f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4247] dhcp4 (ens3f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.4268] dhcp4 (ens3f0): dhclient started with pid 2713
Dec 16 10:14:24 localhost.localdomain dhcp-all-interfaces.sh[1800]: Inspecting interface: ens3f1...Configured ens3f1
Dec 16 10:14:24 localhost.localdomain dhclient[2713]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 7 (xid=0x216b881a)
Dec 16 10:14:24 localhost.localdomain systemd[1]: Started DHCP interface ens3f0.
Dec 16 10:14:24 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:24.751 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f0
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7709] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-ens3f1 (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86,"System ens3f1")
Dec 16 10:14:24 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:24.751 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7723] policy: auto-activating connection 'System ens3f1'
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7739] device (ens3f1): Activation: starting connection 'System ens3f1' (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86)
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7743] device (ens3f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7750] device (ens3f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:14:24 localhost.localdomain systemd[1]: Started DHCP interface ens3f1.
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7766] device (ens3f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:14:24 localhost.localdomain systemd[1]: Reached target Network (Pre).
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7772] dhcp4 (ens3f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:14:24 localhost.localdomain systemd[1]: Startup finished in 8.065s (kernel) + 18.421s (userspace) = 26.487s.
Dec 16 10:14:24 localhost.localdomain NetworkManager[687]: <info> [1481901264.7796] dhcp4 (ens3f1): dhclient started with pid 2740
Dec 16 10:14:24 localhost.localdomain systemd[1]: Starting Network (Pre).
Dec 16 10:14:25 localhost.localdomain dhclient[2740]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 8 (xid=0x3dfe64da)
Dec 16 10:14:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:25.257 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f1
Dec 16 10:14:25 localhost.localdomain kernel: device ens255f1 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:25.257 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens6f0', <socket._socketobject object at 0x24c28a0>)], timeout: 30.0
Dec 16 10:14:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:25.258 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f0
Dec 16 10:14:25 localhost.localdomain kernel: device ens255f0 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain kernel: device ens3f1 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain kernel: device ens3f0 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain kernel: device ens6f1 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain kernel: device ens6f0 left promiscuous mode
Dec 16 10:14:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:25.444 899 DEBUG ironic_python_agent.inspector [-] Still waiting for interfaces ['ens255f0', 'ens3f1', 'ens3f0', 'ens6f1', 'ens6f0'] to get IP addresses wait_for_dhcp /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:264
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.447 899 INFO ironic_python_agent.netutils [-] Interface ens255f1 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens255f1 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.449 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.530 899 INFO ironic_python_agent.netutils [-] Interface ens255f0 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens255f0 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.533 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.617 899 INFO ironic_python_agent.netutils [-] Interface ens3f1 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens3f1 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.619 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.703 899 INFO ironic_python_agent.netutils [-] Interface ens3f0 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens3f0 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.705 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.786 899 INFO ironic_python_agent.netutils [-] Interface ens6f1 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens6f1 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.788 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.876 899 INFO ironic_python_agent.netutils [-] Interface ens6f0 entering promiscuous mode to capture
Dec 16 10:14:27 localhost.localdomain kernel: device ens6f0 entered promiscuous mode
Dec 16 10:14:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.878 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:28 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.975 899 DEBUG ironic_python_agent.netutils [-] Getting LLDP info for interfaces [('ens255f1', <socket._socketobject object at 0x24c2910>), ('ens255f0', <socket._socketobject object at 0x24c2980>), ('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens3f0', <socket._socketobject object at 0x24c26e0>), ('ens6f1', <socket._socketobject object at 0x24c2670>), ('ens6f0', <socket._socketobject object at 0x24c2750>)] _get_lldp_info /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:157
Dec 16 10:14:28 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:27.976 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c2910>), ('ens255f0', <socket._socketobject object at 0x24c2980>), ('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens3f0', <socket._socketobject object at 0x24c26e0>), ('ens6f1', <socket._socketobject object at 0x24c2670>), ('ens6f0', <socket._socketobject object at 0x24c2750>)], timeout: 30.0
Dec 16 10:14:29 localhost.localdomain dhclient[2680]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 13 (xid=0x70c5d770)
Dec 16 10:14:30 localhost.localdomain dhclient[2472]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 20 (xid=0x492cdf64)
Dec 16 10:14:31 localhost.localdomain dhclient[2713]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 10 (xid=0x216b881a)
Dec 16 10:14:32 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 8 (xid=0xaf9f704)
Dec 16 10:14:33 localhost.localdomain dhclient[2740]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 11 (xid=0x3dfe64da)
Dec 16 10:14:39 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:39.728 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f0
Dec 16 10:14:39 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:39.728 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c2910>), ('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens3f0', <socket._socketobject object at 0x24c26e0>), ('ens6f1', <socket._socketobject object at 0x24c2670>), ('ens6f0', <socket._socketobject object at 0x24c2750>)], timeout: 30.0
Dec 16 10:14:40 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 13 (xid=0xaf9f704)
Dec 16 10:14:41 localhost.localdomain dhclient[2713]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 12 (xid=0x216b881a)
Dec 16 10:14:42 localhost.localdomain dhclient[2680]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 13 (xid=0x70c5d770)
Dec 16 10:14:44 localhost.localdomain dhclient[2740]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 21 (xid=0x3dfe64da)
Dec 16 10:14:44 localhost.localdomain systemd[1]: Starting Stop Read-Ahead Data Collection...
Dec 16 10:14:44 localhost.localdomain systemd[1]: Started Stop Read-Ahead Data Collection.
Dec 16 10:14:49 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:49.606 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f1
Dec 16 10:14:49 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:49.606 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c2910>), ('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens3f0', <socket._socketobject object at 0x24c26e0>), ('ens6f0', <socket._socketobject object at 0x24c2750>)], timeout: 30.0
Dec 16 10:14:50 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:50.111 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f1
Dec 16 10:14:50 localhost.localdomain dhclient[2472]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 19 (xid=0x492cdf64)
Dec 16 10:14:50 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:50.112 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens3f0', <socket._socketobject object at 0x24c26e0>), ('ens6f0', <socket._socketobject object at 0x24c2750>)], timeout: 30.0
Dec 16 10:14:53 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 8 (xid=0xaf9f704)
Dec 16 10:14:53 localhost.localdomain dhclient[2713]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 21 (xid=0x216b881a)
Dec 16 10:14:54 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:54.757 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f0
Dec 16 10:14:54 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:54.758 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c29f0>), ('ens6f0', <socket._socketobject object at 0x24c2750>)], timeout: 30.0
Dec 16 10:14:55 localhost.localdomain dhclient[2680]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 8 (xid=0x70c5d770)
Dec 16 10:14:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:55.261 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f0
Dec 16 10:14:55 localhost.localdomain kernel: device ens255f1 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:55.262 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:14:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:55.262 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f1
Dec 16 10:14:55 localhost.localdomain kernel: device ens255f0 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain kernel: device ens3f1 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain kernel: device ens3f0 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain kernel: device ens6f1 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain kernel: device ens6f0 left promiscuous mode
Dec 16 10:14:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:55.427 899 DEBUG ironic_python_agent.inspector [-] Still waiting for interfaces ['ens255f0', 'ens3f1', 'ens3f0', 'ens6f1', 'ens6f0'] to get IP addresses wait_for_dhcp /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:264
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.430 899 INFO ironic_python_agent.netutils [-] Interface ens255f1 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens255f1 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.432 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.507 899 INFO ironic_python_agent.netutils [-] Interface ens255f0 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens255f0 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.511 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.589 899 INFO ironic_python_agent.netutils [-] Interface ens3f1 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens3f1 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.591 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.677 899 INFO ironic_python_agent.netutils [-] Interface ens3f0 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens3f0 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.679 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.759 899 INFO ironic_python_agent.netutils [-] Interface ens6f1 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens6f1 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.760 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.847 899 INFO ironic_python_agent.netutils [-] Interface ens6f0 entering promiscuous mode to capture
Dec 16 10:14:57 localhost.localdomain kernel: device ens6f0 entered promiscuous mode
Dec 16 10:14:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.848 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:14:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.933 899 DEBUG ironic_python_agent.netutils [-] Getting LLDP info for interfaces [('ens255f1', <socket._socketobject object at 0x24c27c0>), ('ens255f0', <socket._socketobject object at 0x24c28a0>), ('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens3f0', <socket._socketobject object at 0x24c2910>), ('ens6f1', <socket._socketobject object at 0x24c2980>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)] _get_lldp_info /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:157
Dec 16 10:14:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:14:57.933 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c27c0>), ('ens255f0', <socket._socketobject object at 0x24c28a0>), ('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens3f0', <socket._socketobject object at 0x24c2910>), ('ens6f1', <socket._socketobject object at 0x24c2980>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <warn> [1481901300.4423] dhcp4 (ens255f0): request timed out
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.4423] dhcp4 (ens255f0): state changed unknown -> timeout
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5067] dhcp4 (ens255f0): canceled DHCP transaction, DHCP client pid 2472
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5067] dhcp4 (ens255f0): state changed timeout -> done
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5070] device (ens255f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <warn> [1481901300.5073] device (ens255f0): Activation: failed for connection 'System ens255f0'
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5079] device (ens255f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5142] policy: auto-activating connection 'System ens255f0'
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5151] device (ens255f0): Activation: starting connection 'System ens255f0' (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28)
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5153] device (ens255f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5156] device (ens255f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5174] device (ens255f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5177] dhcp4 (ens255f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:00 localhost.localdomain NetworkManager[687]: <info> [1481901300.5192] dhcp4 (ens255f0): dhclient started with pid 2770
Dec 16 10:15:00 localhost.localdomain dhclient[2770]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 7 (xid=0x7c853108)
Dec 16 10:15:01 localhost.localdomain dhclient[2559]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 9 (xid=0xaf9f704)
Dec 16 10:15:03 localhost.localdomain dhclient[2680]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 14 (xid=0x70c5d770)
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <warn> [1481901303.4408] dhcp4 (ens6f1): request timed out
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.4408] dhcp4 (ens6f1): state changed unknown -> timeout
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5053] dhcp4 (ens6f1): canceled DHCP transaction, DHCP client pid 2559
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5054] dhcp4 (ens6f1): state changed timeout -> done
Dec 16 10:15:03 localhost.localdomain systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 16 10:15:03 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:15:03 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5057] device (ens6f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:03 localhost.localdomain systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5059] manager: NetworkManager state is now CONNECTED_GLOBAL
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5061] manager: NetworkManager state is now CONNECTED_SITE
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5061] manager: NetworkManager state is now CONNECTED_GLOBAL
Dec 16 10:15:03 localhost.localdomain dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <warn> [1481901303.5064] device (ens6f1): Activation: failed for connection 'System ens6f1'
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5070] device (ens6f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5116] policy: auto-activating connection 'System ens6f1'
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5126] device (ens6f1): Activation: starting connection 'System ens6f1' (6c01aac9-fcbb-f202-48fc-82146b96bce2)
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5128] device (ens6f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5132] device (ens6f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5139] device (ens6f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5142] dhcp4 (ens6f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:03 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:15:03 localhost.localdomain nm-dispatcher[2776]: req:1 'connectivity-change': new request (4 scripts)
Dec 16 10:15:03 localhost.localdomain nm-dispatcher[2776]: req:1 'connectivity-change': start running ordered scripts...
Dec 16 10:15:03 localhost.localdomain NetworkManager[687]: <info> [1481901303.5170] dhcp4 (ens6f1): dhclient started with pid 2783
Dec 16 10:15:03 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 3 (xid=0x15a6700f)
Dec 16 10:15:05 localhost.localdomain dhclient[2740]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 19 (xid=0x3dfe64da)
Dec 16 10:15:06 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 3 (xid=0x15a6700f)
Dec 16 10:15:07 localhost.localdomain dhclient[2770]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 11 (xid=0x7c853108)
Dec 16 10:15:08 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:08.235 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f0
Dec 16 10:15:08 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:08.235 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c27c0>), ('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens3f0', <socket._socketobject object at 0x24c2910>), ('ens6f1', <socket._socketobject object at 0x24c2980>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <warn> [1481901308.4422] dhcp4 (ens6f0): request timed out
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4422] dhcp4 (ens6f0): state changed unknown -> timeout
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4745] dhcp4 (ens6f0): canceled DHCP transaction, DHCP client pid 2680
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4745] dhcp4 (ens6f0): state changed timeout -> done
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4749] device (ens6f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <warn> [1481901308.4752] device (ens6f0): Activation: failed for connection 'System ens6f0'
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4757] device (ens6f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4788] policy: auto-activating connection 'System ens6f0'
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4797] device (ens6f0): Activation: starting connection 'System ens6f0' (35620381-6232-4966-541e-dfdfa039f804)
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4798] device (ens6f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4802] device (ens6f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4810] device (ens6f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4812] dhcp4 (ens6f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:08 localhost.localdomain NetworkManager[687]: <info> [1481901308.4836] dhcp4 (ens6f0): dhclient started with pid 2801
Dec 16 10:15:08 localhost.localdomain dhclient[2801]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 8 (xid=0x6c1713b9)
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <warn> [1481901309.4402] dhcp4 (ens3f0): request timed out
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4402] dhcp4 (ens3f0): state changed unknown -> timeout
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4726] dhcp4 (ens3f0): canceled DHCP transaction, DHCP client pid 2713
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4727] dhcp4 (ens3f0): state changed timeout -> done
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4729] device (ens3f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <warn> [1481901309.4732] device (ens3f0): Activation: failed for connection 'System ens3f0'
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4738] device (ens3f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4774] policy: auto-activating connection 'System ens3f0'
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4783] device (ens3f0): Activation: starting connection 'System ens3f0' (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1)
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4784] device (ens3f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4788] device (ens3f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4796] device (ens3f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4799] dhcp4 (ens3f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:09 localhost.localdomain NetworkManager[687]: <info> [1481901309.4827] dhcp4 (ens3f0): dhclient started with pid 2811
Dec 16 10:15:09 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 4 (xid=0x15a6700f)
Dec 16 10:15:09 localhost.localdomain dhclient[2811]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 5 (xid=0x36b914e9)
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <warn> [1481901310.4397] dhcp4 (ens3f1): request timed out
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4398] dhcp4 (ens3f1): state changed unknown -> timeout
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4721] dhcp4 (ens3f1): canceled DHCP transaction, DHCP client pid 2740
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4722] dhcp4 (ens3f1): state changed timeout -> done
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4724] device (ens3f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <warn> [1481901310.4727] device (ens3f1): Activation: failed for connection 'System ens3f1'
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4732] device (ens3f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4767] policy: auto-activating connection 'System ens3f1'
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4775] device (ens3f1): Activation: starting connection 'System ens3f1' (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86)
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4777] device (ens3f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4780] device (ens3f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4789] device (ens3f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4792] dhcp4 (ens3f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.4821] dhcp4 (ens3f1): dhclient started with pid 2821
Dec 16 10:15:10 localhost.localdomain dhclient[2587]: DHCPREQUEST on ens255f1 to 192.0.2.1 port 67 (xid=0x7bc39e86)
Dec 16 10:15:10 localhost.localdomain dhclient[2587]: DHCPACK from 192.0.2.1 (xid=0x7bc39e86)
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6770] dhcp4 (ens255f1): address 192.0.2.151
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6771] dhcp4 (ens255f1): plen 24 (255.255.255.0)
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6771] dhcp4 (ens255f1): gateway 192.0.2.1
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6771] dhcp4 (ens255f1): server identifier 192.0.2.1
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6771] dhcp4 (ens255f1): lease time 120
Dec 16 10:15:10 localhost.localdomain NetworkManager[687]: <info> [1481901310.6771] dhcp4 (ens255f1): state changed bound -> bound
Dec 16 10:15:10 localhost.localdomain nm-dispatcher[2776]: req:2 'dhcp4-change' [ens255f1]: new request (4 scripts)
Dec 16 10:15:10 localhost.localdomain nm-dispatcher[2776]: req:2 'dhcp4-change' [ens255f1]: start running ordered scripts...
Dec 16 10:15:10 localhost.localdomain dhclient[2587]: bound to 192.0.2.151 -- renewal in 48 seconds.
Dec 16 10:15:10 localhost.localdomain dhclient[2821]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 4 (xid=0x3b43e06c)
Dec 16 10:15:13 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 6 (xid=0x15a6700f)
Dec 16 10:15:14 localhost.localdomain dhclient[2811]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 14 (xid=0x36b914e9)
Dec 16 10:15:14 localhost.localdomain dhclient[2821]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 7 (xid=0x3b43e06c)
Dec 16 10:15:17 localhost.localdomain dhclient[2801]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 19 (xid=0x6c1713b9)
Dec 16 10:15:18 localhost.localdomain dhclient[2770]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 12 (xid=0x7c853108)
Dec 16 10:15:19 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:19.614 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f1
Dec 16 10:15:19 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:19.614 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c27c0>), ('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens3f0', <socket._socketobject object at 0x24c2910>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:19 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 6 (xid=0x15a6700f)
Dec 16 10:15:20 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:20.126 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f1
Dec 16 10:15:20 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:20.126 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens3f0', <socket._socketobject object at 0x24c2910>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:21 localhost.localdomain dhclient[2821]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 7 (xid=0x3b43e06c)
Dec 16 10:15:24 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:24.763 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f0
Dec 16 10:15:24 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:24.764 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2830>), ('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:25.266 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f1
Dec 16 10:15:25 localhost.localdomain kernel: device ens255f1 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:25.267 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens6f0', <socket._socketobject object at 0x24c29f0>)], timeout: 30.0
Dec 16 10:15:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:25.267 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f0
Dec 16 10:15:25 localhost.localdomain kernel: device ens255f0 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain kernel: device ens3f1 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain kernel: device ens3f0 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain kernel: device ens6f1 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain kernel: device ens6f0 left promiscuous mode
Dec 16 10:15:25 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:25.424 899 DEBUG ironic_python_agent.inspector [-] Still waiting for interfaces ['ens255f0', 'ens3f1', 'ens3f0', 'ens6f1', 'ens6f0'] to get IP addresses wait_for_dhcp /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:264
Dec 16 10:15:25 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 8 (xid=0x15a6700f)
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.427 899 WARNING ironic_python_agent.inspector [-] Not all network interfaces received IP addresses in 60 seconds: ['ens255f0', 'ens3f1', 'ens3f0', 'ens6f1', 'ens6f0']
Dec 16 10:15:27 localhost.localdomain kernel: device ens255f1 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.427 899 INFO ironic_python_agent.netutils [-] Interface ens255f1 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.429 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.532 899 INFO ironic_python_agent.netutils [-] Interface ens255f0 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain kernel: device ens255f0 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.536 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens255f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.622 899 INFO ironic_python_agent.netutils [-] Interface ens3f1 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain kernel: device ens3f1 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.624 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.705 899 INFO ironic_python_agent.netutils [-] Interface ens3f0 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain kernel: device ens3f0 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.707 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens3f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.798 899 INFO ironic_python_agent.netutils [-] Interface ens6f1 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain kernel: device ens6f1 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.799 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f1 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.885 899 INFO ironic_python_agent.netutils [-] Interface ens6f0 entering promiscuous mode to capture
Dec 16 10:15:27 localhost.localdomain kernel: device ens6f0 entered promiscuous mode
Dec 16 10:15:27 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.886 899 DEBUG ironic_python_agent.netutils [-] Binding interface ens6f0 for protocol 35020 __enter__ /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:72
Dec 16 10:15:28 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.953 899 DEBUG ironic_python_agent.netutils [-] Getting LLDP info for interfaces [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens255f0', <socket._socketobject object at 0x24c2670>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c28a0>), ('ens6f0', <socket._socketobject object at 0x24c2830>)] _get_lldp_info /usr/lib/python2.7/site-packages/ironic_python_agent/netutils.py:157
Dec 16 10:15:28 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:27.954 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens255f0', <socket._socketobject object at 0x24c2670>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c28a0>), ('ens6f0', <socket._socketobject object at 0x24c2830>)], timeout: 30.0
Dec 16 10:15:28 localhost.localdomain dhclient[2821]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 14 (xid=0x3b43e06c)
Dec 16 10:15:28 localhost.localdomain dhclient[2811]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 8 (xid=0x36b914e9)
Dec 16 10:15:30 localhost.localdomain dhclient[2770]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 12 (xid=0x7c853108)
Dec 16 10:15:33 localhost.localdomain dhclient[2783]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 16 (xid=0x15a6700f)
Dec 16 10:15:36 localhost.localdomain dhclient[2811]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 11 (xid=0x36b914e9)
Dec 16 10:15:36 localhost.localdomain dhclient[2801]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 9 (xid=0x6c1713b9)
Dec 16 10:15:38 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:38.017 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f0
Dec 16 10:15:38 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:38.018 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f1', <socket._socketobject object at 0x24c28a0>), ('ens6f0', <socket._socketobject object at 0x24c2830>)], timeout: 30.0
Dec 16 10:15:42 localhost.localdomain dhclient[2770]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 19 (xid=0x7c853108)
Dec 16 10:15:42 localhost.localdomain dhclient[2821]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 17 (xid=0x3b43e06c)
Dec 16 10:15:45 localhost.localdomain dhclient[2801]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 11 (xid=0x6c1713b9)
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <warn> [1481901345.4564] dhcp4 (ens255f0): request timed out
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.4565] dhcp4 (ens255f0): state changed unknown -> timeout
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5208] dhcp4 (ens255f0): canceled DHCP transaction, DHCP client pid 2770
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5209] dhcp4 (ens255f0): state changed timeout -> done
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5211] device (ens255f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <warn> [1481901345.5215] device (ens255f0): Activation: failed for connection 'System ens255f0'
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5220] device (ens255f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5285] policy: auto-activating connection 'System ens255f0'
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5294] device (ens255f0): Activation: starting connection 'System ens255f0' (de9c9c80-f8a0-8754-8f5a-6a48f2f86c28)
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5296] device (ens255f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5299] device (ens255f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5319] device (ens255f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5321] dhcp4 (ens255f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:45 localhost.localdomain NetworkManager[687]: <info> [1481901345.5339] dhcp4 (ens255f0): dhclient started with pid 2855
Dec 16 10:15:45 localhost.localdomain dhclient[2855]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 8 (xid=0x5e2bc5b)
Dec 16 10:15:47 localhost.localdomain dhclient[2811]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 15 (xid=0x36b914e9)
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <warn> [1481901348.4410] dhcp4 (ens6f1): request timed out
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4410] dhcp4 (ens6f1): state changed unknown -> timeout
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4733] dhcp4 (ens6f1): canceled DHCP transaction, DHCP client pid 2783
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4733] dhcp4 (ens6f1): state changed timeout -> done
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4735] device (ens6f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <warn> [1481901348.4738] device (ens6f1): Activation: failed for connection 'System ens6f1'
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4741] device (ens6f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4782] policy: auto-activating connection 'System ens6f1'
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4790] device (ens6f1): Activation: starting connection 'System ens6f1' (6c01aac9-fcbb-f202-48fc-82146b96bce2)
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4792] device (ens6f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4795] device (ens6f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4801] device (ens6f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4804] dhcp4 (ens6f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:48 localhost.localdomain NetworkManager[687]: <info> [1481901348.4825] dhcp4 (ens6f1): dhclient started with pid 2865
Dec 16 10:15:48 localhost.localdomain dhclient[2865]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 7 (xid=0x6ba08fb9)
Dec 16 10:15:49 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:49.622 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f1
Dec 16 10:15:49 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:49.622 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens255f1', <socket._socketobject object at 0x24c26e0>), ('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f0', <socket._socketobject object at 0x24c2830>)], timeout: 30.0
Dec 16 10:15:50 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:50.129 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens255f1
Dec 16 10:15:50 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:50.129 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens3f0', <socket._socketobject object at 0x24c27c0>), ('ens6f0', <socket._socketobject object at 0x24c2830>)], timeout: 30.0
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <warn> [1481901353.4417] dhcp4 (ens6f0): request timed out
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4418] dhcp4 (ens6f0): state changed unknown -> timeout
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4741] dhcp4 (ens6f0): canceled DHCP transaction, DHCP client pid 2801
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4742] dhcp4 (ens6f0): state changed timeout -> done
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4743] device (ens6f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <warn> [1481901353.4746] device (ens6f0): Activation: failed for connection 'System ens6f0'
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4750] device (ens6f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4780] policy: auto-activating connection 'System ens6f0'
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4788] device (ens6f0): Activation: starting connection 'System ens6f0' (35620381-6232-4966-541e-dfdfa039f804)
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4790] device (ens6f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4793] device (ens6f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4800] device (ens6f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4802] dhcp4 (ens6f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:53 localhost.localdomain NetworkManager[687]: <info> [1481901353.4824] dhcp4 (ens6f0): dhclient started with pid 2871
Dec 16 10:15:53 localhost.localdomain dhclient[2871]: DHCPDISCOVER on ens6f0 to 255.255.255.255 port 67 interval 7 (xid=0x2432749f)
Dec 16 10:15:54 localhost.localdomain dhclient[2855]: DHCPDISCOVER on ens255f0 to 255.255.255.255 port 67 interval 19 (xid=0x5e2bc5b)
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <warn> [1481901354.4404] dhcp4 (ens3f0): request timed out
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.4404] dhcp4 (ens3f0): state changed unknown -> timeout
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5049] dhcp4 (ens3f0): canceled DHCP transaction, DHCP client pid 2811
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5049] dhcp4 (ens3f0): state changed timeout -> done
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5052] device (ens3f0): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <warn> [1481901354.5055] device (ens3f0): Activation: failed for connection 'System ens3f0'
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5058] device (ens3f0): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5094] policy: auto-activating connection 'System ens3f0'
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5102] device (ens3f0): Activation: starting connection 'System ens3f0' (d7ef27d1-91aa-f5e4-caf9-974aed06aaf1)
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5103] device (ens3f0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5106] device (ens3f0): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5116] device (ens3f0): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5119] dhcp4 (ens3f0): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:54 localhost.localdomain NetworkManager[687]: <info> [1481901354.5137] dhcp4 (ens3f0): dhclient started with pid 2881
Dec 16 10:15:54 localhost.localdomain dhclient[2881]: DHCPDISCOVER on ens3f0 to 255.255.255.255 port 67 interval 7 (xid=0x17302ead)
Dec 16 10:15:54 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:54.768 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f0
Dec 16 10:15:54 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:54.769 899 INFO ironic_python_agent.netutils [-] Waiting on LLDP info for interfaces: [('ens3f1', <socket._socketobject object at 0x24c2750>), ('ens6f0', <socket._socketobject object at 0x24c2830>)], timeout: 30.0
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.273 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens3f1
Dec 16 10:15:55 localhost.localdomain kernel: device ens255f1 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain kernel: device ens255f0 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.273 899 INFO ironic_python_agent.netutils [-] Found LLDP info for interface: ens6f0
Dec 16 10:15:55 localhost.localdomain kernel: device ens3f1 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain kernel: device ens3f0 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain kernel: device ens6f1 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain kernel: device ens6f0 left promiscuous mode
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.418 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): lscpu execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:55 localhost.localdomain NetworkManager[687]: <warn> [1481901355.4389] dhcp4 (ens3f1): request timed out
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.429 899 DEBUG oslo_concurrency.processutils [-] CMD "lscpu" returned: 0 in 0.011s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.429 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "lscpu" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.430 899 DEBUG ironic_lib.utils [-] Command stdout is: "Architecture: x86_64
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: CPU op-mode(s): 32-bit, 64-bit
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Byte Order: Little Endian
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: CPU(s): 48
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: On-line CPU(s) list: 0-47
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Thread(s) per core: 2
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Core(s) per socket: 12
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Socket(s): 2
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: NUMA node(s): 2
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Vendor ID: GenuineIntel
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: CPU family: 6
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Model: 79
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Model name: Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Stepping: 1
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: CPU MHz: 2584.054
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: BogoMIPS: 4395.54
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: Virtualization: VT-x
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: L1d cache: 32K
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: L1i cache: 32K
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: L2 cache: 256K
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: L3 cache: 30720K
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: NUMA node0 CPU(s): 0-11,24-35
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: NUMA node1 CPU(s): 12-23,36-47
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.430 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.430 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): grep -Em1 ^flags /proc/cpuinfo execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.434 899 DEBUG oslo_concurrency.processutils [-] CMD "grep -Em1 ^flags /proc/cpuinfo" returned: 0 in 0.004s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.434 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "grep -Em1 ^flags /proc/cpuinfo" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:55 localhost.localdomain NetworkManager[687]: <info> [1481901355.4389] dhcp4 (ens3f1): state changed unknown -> timeout
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.434 899 DEBUG ironic_lib.utils [-] Command stdout is: "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 pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch ida arat epb pln pts dtherm intel_pt tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm cqm rdseed adx smap xsaveopt cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local
Dec 16 10:15:55 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.435 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.435 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): udevadm settle execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.441 899 DEBUG oslo_concurrency.processutils [-] CMD "udevadm settle" returned: 0 in 0.007s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.442 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "udevadm settle" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.442 899 DEBUG ironic_lib.utils [-] Command stdout is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.442 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.442 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:55 localhost.localdomain dhclient[2865]: DHCPDISCOVER on ens6f1 to 255.255.255.255 port 67 interval 12 (xid=0x6ba08fb9)
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.446 899 DEBUG oslo_concurrency.processutils [-] CMD "lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE" returned: 0 in 0.004s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.446 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "lsblk -Pbdi -oKNAME,MODEL,SIZE,ROTA,TYPE" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.446 899 DEBUG ironic_lib.utils [-] Command stdout is: "KNAME="nvme0n1" MODEL="INTEL SSDPE2MD400G4 " SIZE="400088457216" ROTA="0" TYPE="disk"
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: KNAME="nvme1n1" MODEL="INTEL SSDPE2MD400G4 " SIZE="400088457216" ROTA="0" TYPE="disk"
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.446 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.447 899 WARNING root [-] Can't find field vendor for device nvme0n1 in device class block
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.448 899 WARNING root [-] Can't find field vendor for device nvme1n1 in device class block
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.448 899 DEBUG root [-] TYPE did not match. Wanted: 'disk' but found: '' list_all_block_devices /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:132
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.448 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): dmidecode --type 17 | grep Size execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.452 899 DEBUG oslo_concurrency.processutils [-] CMD "dmidecode --type 17 | grep Size" returned: 0 in 0.004s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.453 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "dmidecode --type 17 | grep Size" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.453 899 DEBUG ironic_lib.utils [-] Command stdout is: " Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: 16384 MB
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: Size: No Module Installed
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.453 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.454 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.454 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.455 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.455 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:56 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.456 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.456 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.457 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.457 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6438] dhcp4 (ens3f1): canceled DHCP transaction, DHCP client pid 2821
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.458 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.458 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.459 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.459 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.460 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.460 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.461 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.461 899 DEBUG root [-] One memory slot is empty get_memory /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:606
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.461 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): modprobe ipmi_msghandler execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.464 899 DEBUG oslo_concurrency.processutils [-] CMD "modprobe ipmi_msghandler" returned: 0 in 0.003s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.464 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "modprobe ipmi_msghandler" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.465 899 DEBUG ironic_lib.utils [-] Command stdout is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.465 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6438] dhcp4 (ens3f1): state changed timeout -> done
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.465 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): modprobe ipmi_devintf execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.467 899 DEBUG oslo_concurrency.processutils [-] CMD "modprobe ipmi_devintf" returned: 0 in 0.003s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.468 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "modprobe ipmi_devintf" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.468 899 DEBUG ironic_lib.utils [-] Command stdout is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.468 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.468 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): modprobe ipmi_si execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.471 899 DEBUG oslo_concurrency.processutils [-] CMD "modprobe ipmi_si" returned: 0 in 0.003s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.471 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "modprobe ipmi_si" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.471 899 DEBUG ironic_lib.utils [-] Command stdout is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.471 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:55.472 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): ipmitool lan print | grep -e 'IP Address [^S]' | awk '{ print $4 }' execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6440] device (ens3f1): state change: ip-config -> failed (reason 'ip-config-unavailable') [70 120 5]
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.649 899 DEBUG oslo_concurrency.processutils [-] CMD "ipmitool lan print | grep -e 'IP Address [^S]' | awk '{ print $4 }'" returned: 0 in 1.177s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.649 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "ipmitool lan print | grep -e 'IP Address [^S]' | awk '{ print $4 }'" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:57 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.649 899 DEBUG ironic_lib.utils [-] Command stdout is: "10.19.109.203
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.650 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.650 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): dmidecode --type system execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.653 899 DEBUG oslo_concurrency.processutils [-] CMD "dmidecode --type system" returned: 0 in 0.003s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.653 899 DEBUG ironic_lib.utils [-] Execution completed, command line is "dmidecode --type system" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:92
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG ironic_lib.utils [-] Command stdout is: "# dmidecode 3.0
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Scanning /dev/mem for entry point.
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: SMBIOS 3.0 present.
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Handle 0x0001, DMI type 1, 27 bytes
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: System Information
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Manufacturer: Quanta Computer Inc
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Product Name: D51B-1U (dual 10G LoM)
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Version: To be filled by O.E.M.
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Serial Number: QTFCJ05320372
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: UUID: C1BC59D5-4437-E511-A752-2C600CCA7890
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Wake-up Type: Power Switch
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: SKU Number: Default string
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: Family: Default string
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: " execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:94
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG ironic_lib.utils [-] Command stderr is: "" execute /usr/lib/python2.7/site-packages/ironic_lib/utils.py:95
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <warn> [1481901356.6443] device (ens3f1): Activation: failed for connection 'System ens3f1'
Dec 16 10:15:58 localhost.localdomain systemd[1]: Starting Network Manager Script Dispatcher Service...
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG root [-] The current boot mode is bios get_boot_info /usr/lib/python2.7/site-packages/ironic_python_agent/hardware.py:716
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG ironic_python_agent.inspector [-] default root device is /dev/nvme0n1 collect_default /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:305
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG ironic_python_agent.inspector [-] boot devices was 2c:60:0c:ca:78:8f collect_default /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:309
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.654 899 DEBUG ironic_python_agent.inspector [-] BMC IP address: 10.19.109.203 collect_default /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:311
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] found network interface ens255f1 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] found network interface ens255f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] no IP address for interface ens255f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:184
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] found network interface ens3f1 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] no IP address for interface ens3f1 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:184
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] found network interface ens3f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:15:58 localhost.localdomain dbus-daemon[675]: dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6450] device (ens3f1): state change: failed -> disconnected (reason 'none') [120 30 0]
Dec 16 10:15:58 localhost.localdomain systemd[1]: Started Network Manager Script Dispatcher Service.
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.655 899 DEBUG ironic_python_agent.inspector [-] no IP address for interface ens3f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:184
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 DEBUG ironic_python_agent.inspector [-] found network interface ens6f1 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 DEBUG ironic_python_agent.inspector [-] no IP address for interface ens6f1 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:184
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 DEBUG ironic_python_agent.inspector [-] found network interface ens6f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:177
Dec 16 10:15:58 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 DEBUG ironic_python_agent.inspector [-] no IP address for interface ens6f0 discover_network_properties /usr/lib/python2.7/site-packages/ironic_python_agent/inspector.py:184
Dec 16 10:15:59 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 INFO ironic_python_agent.inspector [-] network interfaces: {'ens6f0': {'ip': None, 'mac': 'a0:36:9f:53:26:80'}, 'ens6f1': {'ip': None, 'mac': 'a0:36:9f:53:26:82'}, 'ens3f1': {'ip': None, 'mac': '2c:60:0c:84:31:60'}, 'ens3f0': {'ip': None, 'mac': '2c:60:0c:84:31:5f'}, 'ens255f0': {'ip': None, 'mac': '2c:60:0c:ca:78:8e'}, 'ens255f1': {'ip': '192.0.2.151', 'mac': '2c:60:0c:ca:78:8f'}}
Dec 16 10:15:59 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 INFO ironic_python_agent.inspector [-] value for cpus is 48
Dec 16 10:15:59 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 INFO ironic_python_agent.inspector [-] value for local_gb is 371
Dec 16 10:15:59 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.656 899 INFO ironic_python_agent.inspector [-] value for memory_mb is 131072
Dec 16 10:15:59 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:15:56.657 899 DEBUG oslo_concurrency.processutils [-] Running cmd (subprocess): hardware-detect execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:344
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6492] policy: auto-activating connection 'System ens3f1'
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6500] device (ens3f1): Activation: starting connection 'System ens3f1' (162fc1f9-f9df-f2cc-5fc5-c7908b2c3c86)
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6501] device (ens3f1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6504] device (ens3f1): state change: prepare -> config (reason 'none') [40 50 0]
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6513] device (ens3f1): state change: config -> ip-config (reason 'none') [50 70 0]
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6515] dhcp4 (ens3f1): activation: beginning transaction (timeout in 45 seconds)
Dec 16 10:15:56 localhost.localdomain NetworkManager[687]: <info> [1481901356.6541] dhcp4 (ens3f1): dhclient started with pid 2906
Dec 16 10:15:57 localhost.localdomain dhclient[2906]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 3 (xid=0x2ea43d84)
Dec 16 10:15:58 localhost.localdomain dhclient[2587]: DHCPREQUEST on ens255f1 to 192.0.2.1 port 67 (xid=0x7bc39e86)
Dec 16 10:15:58 localhost.localdomain dhclient[2587]: DHCPACK from 192.0.2.1 (xid=0x7bc39e86)
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): address 192.0.2.151
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): plen 24 (255.255.255.0)
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): gateway 192.0.2.1
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): server identifier 192.0.2.1
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): lease time 120
Dec 16 10:15:58 localhost.localdomain NetworkManager[687]: <info> [1481901358.3178] dhcp4 (ens255f1): state changed bound -> bound
Dec 16 10:15:58 localhost.localdomain dbus[675]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Dec 16 10:15:58 localhost.localdomain dhclient[2587]: bound to 192.0.2.151 -- renewal in 44 seconds.
Dec 16 10:15:58 localhost.localdomain dbus[675]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dec 16 10:15:58 localhost.localdomain nm-dispatcher[2929]: req:1 'dhcp4-change' [ens255f1]: new request (4 scripts)
Dec 16 10:15:58 localhost.localdomain nm-dispatcher[2929]: req:1 'dhcp4-change' [ens255f1]: start running ordered scripts...
Dec 16 10:15:59 localhost.localdomain dhclient[2906]: DHCPDISCOVER on ens3f1 to 255.255.255.255 port 67 interval 4 (xid=0x2ea43d84)
Dec 16 10:16:00 localhost.localdomain ironic-python-agent[899]: 2016-12-16 10:16:00.603 899 DEBUG oslo_concurrency.processutils [-] CMD "hardware-detect" returned: 0 in 3.946s execute /usr/lib/python2.7/site-packages/oslo_concurrency/processutils.py:374
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 2448 0.0 0.0 6448 828 tty1 Ss+ 10:14 0:00 /sbin/agetty --noclear tty1 linux
Hi Jon,
Thanks for the link.
We have been able to get introspection to work reliably with the QCT / Cumulus switches. A change to
dhcp-all-interfaces.sh which is located in /usr/local/sbin/ on the agent.ramdisk. The dhcp-all-interfaces.sh
script relies on a function that checks for carrier using the /sys/class/net/XXX/carrier mechanism:
function get_if_link() {
cat /sys/class/net/${1}/carrier
}
Unfortunately, 'cat'ing this file when the interface is admin down produces an "Invalid Argument" error.
The dhcp-all-interfaces.sh script runs with "set -e" and "set -o pipefail" so that the above error
causes the entire script to abort and systemd reports the task as failed during introspection.
There seems to be a race condition between NetworkManager and dhcp-all-interfaces.sh and occasionally
NetworkManager will "admin down" the interface causing the exception. The reason that this issue has cropped
up now is that we are using an Open Compute / Baremetal switch running Cumulus. The OCP switch is from
QCT and uses the industry standard Trident II chipset from Broadcom. The negotiation after an admin up on the
server side takes anywhere from 5 to 10 seconds on average. When the negotiation takes closer to 10 seconds
the NetworkManager issue is more likely. 5 - 10 seconds is probably longer than most switches from other vendors,
however, OCP switches are quickly becoming the norm as service providers look to remove vendor lock-in.
A snippet of the fix is below:
unction get_if_link() {
cat /sys/class/net/${1}/carrier || true
}
function inspect_interface() {
local interface=$1
local mac_addr_type
mac_addr_type=$(cat /sys/class/net/${interface}/addr_assign_type)
echo -n "Inspecting interface: $interface..."
if config_exists $interface; then
echo "Has config, skipping."
elif [ "$mac_addr_type" != "0" ]; then
echo "Device has generated MAC, skipping."
else
# moved to below
# ip link set dev $interface up &>/dev/null
local has_link
local tries
for ((tries = 0; tries < 20; tries++)); do
ip link set dev $interface up &>/dev/null
has_link=$(get_if_link $interface)
if [ -z "$has_link" ]; then
has_link="0"
fi
[ "$has_link" == "1" ] && break
sleep 1
done
if [ "$has_link" == "1" ]; then
enable_interface "$interface"
else
echo "No link detected, skipping"
fi
fi
}
The main changes are to ignore failures of the 'cat' operation by || true and
to place the ip link up inside the retry loop.
Before the change, introspection was failing 2 out of 3 times on average.
With the changes, a repeated introspection test ran overnight.
Originally, this thread also referenced not being able to detect drives on
open compute servers. This has also been fixed. The problem was a controller
setting change in the BIOS. The servers were running a new LSI MegaRaid
controller which we had not worked with before.
Thanks for all of the help and suggestions (Thanks Bob and Dan).
At this point, I believe some similar change would need to make it's way upstream.
I must be honest in that I have never dealt with this area of code before and don't
know the best way to get things upstream.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment