Mellanox Spectrum Switches
The Mellanox Spectrum Series are Managed Ethernet Switches with a maximum speed of 800Gb/s and up to 64 QSFP ports.
They use the switchdev API to offload the kernel's forwarding plane to its ASICs, allowing for more network throughput.
More info: https://github.com/Mellanox/mlxsw/wiki
Supported Versions
Hardware Highlights
Installation
Unfortunately, there is currently no pre-built OpenWrt image for this target in the Firmware Selector. There are two options to obtain an image and set up a working OpenWrt system on this device:
- You can build your image manually following the instructions described here.
Flashing the image is done as you do it with any other x86 target: https://openwrt.org/docs/guide-user/installation/openwrt_x86#installation.
The instructions on this page will show you how to install OpenWrt on the switch by flashing it from a USB device. You have to connect the host PC to the serial port of the network switch to navigate through the BIOS and the installation steps. The parameters of the serial connection can be found here.
This will erase the complete disk and flash OpenWrt, removing existing operating systems, including the commonly pre-installed ONIE or Onyx.
Preparing the USB device
The USB device will serve as a kind of Live USB. If you already have a Live USB from another Linux distribution, you can also use that and skip to the next step.
First, plug the USB device into your PC, identify your USB device (e.g., by running fdisk -l
; the instructions here will use /dev/sdx
), and flash the OpenWrt image to it.
This will erase all your data on the USB device.
gunzip -k openwrt-x86-64-generic-ext4-combined-efi.img.gz # Replace sdx with your device dd if=openwrt-x86-64-generic-ext4-combined-efi.img of=/dev/sdx
If you are using an x86_64 image with a default root partition size of 104MiB, we must enlarge it and its filesystem. Some Linux distributions automatically mount the root partition, so you may have to unmount it before.
parted -s /dev/sdx resizepart 2 100% resize2fs -f /dev/sdx2
Copying and flashing the image
Mount the root partition of the USB device and copy the OpenWrt image on it.
mkdir /mnt/usb # This is for OpenWrt. If you used another distributions Live USB, adjust the paths accordingly. mount /dev/sdx2 /mnt/usb/ cp openwrt-x86-64-generic-ext4-combined-efi.img.gz /mnt/usb/root/ umount /dev/sdx2 rmdir /mnt/usb
Next, (safely) unplug the USB device, plug it into the Mellanox switch, and connect your PC to its serial port.
To enter the BIOS, reboot the switch and press CTRL+B
while you see the BIOS information text (American Megatrends …).
The default password to enter the BIOS is admin
.
Switch to the Save & Exit
tab and select your USB device from the Boot Override options.
When booted, press Enter
on your keyboard to activate the console and start flashing the image.
cd ~ gunzip openwrt-x86-64-generic-ext4-combined-efi.img.gz # The SSD should be '/dev/sda', verify before flashing! dd if=openwrt-x86-64-generic-ext4-combined-efi.img of=/dev/sda
Finally, if the flashing process is successful, reboot, and the switch should boot into the newly installed OpenWrt system.
As mentioned, the root partition size might be only 104 MiB if you used a default x86_64 image (configuration). To increase it and the filesystem, please follow the steps of the following link: https://openwrt.org/docs/guide-user/installation/openwrt_x86#expanding_root_partition_and_filesystem.
If you haven't used a manually built image for the installation, you must proceed with the following section to install all required packages.
Install required packages
The following steps are needed if you haven't built your image manually and used the generic x86_64 snapshot image from the Firmware Selector. You must also repeat those steps if you do a sysupgrade
on the device.
First, plug in an ethernet cable into the management port and make sure that it has internet access. By default, the port has the IPv4 address 192.168.1.1/24
, but you can change it by following the steps provided here: https://openwrt.org/docs/guide-user/network/network_configuration.
After you have gained internet access, you can install the required package through the opkg
package manager. Before you can do that, update the list of available packages:
opkg update
After that, you can install the packages required for the QSFP ports, LEDs, and hardware watchdog to work.
Depending on the Switch's Spectrum Series, you need the following firmware package:
- Spectrum (SN2000) Series:
mlxsw_spectrum-firmware
- Spectrum-2 (SN3000) Series:
mlxsw_spectrum2-firmware
- Spectrum-3 (SN4000) Series:
mlxsw_spectrum3-firmware
- Spectrum-4 (SN5000) Series:
mlxsw_spectrum4-firmware
So for a Mellanox Spectrum SN2100, you would install its firmware package via the following command:
opkg install mlxsw_spectrum-firmware
Then you can install the drivers:
opkg install kmod-mlxsw-spectrum kmod-mlx_wdt kmod-leds-mlxcpld
If you also want to monitor the temperature of the CPU, RAM, and SSD drive, install the following additional packages:
opkg install kmod-hwmon-coretemp kmod-hwmon-drivetemp kmod-hwmon-jc42 kmod-i2c-i801 kmod-mlxreg
If you have a Mellanox Spectrum SN2201 or SN4800, I also recommend the following package for hardware monitoring:
# For SN2201 opkg install kmod-mlxreg-sn2201 # For SN4800 opkg install kmod-mlxreg-lc
Finally, reboot the device, and the QSFP ports of the switch should be functional now.
Image Configuration
If you want to build your image manually for this device, follow the steps provided on this page: https://openwrt.org/docs/guide-developer/toolchain/use-buildsystem.
When you are inside the build system configuration interface (make menuconfig
), select the following target configuration:
- Target System:
x86
- Subtarget:
x86_64
- Target Profile:
Generic x86/64
For the QSFP ports, LEDs, and hardware watchdog to work, you have to select the following packages:
- Firmware:
mlxsw_spectrum-firmware
for a Spectrum (SN2000 Series) Switchmlxsw_spectrum2-firmware
for a Spectrum-2 (SN3000 Series) Switchmlxsw_spectrum3-firmware
for a Spectrum-3 (SN4000 Series) Switchmlxsw_spectrum4-firmware
for a Spectrum-4 (SN5000 Series) Switch
- Kernel modules → Network Devices:
kmod-mlxsw-spectrum
- Kernel modules → LED modules:
kmod-leds-mlxcpld
- Kernel modules → Other modules:
kmod-mlx_wdt
If you also want to monitor the temperature of the CPU, RAM, and SSD drive, you can select the following kernel modules:
- Kernel modules → Hardware Monitoring Support:
kmod-hwmon-coretemp
,kmod-hwmon-drivetemp
,kmod-hwmon-jc42
- Kernel modules → I2C support:
kmod-i2c-i801
- Kernel modules → Other modules:
kmod-mlxreg
If you have a Mellanox Spectrum SN2201 or SN4800, I also recommend the following package for hardware monitoring:
- Kernel modules → Other modules:
kmod-mlxreg-sn2201
(SN2201),kmod-mlxreg-lc
(SN4800)
It isn't mandatory, but you should also unselect Use Console Terminal (in addition to Serial)
under the Target Images section to avoid possible problems while using the serial console.
You can also append the following configuration symbols to the .config
file after you have selected the generic x86_64
target inside make make menuconfig
:
# Spectrum (SN2000) Series Firmware CONFIG_PACKAGE_mlxsw_spectrum-firmware=y # Spectrum-2 (SN3000) Series Firmware CONFIG_PACKAGE_mlxsw_spectrum2-firmware=y # Spectrum-3 (SN4000) Series Firmware CONFIG_PACKAGE_mlxsw_spectrum3-firmware=y # Spectrum-4 (SN5000) Series Firmware CONFIG_PACKAGE_mlxsw_spectrum4-firmware=y # Drivers CONFIG_PACKAGE_kmod-mlxsw-spectrum=y CONFIG_PACKAGE_kmod-leds-mlxcpld=y CONFIG_PACKAGE_kmod-mlx_wdt=y # Hardware Monitoring CONFIG_PACKAGE_kmod-hwmon-coretemp=y CONFIG_PACKAGE_kmod-hwmon-drivetemp=y CONFIG_PACKAGE_kmod-hwmon-jc42=y CONFIG_PACKAGE_kmod-i2c-i801=y CONFIG_PACKAGE_kmod-mlxreg=y # For SN2201 Hardware Monitoring CONFIG_PACKAGE_kmod-mlxreg-sn2201=y # For SN4800 Hardware Monitoring CONFIG_PACKAGE_kmod-mlxreg-lc=y # Optional, but recommended CONFIG_GRUB_CONSOLE=n
After the build process (make
) has finished, you can find the compiled image at bin/targets/x86/64/openwrt-x86-64-generic-ext4-combined-efi.img.gz
.
Flash Firmware
If your QSFP ports don't work after you have installed the kernel modules, it might be because the mlxfw
module couldn't flash the needed firmware onto the switch. You might see some similar error messages if you look into the kernel logs with dmesg
:
[ 10.967108] mlxsw_spectrum 0000:01:00.0: The firmware version 13.2000.1886 is incompatible with the driver (required >= 13.2010.1006) [ 10.980541] mlxsw_spectrum 0000:01:00.0: Flashing firmware using file mellanox/mlxsw_spectrum-13.2010.1006.mfa2 [ 11.000907] mlxsw_spectrum 0000:01:00.0: mlxfw: Initialize firmware flash process [ 203.802306] mlxsw_spectrum 0000:01:00.0: EMAD retries (5/5) (tid=48f045c500000003) [ 203.810778] mlxsw_spectrum 0000:01:00.0: EMAD reg access failed (tid=48f045c500000003,reg_id=9062(mcc),type=query,status=0(operation performed)) [ 203.825286] mlxsw_spectrum 0000:01:00.0: mlxfw: Firmware flash failed: Could not lock the firmware FSM, err (-5) [ 203.836712] mlxsw_spectrum 0000:01:00.0: Could not upgrade firmware [ 203.923152] mlxsw_spectrum 0000:01:00.0: cannot register bus device [ 203.930248] mlxsw_spectrum: probe of 0000:01:00.0 failed with error -5
In that case, you can use the mstfwmanager
tool from the OpenWrt port of the mstflint package.
mstflint
is a collection of Linux tools from Mellanox, which lets you query and flash firmware but also includes diagnostic and configuration tools for their switches and network cards.
You can find more info about the package on their GitHub page: https://github.com/Mellanox/mstflint.
You can find a description of how to flash firmware onto a Spectrum switch in their mlxsw wiki: https://github.com/Mellanox/mlxsw/wiki/Updating-Firmware#updating-firmware.
You can run the following commands to install the mstflint
package and download and flash the needed firmware file. I recommend using the firmware version mlxfw
tried to flash, i.e., in my example error message above, it would be version 13.2010.1006
.
# Install mstflint opkg update opkg install mstflint # Make a query to get the PCI address mstfwmanager --query # Download your required firmware version (.mfa, not .mfa2 !) wget https://switchdev.mellanox.com/firmware/mlxsw_spectrum-13.2010.1006.mfa # Flash the firmware (with your queried PCI address) and reboot mstfwmanager -d 01:00.0 -i mlxsw_spectrum-13.2010.1006.mfa -f -u reboot
Upgrading OpenWrt
The instructions here use 192.168.1.1
as the IPv4 address of the switch. Replace it with your configured IP address where applicable.
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/
LuCI Upgrade URL - Upload your manually built or the generic x86_64 snapshot image from the Firmware Selector for sysupgrade to LuCI
- Wait for reboot
Terminal Upgrade Process
It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.
sysupgrade
If you have built your image manually, transfer the image from your host machine to the switch first:
scp -O openwrt-x86-64-generic-ext4-combined-efi.img.gz root@192.168.1.1:/tmp
Then, log in via SSH and enter the following command:
sysupgrade /tmp/openwrt-x86-64-generic-ext4-combined-efi.img.gz
If you want to use the generic x86_64
snapshot image from the Firmware Selector, log in via SSH and enter the following commands.
But remember that the QSFP ports won't work anymore after the switch has rebooted, so you must repeat the steps described here after the sysupgrade
has finished.
cd /tmp wget https://downloads.openwrt.org/snapshots/targets/x86/64/openwrt-x86-64-generic-ext4-combined-efi.img.gz sysupgrade /tmp/openwrt-x86-64-generic-ext4-combined.img.gz
Basic configuration
Network interfaces
The default network configuration is:
Interface Name | Description | Default configuration |
---|---|---|
br-lan | Management Port | 192.168.1.1/24 |
lo | Loopback | 127.0.0.1 |
Buttons
The Mellanox Spectrum Switches have the following buttons:
BUTTON | Event |
---|---|
Reset | reset |
Hardware
Info
Photos (SN2100)
Opening the case (SN2100)
Note: This will void your warranty!
Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...
- To remove the cover and open the device, do a/b/c
Serial
How to connect to the Serial Port of this specific device:
Insert photo of PCB with markings for serial port
Serial connection parameters for Mellanox Spectrum Switches:
Parameter | Setting |
---|---|
Baud rate | 115200 |
Data bits | 8 |
Stop bits | 1 |
Parity | None |
Flow control | None |
Bootlogs
ONIE bootlog
[ 0.000000] Linux version 5.4.86-onie+ (michaelsh@r-build-bsp-01) (gcc version 8.3.0 (crosstool-NG 1.24.0 - ONIE-2020.11-5.3.0005-115200)) #1 SMP Wed Apr 7 12:51:32 IDT 2021 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz quiet console=tty0 console=ttyS0,115200n8 nmi_watchdog=0 boot_env=recovery boot_reason=rescue [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format. [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000097bff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000097c00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cef3bfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cef3c000-0x00000000cef7efff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000cef7f000-0x00000000cf750fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cf751000-0x00000000cf991fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000cf992000-0x00000000ded7bfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ded7c000-0x00000000dee18fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000dee19000-0x00000000deee659f] usable [ 0.000000] BIOS-e820: [mem 0x00000000deee65a0-0x00000000deef1bca] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000deef1bcb-0x00000000def82fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000def83000-0x00000000df39dfff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000df39e000-0x00000000df7fefff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021dffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Mellanox Technologies Ltd. MSN2700/SA000874, BIOS 4.6.5 03/08/2016 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 1398.189 MHz processor [ 0.000506] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000509] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000522] last_pfn = 0x21e000 max_arch_pfn = 0x400000000 [ 0.000528] MTRR default type: uncachable [ 0.000528] MTRR fixed ranges enabled: [ 0.000530] 00000-9FFFF write-back [ 0.000532] A0000-BFFFF uncachable [ 0.000533] C0000-C3FFF write-protect [ 0.000534] C4000-E7FFF uncachable [ 0.000535] E8000-FFFFF write-protect [ 0.000536] MTRR variable ranges enabled: [ 0.000538] 0 base 000000000 mask E00000000 write-back [ 0.000540] 1 base 200000000 mask FF0000000 write-back [ 0.000542] 2 base 210000000 mask FF8000000 write-back [ 0.000543] 3 base 218000000 mask FFC000000 write-back [ 0.000545] 4 base 21C000000 mask FFE000000 write-back [ 0.000546] 5 base 0E0000000 mask FE0000000 uncachable [ 0.000547] 6 disabled [ 0.000548] 7 disabled [ 0.000548] 8 disabled [ 0.000549] 9 disabled [ 0.000978] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.001103] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved [ 0.001107] last_pfn = 0xdf800 max_arch_pfn = 0x400000000 [ 0.014426] found SMP MP-table at [mem 0x000fd800-0x000fd80f] [ 0.017048] RAMDISK: [mem 0x34271000-0x3612ffff] [ 0.017057] ACPI: Early table checksum verification disabled [ 0.017061] ACPI: RSDP 0x0000000000097D10 000024 (v02 ALASKA) [ 0.017066] ACPI: XSDT 0x00000000DEEF1B1F 000074 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.017074] ACPI: SPCR 0x00000000DEEF02B1 000050 (v01 A M I APTIO4 01072009 AMI. 00000005) [ 0.017080] ACPI: ASF! 0x00000000DEEF0301 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240) [ 0.017085] ACPI: SSDT 0x00000000DEEF03A6 000B22 (v01 PmRef CpuPm 00003000 INTL 20051117) [ 0.017090] ACPI: SSDT 0x00000000DEEF0EC8 000758 (v01 PmRef Cpu0Ist 00003000 INTL 20051117) [ 0.017095] ACPI: SSDT 0x00000000DEEF1620 000315 (v01 SataRe SataTabl 00001000 INTL 20091112) [ 0.017100] ACPI: HPET 0x00000000DEEF1935 000038 (v01 ALASKA A M I 01072009 AMI. 00000005) [ 0.017105] ACPI: MCFG 0x00000000DEEF196D 00003C (v01 ALASKA A M I 01072009 MSFT 00000097) [ 0.017109] ACPI: FPDT 0x00000000DEEF19A9 000044 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.017114] ACPI: APIC 0x00000000DEEF19ED 000062 (v03 ALASKA A M I 01072009 AMI 00010013) [ 0.017118] ACPI: FACP 0x00000000DEEF1A4F 000084 (v02 ALASKA A M I 01072009 AMI 00010013) [ 0.017125] ACPI: DSDT 0x00000000DEEE65A0 009D11 (v02 ALASKA A M I 00000017 INTL 20051117) [ 0.017130] ACPI: FACS 0x00000000DF39C040 000040 [ 0.017145] ACPI: Local APIC address 0xfee00000 [ 0.017178] Zone ranges: [ 0.017179] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.017181] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.017183] Normal [mem 0x0000000100000000-0x000000021dffffff] [ 0.017185] Movable zone start for each node [ 0.017186] Early memory node ranges [ 0.017187] node 0: [mem 0x0000000000001000-0x0000000000096fff] [ 0.017189] node 0: [mem 0x0000000000100000-0x00000000cef3bfff] [ 0.017191] node 0: [mem 0x00000000cef7f000-0x00000000cf750fff] [ 0.017192] node 0: [mem 0x00000000cf992000-0x00000000ded7bfff] [ 0.017193] node 0: [mem 0x00000000dee19000-0x00000000deee5fff] [ 0.017194] node 0: [mem 0x00000000deef2000-0x00000000def82fff] [ 0.017196] node 0: [mem 0x00000000df7ff000-0x00000000df7fffff] [ 0.017197] node 0: [mem 0x0000000100000000-0x000000021dffffff] [ 0.017421] Zeroed struct page in unavailable ranges: 13331 pages [ 0.017423] Initmem setup node 0 [mem 0x0000000000001000-0x000000021dffffff] [ 0.017426] On node 0 totalpages: 2083821 [ 0.017427] DMA zone: 64 pages used for memmap [ 0.017428] DMA zone: 21 pages reserved [ 0.017430] DMA zone: 3990 pages, LIFO batch:0 [ 0.017509] DMA32 zone: 14194 pages used for memmap [ 0.017510] DMA32 zone: 908375 pages, LIFO batch:63 [ 0.035773] Normal zone: 18304 pages used for memmap [ 0.035775] Normal zone: 1171456 pages, LIFO batch:63 [ 0.057284] ACPI: PM-Timer IO Port: 0x408 [ 0.057287] ACPI: Local APIC address 0xfee00000 [ 0.057296] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.057309] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 [ 0.057312] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.057314] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.057317] ACPI: IRQ0 used by override. [ 0.057319] ACPI: IRQ9 used by override. [ 0.057323] Using ACPI (MADT) for SMP configuration information [ 0.057325] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.057330] ACPI: SPCR: SPCR table version 1 [ 0.057332] ACPI: SPCR: console: uart,io,0x3f8,115200 [ 0.057334] TSC deadline timer available [ 0.057336] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.057365] [mem 0xdf800000-0xf7ffffff] available for PCI devices [ 0.057368] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.192911] setup_percpu: NR_CPUS:12 nr_cpumask_bits:12 nr_cpu_ids:2 nr_node_ids:1 [ 0.193177] percpu: Embedded 41 pages/cpu s131032 r8192 d28712 u1048576 [ 0.193187] pcpu-alloc: s131032 r8192 d28712 u1048576 alloc=1*2097152 [ 0.193189] pcpu-alloc: [0] 0 1 [ 0.193217] Built 1 zonelists, mobility grouping on. Total pages: 2051238 [ 0.193219] Kernel command line: BOOT_IMAGE=/vmlinuz quiet console=tty0 console=ttyS0,115200n8 nmi_watchdog=0 boot_env=recovery boot_reason=rescue [ 0.194273] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.194670] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.194720] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.253264] Memory: 8071456K/8335284K available (10242K kernel code, 584K rwdata, 3152K rodata, 964K init, 2424K bss, 263828K reserved, 0K cma-reserved) [ 0.253352] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.253362] Kernel/User page tables isolation: enabled [ 0.253428] rcu: Hierarchical RCU implementation. [ 0.253429] rcu: RCU restricting CPUs from NR_CPUS=12 to nr_cpu_ids=2. [ 0.253431] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.253433] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.253444] NR_IRQS: 4352, nr_irqs: 440, preallocated irqs: 16 [ 0.253708] random: get_random_bytes called from start_kernel+0x2a4/0x455 with crng_init=0 [ 0.254093] Console: colour dummy device 80x25 [ 0.254098] printk: console [tty0] enabled [ 0.254120] printk: console [ttyS0] enabled [ 0.254126] ACPI: Core revision 20190816 [ 0.254269] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns [ 0.254286] APIC: Switch to symmetric I/O mode setup [ 0.254720] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.259288] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1427717cace, max_idle_ns: 440795222949 ns [ 0.259291] Calibrating delay loop (skipped), value calculated using timer frequency.. 2796.37 BogoMIPS (lpj=1398189) [ 0.259294] pid_max: default: 32768 minimum: 301 [ 0.259349] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.259374] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.259634] process: using mwait in idle threads [ 0.259639] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 [ 0.259641] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 [ 0.259643] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.259646] Spectre V2 : Mitigation: Full generic retpoline [ 0.259647] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.259648] Speculative Store Bypass: Vulnerable [ 0.259650] MDS: Vulnerable: Clear CPU buffers attempted, no microcode [ 0.259915] Freeing SMP alternatives memory: 16K [ 0.260371] smpboot: CPU0: Intel(R) Celeron(R) CPU 1047UE @ 1.40GHz (family: 0x6, model: 0x3a, stepping: 0x9) [ 0.260497] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver. [ 0.260507] ... version: 3 [ 0.260508] ... bit width: 48 [ 0.260509] ... generic registers: 8 [ 0.260510] ... value mask: 0000ffffffffffff [ 0.260511] ... max period: 00007fffffffffff [ 0.260512] ... fixed-purpose events: 3 [ 0.260513] ... event mask: 00000007000000ff [ 0.260565] rcu: Hierarchical SRCU implementation. [ 0.260640] smp: Bringing up secondary CPUs ... [ 0.260740] x86: Booting SMP configuration: [ 0.260742] .... node #0, CPUs: #1 [ 0.261323] smp: Brought up 1 node, 2 CPUs [ 0.261323] smpboot: Max logical packages: 1 [ 0.261323] smpboot: Total of 2 processors activated (5592.75 BogoMIPS) [ 0.262013] devtmpfs: initialized [ 0.262643] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.262648] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.262677] xor: measuring software checksum speed [ 0.271299] prefetch64-sse: 8144.000 MB/sec [ 0.281307] generic_sse: 7392.000 MB/sec [ 0.281308] xor: using function: prefetch64-sse (8144.000 MB/sec) [ 0.281311] pinctrl core: initialized pinctrl subsystem [ 0.281464] NET: Registered protocol family 16 [ 0.282308] cpuidle: using governor ladder [ 0.282308] cpuidle: using governor menu [ 0.282456] ACPI: bus type PCI registered [ 0.282498] PCI: Using configuration type 1 for base access [ 0.282657] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off [ 0.303300] raid6: sse2x4 gen() 5937 MB/s [ 0.320292] raid6: sse2x4 xor() 4138 MB/s [ 0.337304] raid6: sse2x2 gen() 4996 MB/s [ 0.354298] raid6: sse2x2 xor() 3291 MB/s [ 0.371295] raid6: sse2x1 gen() 4140 MB/s [ 0.388295] raid6: sse2x1 xor() 2841 MB/s [ 0.388296] raid6: using algorithm sse2x4 gen() 5937 MB/s [ 0.388297] raid6: .... xor() 4138 MB/s, rmw enabled [ 0.388299] raid6: using ssse3x2 recovery algorithm [ 0.388334] ACPI: Added _OSI(Module Device) [ 0.388335] ACPI: Added _OSI(Processor Device) [ 0.388336] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.388338] ACPI: Added _OSI(Processor Aggregator Device) [ 0.388339] ACPI: Added _OSI(Linux-Dell-Video) [ 0.388341] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.388342] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.396967] ACPI: 4 ACPI AML tables successfully acquired and loaded [ 0.399019] ACPI: Dynamic OEM Table Load: [ 0.399029] ACPI: SSDT 0xFFFF888214980000 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117) [ 0.400401] ACPI: Dynamic OEM Table Load: [ 0.400409] ACPI: SSDT 0xFFFF88821481A800 000303 (v01 PmRef ApIst 00003000 INTL 20051117) [ 0.401178] ACPI: Dynamic OEM Table Load: [ 0.401178] ACPI: SSDT 0xFFFF8882149AF600 000119 (v01 PmRef ApCst 00003000 INTL 20051117) [ 0.402777] ACPI: Interpreter enabled [ 0.402787] ACPI: (supports S0 S5) [ 0.402789] ACPI: Using IOAPIC for interrupt routing [ 0.402831] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.403256] ACPI: Enabled 16 GPEs in block 00 to 3F [ 0.413634] ACPI: Power Resource [FN00] (off) [ 0.413776] ACPI: Power Resource [FN01] (off) [ 0.413913] ACPI: Power Resource [FN02] (off) [ 0.414050] ACPI: Power Resource [FN03] (off) [ 0.414188] ACPI: Power Resource [FN04] (off) [ 0.415114] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e]) [ 0.415121] acpi PNP0A08:00: _OSC: OS supports [Segments MSI HPX-Type3] [ 0.415295] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI] [ 0.415627] PCI host bridge to bus 0000:00 [ 0.415631] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.415633] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.415635] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.415637] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window] [ 0.415640] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window] [ 0.415642] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window] [ 0.415644] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window] [ 0.415646] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window] [ 0.415648] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window] [ 0.415650] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window] [ 0.415652] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window] [ 0.415654] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window] [ 0.415656] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff window] [ 0.415659] pci_bus 0000:00: root bus resource [bus 00-3e] [ 0.415663] pci_bus 0000:00: scanning bus [ 0.415675] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000 [ 0.415819] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400 [ 0.415877] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 0.415880] pci 0000:00:01.0: PME# disabled [ 0.415991] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400 [ 0.416046] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 0.416049] pci 0000:00:01.1: PME# disabled [ 0.416156] pci 0000:00:01.2: [8086:0159] type 01 class 0x060400 [ 0.416210] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 0.416213] pci 0000:00:01.2: PME# disabled [ 0.416334] pci 0000:00:04.0: [8086:0153] type 00 class 0x118000 [ 0.416352] pci 0000:00:04.0: reg 0x10: [mem 0xf7c20000-0xf7c27fff 64bit] [ 0.416539] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000 [ 0.416584] pci 0000:00:16.0: reg 0x10: [mem 0xf7c30000-0xf7c3000f 64bit] [ 0.416716] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.416721] pci 0000:00:16.0: PME# disabled [ 0.416858] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000 [ 0.416898] pci 0000:00:19.0: reg 0x10: [mem 0xf7c00000-0xf7c1ffff] [ 0.416914] pci 0000:00:19.0: reg 0x14: [mem 0xf7c2d000-0xf7c2dfff] [ 0.416929] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f] [ 0.417052] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 0.417058] pci 0000:00:19.0: PME# disabled [ 0.417185] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320 [ 0.417223] pci 0000:00:1a.0: reg 0x10: [mem 0xf7c2c000-0xf7c2c3ff] [ 0.417375] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.417379] pci 0000:00:1a.0: PME# disabled [ 0.417510] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400 [ 0.417675] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.417681] pci 0000:00:1c.0: PME# disabled [ 0.417824] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400 [ 0.417986] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 0.417991] pci 0000:00:1c.4: PME# disabled [ 0.418128] pci 0000:00:1c.6: [8086:1e1c] type 01 class 0x060400 [ 0.418290] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold [ 0.418296] pci 0000:00:1c.6: PME# disabled [ 0.418433] pci 0000:00:1c.7: [8086:1e1e] type 01 class 0x060400 [ 0.418595] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold [ 0.418601] pci 0000:00:1c.7: PME# disabled [ 0.418737] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320 [ 0.418776] pci 0000:00:1d.0: reg 0x10: [mem 0xf7c2b000-0xf7c2b3ff] [ 0.418924] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.418929] pci 0000:00:1d.0: PME# disabled [ 0.419055] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100 [ 0.419337] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601 [ 0.419377] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097] [ 0.419393] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083] [ 0.419409] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077] [ 0.419425] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063] [ 0.419440] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f] [ 0.419455] pci 0000:00:1f.2: reg 0x24: [mem 0xf7c2a000-0xf7c2a7ff] [ 0.419548] pci 0000:00:1f.2: PME# supported from D3hot [ 0.419553] pci 0000:00:1f.2: PME# disabled [ 0.419675] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500 [ 0.419712] pci 0000:00:1f.3: reg 0x10: [mem 0xf7c29000-0xf7c290ff 64bit] [ 0.419755] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f] [ 0.419910] pci 0000:00:1f.6: [8086:1e24] type 00 class 0x118000 [ 0.419952] pci 0000:00:1f.6: reg 0x10: [mem 0xf7c28000-0xf7c28fff 64bit] [ 0.420168] pci_bus 0000:00: fixups for bus [ 0.420172] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 0 [ 0.420200] pci_bus 0000:01: scanning bus [ 0.420203] pci_bus 0000:01: fixups for bus [ 0.420206] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.420213] pci_bus 0000:01: bus scan returning with max=01 [ 0.420217] pci 0000:00:01.1: scanning [bus 02-02] behind bridge, pass 0 [ 0.420242] pci_bus 0000:02: scanning bus [ 0.420245] pci_bus 0000:02: fixups for bus [ 0.420247] pci 0000:00:01.1: PCI bridge to [bus 02] [ 0.420253] pci_bus 0000:02: bus scan returning with max=02 [ 0.420257] pci 0000:00:01.2: scanning [bus 03-03] behind bridge, pass 0 [ 0.420282] pci_bus 0000:03: scanning bus [ 0.420351] pci 0000:03:00.0: [15b3:cb84] type 00 class 0x020000 [ 0.420476] pci 0000:03:00.0: reg 0x10: [mem 0xf5000000-0xf53fffff 64bit] [ 0.420761] pci 0000:03:00.0: enabling Extended Tags [ 0.421068] pci 0000:03:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x4 link at 0000:00:01.2 (capable of 31.504 Gb/s with 8 GT/s x4 link) [ 0.421146] pci_bus 0000:03: fixups for bus [ 0.421148] pci 0000:00:01.2: PCI bridge to [bus 03] [ 0.421153] pci 0000:00:01.2: bridge window [mem 0xf5000000-0xf53fffff] [ 0.421157] pci_bus 0000:03: bus scan returning with max=03 [ 0.421163] pci 0000:00:1c.0: scanning [bus 04-04] behind bridge, pass 0 [ 0.421221] pci_bus 0000:04: scanning bus [ 0.421225] pci_bus 0000:04: fixups for bus [ 0.421227] pci 0000:00:1c.0: PCI bridge to [bus 04] [ 0.421233] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] [ 0.421240] pci 0000:00:1c.0: bridge window [mem 0xf7200000-0xf7bfffff] [ 0.421250] pci 0000:00:1c.0: bridge window [mem 0xf4600000-0xf4ffffff 64bit pref] [ 0.421252] pci_bus 0000:04: bus scan returning with max=04 [ 0.421258] pci 0000:00:1c.4: scanning [bus 05-05] behind bridge, pass 0 [ 0.421316] pci_bus 0000:05: scanning bus [ 0.421320] pci_bus 0000:05: fixups for bus [ 0.421321] pci 0000:00:1c.4: PCI bridge to [bus 05] [ 0.421327] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff] [ 0.421332] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff] [ 0.421342] pci 0000:00:1c.4: bridge window [mem 0xf3c00000-0xf45fffff 64bit pref] [ 0.421344] pci_bus 0000:05: bus scan returning with max=05 [ 0.421350] pci 0000:00:1c.6: scanning [bus 06-0d] behind bridge, pass 0 [ 0.421407] pci_bus 0000:06: scanning bus [ 0.421450] pci 0000:06:00.0: [8086:150c] type 00 class 0x020000 [ 0.421503] pci 0000:06:00.0: reg 0x10: [mem 0xf5e00000-0xf5e1ffff] [ 0.421560] pci 0000:06:00.0: reg 0x18: [io 0xb000-0xb01f] [ 0.421589] pci 0000:06:00.0: reg 0x1c: [mem 0xf5e20000-0xf5e23fff] [ 0.421851] pci 0000:06:00.0: PME# supported from D0 D3hot [ 0.421861] pci 0000:06:00.0: PME# disabled [ 0.421969] pci_bus 0000:06: fixups for bus [ 0.421971] pci 0000:00:1c.6: PCI bridge to [bus 06-0d] [ 0.421977] pci 0000:00:1c.6: bridge window [io 0xb000-0xcfff] [ 0.421983] pci 0000:00:1c.6: bridge window [mem 0xf5e00000-0xf67fffff] [ 0.421993] pci 0000:00:1c.6: bridge window [mem 0xf3200000-0xf3bfffff 64bit pref] [ 0.421995] pci_bus 0000:06: bus scan returning with max=06 [ 0.422001] pci 0000:00:1c.7: scanning [bus 0e-0e] behind bridge, pass 0 [ 0.422058] pci_bus 0000:0e: scanning bus [ 0.422063] pci_bus 0000:0e: fixups for bus [ 0.422064] pci 0000:00:1c.7: PCI bridge to [bus 0e] [ 0.422070] pci 0000:00:1c.7: bridge window [io 0x9000-0xafff] [ 0.422076] pci 0000:00:1c.7: bridge window [mem 0xf5400000-0xf5dfffff] [ 0.422086] pci 0000:00:1c.7: bridge window [mem 0xf2800000-0xf31fffff 64bit pref] [ 0.422088] pci_bus 0000:0e: bus scan returning with max=0e [ 0.422093] pci 0000:00:01.0: scanning [bus 01-01] behind bridge, pass 1 [ 0.422098] pci 0000:00:01.1: scanning [bus 02-02] behind bridge, pass 1 [ 0.422103] pci 0000:00:01.2: scanning [bus 03-03] behind bridge, pass 1 [ 0.422109] pci 0000:00:1c.0: scanning [bus 04-04] behind bridge, pass 1 [ 0.422121] pci 0000:00:1c.4: scanning [bus 05-05] behind bridge, pass 1 [ 0.422133] pci 0000:00:1c.6: scanning [bus 06-0d] behind bridge, pass 1 [ 0.422145] pci 0000:00:1c.7: scanning [bus 0e-0e] behind bridge, pass 1 [ 0.422155] pci_bus 0000:00: bus scan returning with max=0e [ 0.422157] pci_bus 0000:00: on NUMA node 0 [ 0.422965] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15) [ 0.423045] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled. [ 0.423123] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 *10 11 12 14 15) [ 0.423198] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 10 11 12 14 15) [ 0.423272] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 10 11 12 14 15) [ 0.423349] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled. [ 0.423423] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled. [ 0.423498] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15) [ 0.424095] SCSI subsystem initialized [ 0.424095] libata version 3.00 loaded. [ 0.424095] ACPI: bus type USB registered [ 0.424095] usbcore: registered new interface driver usbfs [ 0.424095] usbcore: registered new interface driver hub [ 0.424304] usbcore: registered new device driver usb [ 0.424304] pps_core: LinuxPPS API ver. 1 registered [ 0.424304] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.424304] PTP clock support registered [ 0.424348] PCI: Using ACPI for IRQ routing [ 0.424350] PCI: pci_cache_line_size set to 64 bytes [ 0.424371] pci 0000:03:00.0: BAR 0: reserving [mem 0xf5000000-0xf53fffff flags 0x140204] (d=0, p=0) [ 0.424375] pci 0000:00:04.0: BAR 0: reserving [mem 0xf7c20000-0xf7c27fff flags 0x140204] (d=0, p=0) [ 0.424381] pci 0000:00:16.0: BAR 0: reserving [mem 0xf7c30000-0xf7c3000f flags 0x140204] (d=0, p=0) [ 0.424385] pci 0000:00:19.0: BAR 0: reserving [mem 0xf7c00000-0xf7c1ffff flags 0x40200] (d=0, p=0) [ 0.424388] pci 0000:00:19.0: BAR 1: reserving [mem 0xf7c2d000-0xf7c2dfff flags 0x40200] (d=0, p=0) [ 0.424392] pci 0000:00:19.0: BAR 2: reserving [io 0xf040-0xf05f flags 0x40101] (d=0, p=0) [ 0.424396] pci 0000:00:1a.0: BAR 0: reserving [mem 0xf7c2c000-0xf7c2c3ff flags 0x40200] (d=0, p=0) [ 0.424409] pci 0000:06:00.0: BAR 0: reserving [mem 0xf5e00000-0xf5e1ffff flags 0x40200] (d=0, p=0) [ 0.424412] pci 0000:06:00.0: BAR 2: reserving [io 0xb000-0xb01f flags 0x40101] (d=0, p=0) [ 0.424415] pci 0000:06:00.0: BAR 3: reserving [mem 0xf5e20000-0xf5e23fff flags 0x40200] (d=0, p=0) [ 0.424421] pci 0000:00:1d.0: BAR 0: reserving [mem 0xf7c2b000-0xf7c2b3ff flags 0x40200] (d=0, p=0) [ 0.424429] pci 0000:00:1f.2: BAR 0: reserving [io 0xf090-0xf097 flags 0x40101] (d=0, p=0) [ 0.424431] pci 0000:00:1f.2: BAR 1: reserving [io 0xf080-0xf083 flags 0x40101] (d=0, p=0) [ 0.424434] pci 0000:00:1f.2: BAR 2: reserving [io 0xf070-0xf077 flags 0x40101] (d=0, p=0) [ 0.424436] pci 0000:00:1f.2: BAR 3: reserving [io 0xf060-0xf063 flags 0x40101] (d=0, p=0) [ 0.424438] pci 0000:00:1f.2: BAR 4: reserving [io 0xf020-0xf03f flags 0x40101] (d=0, p=0) [ 0.424441] pci 0000:00:1f.2: BAR 5: reserving [mem 0xf7c2a000-0xf7c2a7ff flags 0x40200] (d=0, p=0) [ 0.424446] pci 0000:00:1f.3: BAR 0: reserving [mem 0xf7c29000-0xf7c290ff flags 0x140204] (d=0, p=0) [ 0.424449] pci 0000:00:1f.3: BAR 4: reserving [io 0xf000-0xf01f flags 0x40101] (d=0, p=0) [ 0.424454] pci 0000:00:1f.6: BAR 0: reserving [mem 0xf7c28000-0xf7c28fff flags 0x140204] (d=0, p=0) [ 0.424496] e820: reserve RAM buffer [mem 0x00097c00-0x0009ffff] [ 0.424499] e820: reserve RAM buffer [mem 0xcef3c000-0xcfffffff] [ 0.424501] e820: reserve RAM buffer [mem 0xcf751000-0xcfffffff] [ 0.424502] e820: reserve RAM buffer [mem 0xded7c000-0xdfffffff] [ 0.424505] e820: reserve RAM buffer [mem 0xdeee65a0-0xdfffffff] [ 0.424507] e820: reserve RAM buffer [mem 0xdef83000-0xdfffffff] [ 0.424509] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff] [ 0.424510] e820: reserve RAM buffer [mem 0x21e000000-0x21fffffff] [ 0.424826] clocksource: Switched to clocksource tsc-early [ 0.424886] FS-Cache: Loaded [ 0.424904] pnp: PnP ACPI init [ 0.425000] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved [ 0.425007] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.425115] system 00:01: [io 0x0680-0x069f] has been reserved [ 0.425118] system 00:01: [io 0x1000-0x100f] has been reserved [ 0.425121] system 00:01: [io 0xffff] has been reserved [ 0.425123] system 00:01: [io 0xffff] has been reserved [ 0.425125] system 00:01: [io 0x0400-0x0453] has been reserved [ 0.425128] system 00:01: [io 0x0458-0x047f] has been reserved [ 0.425130] system 00:01: [io 0x0500-0x057f] has been reserved [ 0.425132] system 00:01: [io 0x164e-0x164f] has been reserved [ 0.425138] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.425166] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.425166] system 00:03: [io 0x0454-0x0457] has been reserved [ 0.425166] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active) [ 0.425166] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.425166] pnp 00:05: [dma 0 disabled] [ 0.425166] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.425166] system 00:06: [io 0x04d0-0x04d1] has been reserved [ 0.425166] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.425420] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.425422] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.425425] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.425427] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.425430] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.425433] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.425435] system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved [ 0.425437] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved [ 0.425440] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 0.425443] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved [ 0.425445] system 00:07: [mem 0xe0000000-0xe0000fff] has been reserved [ 0.425451] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.425644] pnp: PnP ACPI: found 8 devices [ 0.427210] thermal_sys: Registered thermal governor 'step_wise' [ 0.431752] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.431765] pci 0000:00:01.0: PCI bridge to [bus 01] [ 0.431774] pci 0000:00:01.1: PCI bridge to [bus 02] [ 0.431782] pci 0000:00:01.2: PCI bridge to [bus 03] [ 0.431786] pci 0000:00:01.2: bridge window [mem 0xf5000000-0xf53fffff] [ 0.431792] pci 0000:00:1c.0: PCI bridge to [bus 04] [ 0.431797] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] [ 0.431805] pci 0000:00:1c.0: bridge window [mem 0xf7200000-0xf7bfffff] [ 0.431811] pci 0000:00:1c.0: bridge window [mem 0xf4600000-0xf4ffffff 64bit pref] [ 0.431821] pci 0000:00:1c.4: PCI bridge to [bus 05] [ 0.431825] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff] [ 0.431833] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff] [ 0.431839] pci 0000:00:1c.4: bridge window [mem 0xf3c00000-0xf45fffff 64bit pref] [ 0.431848] pci 0000:00:1c.6: PCI bridge to [bus 06-0d] [ 0.431852] pci 0000:00:1c.6: bridge window [io 0xb000-0xcfff] [ 0.431860] pci 0000:00:1c.6: bridge window [mem 0xf5e00000-0xf67fffff] [ 0.431866] pci 0000:00:1c.6: bridge window [mem 0xf3200000-0xf3bfffff 64bit pref] [ 0.431876] pci 0000:00:1c.7: PCI bridge to [bus 0e] [ 0.431880] pci 0000:00:1c.7: bridge window [io 0x9000-0xafff] [ 0.431888] pci 0000:00:1c.7: bridge window [mem 0xf5400000-0xf5dfffff] [ 0.431894] pci 0000:00:1c.7: bridge window [mem 0xf2800000-0xf31fffff 64bit pref] [ 0.431905] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.431907] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.431910] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 0.431912] pci_bus 0000:00: resource 7 [mem 0x000c4000-0x000c7fff window] [ 0.431914] pci_bus 0000:00: resource 8 [mem 0x000c8000-0x000cbfff window] [ 0.431916] pci_bus 0000:00: resource 9 [mem 0x000cc000-0x000cffff window] [ 0.431918] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff window] [ 0.431920] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff window] [ 0.431922] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff window] [ 0.431924] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff window] [ 0.431926] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff window] [ 0.431928] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff window] [ 0.431931] pci_bus 0000:00: resource 16 [mem 0xe0000000-0xfeafffff window] [ 0.431933] pci_bus 0000:03: resource 1 [mem 0xf5000000-0xf53fffff] [ 0.431935] pci_bus 0000:04: resource 0 [io 0xe000-0xefff] [ 0.431937] pci_bus 0000:04: resource 1 [mem 0xf7200000-0xf7bfffff] [ 0.431940] pci_bus 0000:04: resource 2 [mem 0xf4600000-0xf4ffffff 64bit pref] [ 0.431942] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff] [ 0.431944] pci_bus 0000:05: resource 1 [mem 0xf6800000-0xf71fffff] [ 0.431946] pci_bus 0000:05: resource 2 [mem 0xf3c00000-0xf45fffff 64bit pref] [ 0.431948] pci_bus 0000:06: resource 0 [io 0xb000-0xcfff] [ 0.431950] pci_bus 0000:06: resource 1 [mem 0xf5e00000-0xf67fffff] [ 0.431952] pci_bus 0000:06: resource 2 [mem 0xf3200000-0xf3bfffff 64bit pref] [ 0.431954] pci_bus 0000:0e: resource 0 [io 0x9000-0xafff] [ 0.431956] pci_bus 0000:0e: resource 1 [mem 0xf5400000-0xf5dfffff] [ 0.431958] pci_bus 0000:0e: resource 2 [mem 0xf2800000-0xf31fffff 64bit pref] [ 0.432099] NET: Registered protocol family 2 [ 0.432318] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.432336] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.432456] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 0.432630] TCP: Hash tables configured (established 65536 bind 65536) [ 0.432674] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.432702] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.432777] NET: Registered protocol family 1 [ 0.432926] RPC: Registered named UNIX socket transport module. [ 0.432927] RPC: Registered udp transport module. [ 0.432928] RPC: Registered tcp transport module. [ 0.432929] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.433577] pci 0000:06:00.0: CLS mismatch (64 != 32), using 64 bytes [ 0.433634] Trying to unpack rootfs image as initramfs... [ 3.267869] Freeing initrd memory: 31484K [ 3.267873] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 3.267876] software IO TLB: mapped [mem 0xdad7c000-0xded7c000] (64MB) [ 3.268087] ivb_uncore 0000:00:00.0: runtime IRQ mapping not provided by arch [ 3.268731] workingset: timestamp_bits=62 max_order=21 bucket_order=0 [ 3.270512] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 3.270685] NFS: Registering the id_resolver key type [ 3.270693] Key type id_resolver registered [ 3.270694] Key type id_legacy registered [ 3.270707] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc. [ 3.278815] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 3.278817] io scheduler mq-deadline registered [ 3.278819] io scheduler kyber registered [ 3.278944] pcieport 0000:00:01.0: runtime IRQ mapping not provided by arch [ 3.279190] pcieport 0000:00:01.1: runtime IRQ mapping not provided by arch [ 3.279383] pcieport 0000:00:01.2: runtime IRQ mapping not provided by arch [ 3.279554] pcieport 0000:00:1c.0: runtime IRQ mapping not provided by arch [ 3.279786] pcieport 0000:00:1c.4: runtime IRQ mapping not provided by arch [ 3.280013] pcieport 0000:00:1c.6: runtime IRQ mapping not provided by arch [ 3.280249] pcieport 0000:00:1c.7: runtime IRQ mapping not provided by arch [ 3.280502] intel_idle: MWAIT substates: 0x21120 [ 3.280504] intel_idle: v0.4.1 model 0x3A [ 3.280629] intel_idle: lapic_timer_reliable_states 0xffffffff [ 3.281323] thermal LNXTHERM:00: registered as thermal_zone0 [ 3.281325] ACPI: Thermal Zone [TZ00] (28 C) [ 3.281671] thermal LNXTHERM:01: registered as thermal_zone1 [ 3.281672] ACPI: Thermal Zone [TZ01] (30 C) [ 3.291761] Serial: 8250/16550 driver, 2 ports, IRQ sharing enabled [ 3.312439] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 3.312830] Non-volatile memory driver v1.3 [ 3.313586] brd: module loaded [ 3.315873] loop: module loaded [ 3.315968] mei_me 0000:00:16.0: runtime IRQ mapping not provided by arch [ 3.315987] lpc_ich 0000:00:1f.0: runtime IRQ mapping not provided by arch [ 3.316096] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20190816/utaddress-213) [ 3.316107] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 3.316118] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-213) [ 3.316125] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 3.316131] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-213) [ 3.316137] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 3.316144] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20190816/utaddress-213) [ 3.316149] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 3.316150] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 3.316482] ahci 0000:00:1f.2: runtime IRQ mapping not provided by arch [ 3.316486] ahci 0000:00:1f.2: version 3.0 [ 3.316728] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode [ 3.316733] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 3.317283] scsi host0: ahci [ 3.317435] scsi host1: ahci [ 3.317542] scsi host2: ahci [ 3.317645] scsi host3: ahci [ 3.317748] scsi host4: ahci [ 3.317844] scsi host5: ahci [ 3.317894] ata1: SATA max UDMA/133 abar m2048@0xf7c2a000 port 0xf7c2a100 irq 32 [ 3.317896] ata2: DUMMY [ 3.317897] ata3: DUMMY [ 3.317898] ata4: DUMMY [ 3.317899] ata5: DUMMY [ 3.317900] ata6: DUMMY [ 3.318392] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI [ 3.318393] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 3.318416] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k [ 3.318417] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 3.318432] e1000e 0000:00:19.0: runtime IRQ mapping not provided by arch [ 3.318668] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode [ 3.399252] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock [ 3.481956] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) ec:0d:9a:93:d7:26 [ 3.481960] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection [ 3.481997] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF [ 3.482036] e1000e 0000:06:00.0: runtime IRQ mapping not provided by arch [ 3.482292] e1000e 0000:06:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode [ 3.529439] e1000e 0000:06:00.0 0000:06:00.0 (uninitialized): registered PHC clock [ 3.577015] e1000e 0000:06:00.0 eth1: (PCI Express:2.5GT/s:Width x1) ec:0d:9a:93:d7:27 [ 3.577019] e1000e 0000:06:00.0 eth1: Intel(R) PRO/1000 Network Connection [ 3.577107] e1000e 0000:06:00.0 eth1: MAC: 4, PHY: 8, PBA No: 000000-001 [ 3.577140] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k [ 3.577141] igb: Copyright (c) 2007-2014 Intel Corporation. [ 3.577171] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k [ 3.577172] ixgbe: Copyright (c) 1999-2016 Intel Corporation. [ 3.577361] ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI [ 3.577364] ixgb: Copyright (c) 1999-2008 Intel Corporation. [ 3.577409] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.577410] ehci-pci: EHCI PCI platform driver [ 3.577428] ehci-pci 0000:00:1a.0: runtime IRQ mapping not provided by arch [ 3.577628] ehci-pci 0000:00:1a.0: enabling bus mastering [ 3.577645] ehci-pci 0000:00:1a.0: EHCI Host Controller [ 3.577656] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 3.577674] ehci-pci 0000:00:1a.0: debug port 2 [ 3.581602] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported [ 3.581625] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7c2c000 [ 3.588360] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 3.588744] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 3.588748] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.588750] usb usb1: Product: EHCI Host Controller [ 3.588752] usb usb1: Manufacturer: Linux 5.4.86-onie+ ehci_hcd [ 3.588754] usb usb1: SerialNumber: 0000:00:1a.0 [ 3.589058] hub 1-0:1.0: USB hub found [ 3.589114] hub 1-0:1.0: 2 ports detected [ 3.589399] ehci-pci 0000:00:1d.0: runtime IRQ mapping not provided by arch [ 3.589596] ehci-pci 0000:00:1d.0: enabling bus mastering [ 3.589613] ehci-pci 0000:00:1d.0: EHCI Host Controller [ 3.589622] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 3.589638] ehci-pci 0000:00:1d.0: debug port 2 [ 3.593563] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported [ 3.593584] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7c2b000 [ 3.600363] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 3.600725] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04 [ 3.600729] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.600731] usb usb2: Product: EHCI Host Controller [ 3.600733] usb usb2: Manufacturer: Linux 5.4.86-onie+ ehci_hcd [ 3.600735] usb usb2: SerialNumber: 0000:00:1d.0 [ 3.601012] hub 2-0:1.0: USB hub found [ 3.601063] hub 2-0:1.0: 2 ports detected [ 3.601358] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 3.601367] ohci-pci: OHCI PCI platform driver [ 3.601389] uhci_hcd: USB Universal Host Controller Interface driver [ 3.601464] usbcore: registered new interface driver usb-storage [ 3.601514] i8042: PNP: No PS/2 controller found. [ 3.601515] i8042: Probing ports directly. [ 3.602437] i8042: No controller found [ 3.602483] rtc_cmos 00:02: RTC can wake from S4 [ 3.602694] rtc_cmos 00:02: registered as rtc0 [ 3.602711] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs [ 3.602729] i2c /dev entries driver [ 3.602757] i801_smbus 0000:00:1f.3: runtime IRQ mapping not provided by arch [ 3.602761] i801_smbus 0000:00:1f.3: Interrupt disabled by user [ 3.602944] i801_smbus 0000:00:1f.3: SMBus using polling [ 3.623537] device-mapper: uevent: version 1.0.3 [ 3.623714] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 3.623822] device-mapper: raid: Loading target version 1.14.0 [ 3.623855] intel_pstate: Intel P-state driver initializing [ 3.623961] sdhci: Secure Digital Host Controller Interface driver [ 3.623962] sdhci: Copyright(c) Pierre Ossman [ 3.623963] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.628313] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 3.628946] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 3.628951] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 3.628954] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 3.629174] ata1.00: ATA-9: InnoDisk Corp. - mSATA 3ME, S140714, max UDMA/133 [ 3.629176] ata1.00: 62533296 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 3.629720] ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded [ 3.629724] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out [ 3.629727] ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out [ 3.629910] ata1.00: configured for UDMA/133 [ 3.630076] scsi 0:0:0:0: Direct-Access ATA InnoDisk Corp. - 714 PQ: 0 ANSI: 5 [ 3.630487] sd 0:0:0:0: [sda] 62533296 512-byte logical blocks: (32.0 GB/29.8 GiB) [ 3.630518] sd 0:0:0:0: [sda] Write Protect is off [ 3.630522] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 3.630572] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.631931] Alternate GPT is invalid, using primary GPT. [ 3.631946] sda: sda1 sda2 sda128 [ 3.632382] sd 0:0:0:0: [sda] Attached SCSI disk [ 3.692199] i2c i2c-1: Added multiplexed i2c bus 2 [ 3.692346] i2c i2c-1: Added multiplexed i2c bus 3 [ 3.692491] i2c i2c-1: Added multiplexed i2c bus 4 [ 3.692636] i2c i2c-1: Added multiplexed i2c bus 5 [ 3.692776] i2c i2c-1: Added multiplexed i2c bus 6 [ 3.692916] i2c i2c-1: Added multiplexed i2c bus 7 [ 3.692990] i2c i2c-1: Added multiplexed i2c bus 8 [ 3.693050] i2c i2c-1: Added multiplexed i2c bus 9 [ 3.693146] i2c i2c-1: Added multiplexed i2c bus 10 [ 3.693204] i2c i2c-1: Added multiplexed i2c bus 11 [ 3.693268] i2c i2c-1: Added multiplexed i2c bus 12 [ 3.693345] i2c i2c-1: Added multiplexed i2c bus 13 [ 3.693408] i2c i2c-1: Added multiplexed i2c bus 14 [ 3.693460] i2c i2c-1: Added multiplexed i2c bus 15 [ 3.693503] i2c i2c-1: Added multiplexed i2c bus 16 [ 3.693543] i2c i2c-1: Added multiplexed i2c bus 17 [ 3.693726] oprofile: using NMI interrupt. [ 3.693845] Initializing XFRM netlink socket [ 3.693976] NET: Registered protocol family 10 [ 3.694442] Segment Routing with IPv6 [ 3.694481] mip6: Mobile IPv6 [ 3.694483] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 3.694837] NET: Registered protocol family 17 [ 3.694842] NET: Registered protocol family 15 [ 3.694854] 8021q: 802.1Q VLAN Support v1.8 [ 3.694869] Key type dns_resolver registered [ 3.695031] IPI shorthand broadcast: enabled [ 3.695043] sched_clock: Marking stable (3693648150, 646247)->(3706929107, -12634710) [ 3.695107] registered taskstats version 1 [ 3.695719] Btrfs loaded, crc32c=crc32c-generic [ 3.695958] printk: console [netcon0] enabled [ 3.695959] netconsole: network logging started [ 3.695996] rtc_cmos 00:02: setting system clock to 2024-07-18T13:39:17 UTC (1721309957) [ 3.696591] Freeing unused kernel image memory: 964K [ 3.699354] Write protecting the kernel read-only data: 16384k [ 3.700215] Freeing unused kernel image memory: 2028K [ 3.700609] Freeing unused kernel image memory: 944K [ 3.700659] rodata_test: all tests were successful [ 3.700662] Run /init as init process [ 3.706584] random: logger: uninitialized urandom read (8 bytes read) [ 3.706587] random: tee: uninitialized urandom read (8 bytes read) [ 3.707548] random: mkdir: uninitialized urandom read (8 bytes read) [ 3.912355] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 3.920349] usb 2-1: new high-speed USB device number 2 using ehci-pci [ 4.041187] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 4.041191] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.041694] hub 1-1:1.0: USB hub found [ 4.041871] hub 1-1:1.0: 6 ports detected [ 4.048746] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 [ 4.048750] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 4.049117] hub 2-1:1.0: USB hub found [ 4.049237] hub 2-1:1.0: 8 ports detected [ 4.318358] tsc: Refined TSC clocksource calibration: 1398.189 MHz [ 4.318368] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1427717cace, max_idle_ns: 440795222949 ns [ 4.318409] clocksource: Switched to clocksource tsc [ 4.326364] usb 2-1.2: new high-speed USB device number 3 using ehci-pci [ 4.413802] usb 2-1.2: New USB device found, idVendor=058f, idProduct=6387, bcdDevice= 1.12 [ 4.413806] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 4.413809] usb 2-1.2: Product: Mass Storage [ 4.413811] usb 2-1.2: Manufacturer: Generic [ 4.413813] usb 2-1.2: SerialNumber: E3EB7E99 [ 4.414342] usb-storage 2-1.2:1.0: USB Mass Storage device detected [ 4.414553] scsi host6: usb-storage 2-1.2:1.0 [ 5.472626] scsi 6:0:0:0: Direct-Access Generic Flash Disk 8.07 PQ: 0 ANSI: 4 [ 5.474336] sd 6:0:0:0: [sdb] 65830912 512-byte logical blocks: (33.7 GB/31.4 GiB) [ 5.475522] sd 6:0:0:0: [sdb] Write Protect is off [ 5.475527] sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00 [ 5.476748] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 5.486864] sdb: sdb1 [ 5.490061] sd 6:0:0:0: [sdb] Attached SCSI removable disk [ 18.761533] random: fast init done [ 20.285863] random: crng init done [ 20.285866] random: 7 urandom warning(s) missed due to ratelimiting [ 33.086359] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None [ 33.086412] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 90.526925] 8021q: adding VLAN 0 to HW filter on device eth1
OpenWrt bootlog
[ 0.000000] Linux version 6.6.38 (til@Til-Desktop) (x86_64-openwrt-linux-musl-gcc (OpenWrt GCC 14.1.0 r26912-3c95641366) 14.1.0, GNU ld (GNU Binutils) 2.42) #0 SMP Thu Jul 11 13:57:30 2024 [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz root=PARTUUID=a602c0c8-a000-6a51-0eb8-4ad5b1a70c02 rootwait console=ttyS0,115200n8 noinitrd [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000099bff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000099c00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cf66cfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cf66d000-0x00000000cf6affff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000cf6b0000-0x00000000cfe83fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cfe84000-0x00000000d00c4fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000d00c5000-0x00000000ded7bfff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ded7c000-0x00000000dee18fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000dee19000-0x00000000def82fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000def83000-0x00000000df39dfff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000df39e000-0x00000000df7fefff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021dffffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Mellanox Technologies Ltd. Mellanox switch/Mellanox switch, BIOS 4.6.5 05/21/2015 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 1398.161 MHz processor [ 0.000006] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000011] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000028] last_pfn = 0x21e000 max_arch_pfn = 0x400000000 [ 0.000037] MTRR map: 6 entries (3 fixed + 3 variable; max 23), built from 10 variable MTRRs [ 0.000041] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.000379] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved [ 0.000384] last_pfn = 0xdf800 max_arch_pfn = 0x400000000 [ 0.018902] found SMP MP-table at [mem 0x000fd800-0x000fd80f] [ 0.021019] ACPI: Early table checksum verification disabled [ 0.021024] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA) [ 0.021032] ACPI: XSDT 0x00000000DF38F078 000074 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.021042] ACPI: FACP 0x00000000DF398EA0 00010C (v05 ALASKA A M I 01072009 AMI 00010013) [ 0.021052] ACPI: DSDT 0x00000000DF38F188 009D11 (v02 ALASKA A M I 00000017 INTL 20051117) [ 0.021058] ACPI: FACS 0x00000000DF39C080 000040 [ 0.021063] ACPI: APIC 0x00000000DF398FB0 000062 (v03 ALASKA A M I 01072009 AMI 00010013) [ 0.021069] ACPI: FPDT 0x00000000DF399018 000044 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.021075] ACPI: MCFG 0x00000000DF399060 00003C (v01 ALASKA A M I 01072009 MSFT 00000097) [ 0.021081] ACPI: HPET 0x00000000DF3990A0 000038 (v01 ALASKA A M I 01072009 AMI. 00000005) [ 0.021087] ACPI: SSDT 0x00000000DF3990D8 000315 (v01 SataRe SataTabl 00001000 INTL 20091112) [ 0.021093] ACPI: SSDT 0x00000000DF3993F0 000758 (v01 PmRef Cpu0Ist 00003000 INTL 20051117) [ 0.021099] ACPI: SSDT 0x00000000DF399B48 000B22 (v01 PmRef CpuPm 00003000 INTL 20051117) [ 0.021105] ACPI: ASF! 0x00000000DF39A670 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240) [ 0.021111] ACPI: SPCR 0x00000000DF39A718 000050 (v01 A M I APTIO4 01072009 AMI. 00000005) [ 0.021116] ACPI: Reserving FACP table memory at [mem 0xdf398ea0-0xdf398fab] [ 0.021119] ACPI: Reserving DSDT table memory at [mem 0xdf38f188-0xdf398e98] [ 0.021121] ACPI: Reserving FACS table memory at [mem 0xdf39c080-0xdf39c0bf] [ 0.021123] ACPI: Reserving APIC table memory at [mem 0xdf398fb0-0xdf399011] [ 0.021124] ACPI: Reserving FPDT table memory at [mem 0xdf399018-0xdf39905b] [ 0.021126] ACPI: Reserving MCFG table memory at [mem 0xdf399060-0xdf39909b] [ 0.021128] ACPI: Reserving HPET table memory at [mem 0xdf3990a0-0xdf3990d7] [ 0.021129] ACPI: Reserving SSDT table memory at [mem 0xdf3990d8-0xdf3993ec] [ 0.021131] ACPI: Reserving SSDT table memory at [mem 0xdf3993f0-0xdf399b47] [ 0.021133] ACPI: Reserving SSDT table memory at [mem 0xdf399b48-0xdf39a669] [ 0.021134] ACPI: Reserving ASF! table memory at [mem 0xdf39a670-0xdf39a714] [ 0.021136] ACPI: Reserving SPCR table memory at [mem 0xdf39a718-0xdf39a767] [ 0.021180] Zone ranges: [ 0.021181] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.021185] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.021188] Normal [mem 0x0000000100000000-0x000000021dffffff] [ 0.021191] Movable zone start for each node [ 0.021192] Early memory node ranges [ 0.021193] node 0: [mem 0x0000000000001000-0x0000000000098fff] [ 0.021195] node 0: [mem 0x0000000000100000-0x00000000cf66cfff] [ 0.021197] node 0: [mem 0x00000000cf6b0000-0x00000000cfe83fff] [ 0.021199] node 0: [mem 0x00000000d00c5000-0x00000000ded7bfff] [ 0.021201] node 0: [mem 0x00000000dee19000-0x00000000def82fff] [ 0.021202] node 0: [mem 0x00000000df7ff000-0x00000000df7fffff] [ 0.021204] node 0: [mem 0x0000000100000000-0x000000021dffffff] [ 0.021206] Initmem setup node 0 [mem 0x0000000000001000-0x000000021dffffff] [ 0.021214] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.021261] On node 0, zone DMA: 103 pages in unavailable ranges [ 0.031068] On node 0, zone DMA32: 67 pages in unavailable ranges [ 0.031794] On node 0, zone DMA32: 577 pages in unavailable ranges [ 0.031807] On node 0, zone DMA32: 157 pages in unavailable ranges [ 0.031853] On node 0, zone DMA32: 2172 pages in unavailable ranges [ 0.045441] On node 0, zone Normal: 2048 pages in unavailable ranges [ 0.045602] On node 0, zone Normal: 8192 pages in unavailable ranges [ 0.045782] ACPI: PM-Timer IO Port: 0x408 [ 0.045797] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.045811] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 [ 0.045816] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.045820] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.045829] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.045831] ACPI: HPET id: 0x8086a701 base: 0xfed00000 [ 0.045838] ACPI: SPCR: SPCR table version 1 [ 0.045841] ACPI: SPCR: console: uart,io,0x3f8,115200 [ 0.045843] TSC deadline timer available [ 0.045844] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.045869] [mem 0xdf800000-0xf7ffffff] available for PCI devices [ 0.045872] Booting paravirtualized kernel on bare hardware [ 0.045875] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.045884] setup_percpu: NR_CPUS:512 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 [ 0.046340] percpu: Embedded 47 pages/cpu s152488 r8192 d31832 u1048576 [ 0.046353] pcpu-alloc: s152488 r8192 d31832 u1048576 alloc=1*2097152 [ 0.046358] pcpu-alloc: [0] 0 1 [ 0.046383] Kernel command line: BOOT_IMAGE=/boot/vmlinuz root=PARTUUID=a602c0c8-a000-6a51-0eb8-4ad5b1a70c02 rootwait console=ttyS0,115200n8 noinitrd [ 0.046478] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz", will be passed to user space. [ 0.047964] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.048729] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.048795] Built 1 zonelists, mobility grouping on. Total pages: 2051121 [ 0.048799] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.048805] software IO TLB: area num 2. [ 0.107111] Memory: 8095648K/8335340K available (16384K kernel code, 1125K rwdata, 5568K rodata, 2520K init, 2368K bss, 239436K reserved, 0K cma-reserved) [ 0.120695] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.120870] Kernel/User page tables isolation: enabled [ 0.121228] rcu: Hierarchical RCU implementation. [ 0.121230] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2. [ 0.121233] Tracing variant of Tasks RCU enabled. [ 0.121234] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.121236] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.121245] NR_IRQS: 33024, nr_irqs: 440, preallocated irqs: 16 [ 0.121488] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.121978] Console: colour dummy device 80x25 [ 0.122004] printk: console [ttyS0] enabled [ 0.916600] ACPI: Core revision 20230628 [ 0.921262] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns [ 0.930408] APIC: Switch to symmetric I/O mode setup [ 0.935448] x2apic: IRQ remapping doesn't support X2APIC mode [ 0.941688] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.990410] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1427571bf49, max_idle_ns: 440795252697 ns [ 1.000924] Calibrating delay loop (skipped), value calculated using timer frequency.. 2796.32 BogoMIPS (lpj=13981610) [ 1.010960] CPU0: Thermal monitoring enabled (TM1) [ 1.015775] process: using mwait in idle threads [ 1.020930] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 [ 1.026417] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 [ 1.030926] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 1.040926] Spectre V2 : Mitigation: Retpolines [ 1.045454] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 1.050924] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT [ 1.060925] Speculative Store Bypass: Vulnerable [ 1.065545] MDS: Vulnerable: Clear CPU buffers attempted, no microcode [ 1.070925] MMIO Stale Data: Unknown: No mitigations [ 1.075893] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 1.080925] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 1.090925] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format. [ 1.139154] Freeing SMP alternatives memory: 44K [ 1.140928] pid_max: default: 32768 minimum: 301 [ 1.147074] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.150939] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.171032] smpboot: CPU0: Intel(R) Celeron(R) CPU 1047UE @ 1.40GHz (family: 0x6, model: 0x3a, stepping: 0x9) [ 1.181095] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1. [ 1.188688] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver. [ 1.190927] ... version: 3 [ 1.194936] ... bit width: 48 [ 1.199034] ... generic registers: 8 [ 1.200925] ... value mask: 0000ffffffffffff [ 1.206236] ... max period: 00007fffffffffff [ 1.210926] ... fixed-purpose events: 3 [ 1.214935] ... event mask: 00000007000000ff [ 1.220519] signal: max sigframe size: 1104 [ 1.220932] Estimated ratio of average max frequency by base frequency (times 1024): 1024 [ 1.229142] rcu: Hierarchical SRCU implementation. [ 1.230925] rcu: Max phase no-delay instances is 1000. [ 1.236278] smp: Bringing up secondary CPUs ... [ 1.240980] smpboot: x86: Booting SMP configuration: [ 1.245945] .... node #0, CPUs: #1 [ 1.248386] smp: Brought up 1 node, 2 CPUs [ 1.255029] smpboot: Max logical packages: 1 [ 1.259300] smpboot: Total of 2 processors activated (5592.64 BogoMIPS) [ 1.262373] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 1.270932] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 1.278161] pinctrl core: initialized pinctrl subsystem [ 1.281967] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 1.288214] thermal_sys: Registered thermal governor 'step_wise' [ 1.288217] thermal_sys: Registered thermal governor 'user_space' [ 1.290955] cpuidle: using governor ladder [ 1.301004] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 1.308567] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 1.311202] PCI: Using configuration type 1 for base access [ 1.316845] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off [ 1.321019] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' [ 1.327620] cryptd: max_cpu_qlen set to 1000 [ 1.331889] ACPI: Added _OSI(Module Device) [ 1.336077] ACPI: Added _OSI(Processor Device) [ 1.340524] ACPI: Added _OSI(3.0 _SCP Extensions) [ 1.340929] ACPI: Added _OSI(Processor Aggregator Device) [ 1.354806] ACPI: 4 ACPI AML tables successfully acquired and loaded [ 1.362832] ACPI: Dynamic OEM Table Load: [ 1.366855] ACPI: SSDT 0xFFFF88810007F000 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20051117) [ 1.371832] ACPI: Dynamic OEM Table Load: [ 1.375847] ACPI: SSDT 0xFFFF888100197800 000303 (v01 PmRef ApIst 00003000 INTL 20051117) [ 1.381637] ACPI: Dynamic OEM Table Load: [ 1.385655] ACPI: SSDT 0xFFFF88810008CC00 000119 (v01 PmRef ApCst 00003000 INTL 20051117) [ 1.391790] ACPI: _OSC evaluated successfully for all CPUs [ 1.397552] ACPI: Interpreter enabled [ 1.400936] ACPI: PM: (supports S0 S5) [ 1.404683] ACPI: Using IOAPIC for interrupt routing [ 1.409694] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 1.410929] PCI: Using E820 reservations for host bridge windows [ 1.417292] ACPI: Enabled 16 GPEs in block 00 to 3F [ 1.431591] ACPI: \_TZ_.FN00: New power resource [ 1.436334] ACPI: \_TZ_.FN01: New power resource [ 1.441038] ACPI: \_TZ_.FN02: New power resource [ 1.445761] ACPI: \_TZ_.FN03: New power resource [ 1.450487] ACPI: \_TZ_.FN04: New power resource [ 1.451830] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e]) [ 1.458018] acpi PNP0A08:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3] [ 1.460928] acpi PNP0A08:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI] [ 1.470829] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration [ 1.471794] PCI host bridge to bus 0000:00 [ 1.475898] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 1.480926] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 1.487706] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 1.490925] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff window] [ 1.498404] pci_bus 0000:00: root bus resource [bus 00-3e] [ 1.500949] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000 [ 1.507070] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400 [ 1.510988] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold [ 1.517215] pci 0000:00:01.1: [8086:0155] type 01 class 0x060400 [ 1.520980] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 1.527202] pci 0000:00:01.2: [8086:0159] type 01 class 0x060400 [ 1.530983] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 1.537218] pci 0000:00:04.0: [8086:0153] type 00 class 0x118000 [ 1.540937] pci 0000:00:04.0: reg 0x10: [mem 0xf7c20000-0xf7c27fff 64bit] [ 1.547914] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000 [ 1.550959] pci 0000:00:16.0: reg 0x10: [mem 0xf7c30000-0xf7c3000f 64bit] [ 1.557866] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 1.561045] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000 [ 1.567076] pci 0000:00:19.0: reg 0x10: [mem 0xf7c00000-0xf7c1ffff] [ 1.570939] pci 0000:00:19.0: reg 0x14: [mem 0xf7c2d000-0xf7c2dfff] [ 1.577221] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f] [ 1.581043] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold [ 1.587277] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320 [ 1.590954] pci 0000:00:1a.0: reg 0x10: [mem 0xf7c2c000-0xf7c2c3ff] [ 1.597360] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 1.601070] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400 [ 1.607243] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 1.611080] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400 [ 1.617242] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold [ 1.621064] pci 0000:00:1c.6: [8086:1e1c] type 01 class 0x060400 [ 1.627230] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold [ 1.631065] pci 0000:00:1c.7: [8086:1e1e] type 01 class 0x060400 [ 1.637226] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold [ 1.641068] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320 [ 1.647102] pci 0000:00:1d.0: reg 0x10: [mem 0xf7c2b000-0xf7c2b3ff] [ 1.651072] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 1.657306] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100 [ 1.661227] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601 [ 1.667258] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097] [ 1.670940] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083] [ 1.676522] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077] [ 1.680938] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063] [ 1.686524] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f] [ 1.690939] pci 0000:00:1f.2: reg 0x24: [mem 0xf7c2a000-0xf7c2a7ff] [ 1.697285] pci 0000:00:1f.2: PME# supported from D3hot [ 1.701058] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500 [ 1.707098] pci 0000:00:1f.3: reg 0x10: [mem 0xf7c29000-0xf7c290ff 64bit] [ 1.710970] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f] [ 1.716692] pci 0000:00:1f.6: [8086:1e24] type 00 class 0x118000 [ 1.720959] pci 0000:00:1f.6: reg 0x10: [mem 0xf7c28000-0xf7c28fff 64bit] [ 1.727958] pci 0000:00:01.0: PCI bridge to [bus 01] [ 1.730968] pci 0000:00:01.1: PCI bridge to [bus 02] [ 1.736043] pci 0000:03:00.0: [15b3:cb84] type 00 class 0x020000 [ 1.741047] pci 0000:03:00.0: reg 0x10: [mem 0xf5000000-0xf53fffff 64bit] [ 1.748113] pci 0000:03:00.0: enabling Extended Tags [ 1.751238] pci 0000:03:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link) [ 1.761022] pci 0000:00:01.2: PCI bridge to [bus 03] [ 1.765987] pci 0000:00:01.2: bridge window [mem 0xf5000000-0xf53fffff] [ 1.771006] pci 0000:00:1c.0: PCI bridge to [bus 04] [ 1.775978] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] [ 1.780930] pci 0000:00:1c.0: bridge window [mem 0xf7200000-0xf7bfffff] [ 1.787726] pci 0000:00:1c.0: bridge window [mem 0xf4600000-0xf4ffffff 64bit pref] [ 1.791001] pci 0000:00:1c.4: PCI bridge to [bus 05] [ 1.795970] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff] [ 1.800929] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff] [ 1.807725] pci 0000:00:1c.4: bridge window [mem 0xf3c00000-0xf45fffff 64bit pref] [ 1.811050] pci 0000:06:00.0: [8086:150c] type 00 class 0x020000 [ 1.817110] pci 0000:06:00.0: reg 0x10: [mem 0xf5e00000-0xf5e1ffff] [ 1.820980] pci 0000:06:00.0: reg 0x18: [io 0xb000-0xb01f] [ 1.826583] pci 0000:06:00.0: reg 0x1c: [mem 0xf5e20000-0xf5e23fff] [ 1.831182] pci 0000:06:00.0: PME# supported from D0 D3hot [ 1.836872] pci 0000:00:1c.6: PCI bridge to [bus 06-0d] [ 1.840929] pci 0000:00:1c.6: bridge window [io 0xb000-0xcfff] [ 1.847026] pci 0000:00:1c.6: bridge window [mem 0xf5e00000-0xf67fffff] [ 1.850933] pci 0000:00:1c.6: bridge window [mem 0xf3200000-0xf3bfffff 64bit pref] [ 1.858750] pci 0000:00:1c.7: PCI bridge to [bus 0e] [ 1.860930] pci 0000:00:1c.7: bridge window [io 0x9000-0xafff] [ 1.867026] pci 0000:00:1c.7: bridge window [mem 0xf5400000-0xf5dfffff] [ 1.870933] pci 0000:00:1c.7: bridge window [mem 0xf2800000-0xf31fffff 64bit pref] [ 1.878724] pci_bus 0000:00: on NUMA node 0 [ 1.879443] ACPI: PCI: Interrupt link LNKA configured for IRQ 11 [ 1.880997] ACPI: PCI: Interrupt link LNKB configured for IRQ 0 [ 1.886919] ACPI: PCI: Interrupt link LNKB disabled [ 1.890998] ACPI: PCI: Interrupt link LNKC configured for IRQ 10 [ 1.897072] ACPI: PCI: Interrupt link LNKD configured for IRQ 5 [ 1.900992] ACPI: PCI: Interrupt link LNKE configured for IRQ 3 [ 1.906981] ACPI: PCI: Interrupt link LNKF configured for IRQ 0 [ 1.910925] ACPI: PCI: Interrupt link LNKF disabled [ 1.915871] ACPI: PCI: Interrupt link LNKG configured for IRQ 0 [ 1.920925] ACPI: PCI: Interrupt link LNKG disabled [ 1.925871] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [ 1.931479] iommu: Default domain type: Translated [ 1.936267] iommu: DMA domain TLB invalidation policy: lazy mode [ 1.941070] SCSI subsystem initialized [ 1.944869] libata version 3.00 loaded. [ 1.944869] ACPI: bus type USB registered [ 1.944869] usbcore: registered new interface driver usbfs [ 1.946447] usbcore: registered new interface driver hub [ 1.950937] usbcore: registered new device driver usb [ 1.956018] pps_core: LinuxPPS API ver. 1 registered [ 1.960925] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.970051] PTP clock support registered [ 1.981295] PCI: Using ACPI for IRQ routing [ 1.985481] PCI: pci_cache_line_size set to 64 bytes [ 1.985574] e820: reserve RAM buffer [mem 0x00099c00-0x0009ffff] [ 1.985577] e820: reserve RAM buffer [mem 0xcf66d000-0xcfffffff] [ 1.985580] e820: reserve RAM buffer [mem 0xcfe84000-0xcfffffff] [ 1.985582] e820: reserve RAM buffer [mem 0xded7c000-0xdfffffff] [ 1.985585] e820: reserve RAM buffer [mem 0xdef83000-0xdfffffff] [ 1.985587] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff] [ 1.985589] e820: reserve RAM buffer [mem 0x21e000000-0x21fffffff] [ 1.987680] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 1.990931] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 1.998794] clocksource: Switched to clocksource tsc-early [ 1.998794] pnp: PnP ACPI init [ 1.998794] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved [ 2.007098] system 00:01: [io 0x0680-0x069f] has been reserved [ 2.013028] system 00:01: [io 0x1000-0x100f] has been reserved [ 2.018945] system 00:01: [io 0xffff] has been reserved [ 2.024264] system 00:01: [io 0xffff] has been reserved [ 2.029573] system 00:01: [io 0x0400-0x0453] has been reserved [ 2.035489] system 00:01: [io 0x0458-0x047f] has been reserved [ 2.041411] system 00:01: [io 0x0500-0x057f] has been reserved [ 2.047328] system 00:01: [io 0x164e-0x164f] has been reserved [ 2.053378] system 00:03: [io 0x0454-0x0457] has been reserved [ 2.059580] pnp 00:05: [dma 0 disabled] [ 2.059722] system 00:06: [io 0x04d0-0x04d1] has been reserved [ 2.065937] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 2.072554] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved [ 2.079160] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved [ 2.085769] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved [ 2.092381] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved [ 2.098991] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved [ 2.105606] system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved [ 2.112221] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved [ 2.118831] system 00:07: [mem 0xff000000-0xffffffff] has been reserved [ 2.125446] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved [ 2.132404] system 00:07: [mem 0xe0000000-0xe0000fff] has been reserved [ 2.139197] pnp: PnP ACPI: found 8 devices [ 2.149005] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 2.158087] NET: Registered PF_INET protocol family [ 2.163135] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 2.174191] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 2.182728] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 2.190475] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 2.198493] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) [ 2.206461] TCP: Hash tables configured (established 65536 bind 65536) [ 2.213039] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 2.219855] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 2.227235] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 2.232931] pci 0000:00:01.0: PCI bridge to [bus 01] [ 2.237901] pci 0000:00:01.1: PCI bridge to [bus 02] [ 2.242878] pci 0000:00:01.2: PCI bridge to [bus 03] [ 2.247844] pci 0000:00:01.2: bridge window [mem 0xf5000000-0xf53fffff] [ 2.254637] pci 0000:00:1c.0: PCI bridge to [bus 04] [ 2.259610] pci 0000:00:1c.0: bridge window [io 0xe000-0xefff] [ 2.265713] pci 0000:00:1c.0: bridge window [mem 0xf7200000-0xf7bfffff] [ 2.272506] pci 0000:00:1c.0: bridge window [mem 0xf4600000-0xf4ffffff 64bit pref] [ 2.280251] pci 0000:00:1c.4: PCI bridge to [bus 05] [ 2.285217] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff] [ 2.291315] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff] [ 2.298105] pci 0000:00:1c.4: bridge window [mem 0xf3c00000-0xf45fffff 64bit pref] [ 2.305853] pci 0000:00:1c.6: PCI bridge to [bus 06-0d] [ 2.311080] pci 0000:00:1c.6: bridge window [io 0xb000-0xcfff] [ 2.317173] pci 0000:00:1c.6: bridge window [mem 0xf5e00000-0xf67fffff] [ 2.323960] pci 0000:00:1c.6: bridge window [mem 0xf3200000-0xf3bfffff 64bit pref] [ 2.331704] pci 0000:00:1c.7: PCI bridge to [bus 0e] [ 2.336670] pci 0000:00:1c.7: bridge window [io 0x9000-0xafff] [ 2.342769] pci 0000:00:1c.7: bridge window [mem 0xf5400000-0xf5dfffff] [ 2.349567] pci 0000:00:1c.7: bridge window [mem 0xf2800000-0xf31fffff 64bit pref] [ 2.357313] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 2.363497] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 2.369674] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 2.376543] pci_bus 0000:00: resource 7 [mem 0xe0000000-0xfeafffff window] [ 2.383421] pci_bus 0000:03: resource 1 [mem 0xf5000000-0xf53fffff] [ 2.389686] pci_bus 0000:04: resource 0 [io 0xe000-0xefff] [ 2.395258] pci_bus 0000:04: resource 1 [mem 0xf7200000-0xf7bfffff] [ 2.401524] pci_bus 0000:04: resource 2 [mem 0xf4600000-0xf4ffffff 64bit pref] [ 2.408742] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff] [ 2.414318] pci_bus 0000:05: resource 1 [mem 0xf6800000-0xf71fffff] [ 2.420583] pci_bus 0000:05: resource 2 [mem 0xf3c00000-0xf45fffff 64bit pref] [ 2.427801] pci_bus 0000:06: resource 0 [io 0xb000-0xcfff] [ 2.433375] pci_bus 0000:06: resource 1 [mem 0xf5e00000-0xf67fffff] [ 2.439642] pci_bus 0000:06: resource 2 [mem 0xf3200000-0xf3bfffff 64bit pref] [ 2.446859] pci_bus 0000:0e: resource 0 [io 0x9000-0xafff] [ 2.452434] pci_bus 0000:0e: resource 1 [mem 0xf5400000-0xf5dfffff] [ 2.458696] pci_bus 0000:0e: resource 2 [mem 0xf2800000-0xf31fffff 64bit pref] [ 2.466683] pci 0000:06:00.0: CLS mismatch (64 != 32), using 64 bytes [ 2.473157] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 2.479596] software IO TLB: mapped [mem 0x00000000dad7c000-0x00000000ded7c000] (64MB) [ 2.487585] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer [ 2.495503] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules [ 2.501257] RAPL PMU: hw unit of domain package 2^-16 Joules [ 2.508307] workingset: timestamp_bits=46 max_order=21 bucket_order=0 [ 2.517354] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 2.524044] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 2.533125] hv_vmbus: registering driver hyperv_fb [ 2.538270] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 2.546737] ACPI: button: Power Button [PWRB] [ 2.551167] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 [ 2.558616] ACPI: button: Power Button [PWRF] [ 2.564133] thermal LNXTHERM:00: registered as thermal_zone0 [ 2.569816] ACPI: thermal: Thermal Zone [TZ00] (28 C) [ 2.575196] thermal LNXTHERM:01: registered as thermal_zone1 [ 2.580863] ACPI: thermal: Thermal Zone [TZ01] (30 C) [ 2.586043] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 2.613092] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 2.621187] Non-volatile memory driver v1.3 [ 2.625443] Linux agpgart interface v0.103 [ 2.629564] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug. [ 2.638269] ACPI: bus type drm_connector registered [ 2.645592] loop: module loaded [ 2.648771] Guest personality initialized and is inactive [ 2.654215] VMCI host device registered (name=vmci, major=10, minor=127) [ 2.660923] Initialized host personality [ 2.664955] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20230628/utaddress-204) [ 2.680421] ACPI: OSL: Resource conflict; ACPI support missing from driver? [ 2.687382] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20230628/utaddress-204) [ 2.702850] ACPI: OSL: Resource conflict; ACPI support missing from driver? [ 2.709819] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20230628/utaddress-204) [ 2.725278] ACPI: OSL: Resource conflict; ACPI support missing from driver? [ 2.732244] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20230628/utaddress-204) [ 2.747707] ACPI: OSL: Resource conflict; ACPI support missing from driver? [ 2.754673] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 2.760971] VMware PVSCSI driver - version 1.0.7.0-k [ 2.765949] hv_vmbus: registering driver hv_storvsc [ 2.771388] ahci 0000:00:1f.2: version 3.0 [ 2.771700] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode [ 2.779814] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 2.788308] scsi host0: ahci [ 2.791508] scsi host1: ahci [ 2.794588] scsi host2: ahci [ 2.797684] scsi host3: ahci [ 2.800807] scsi host4: ahci [ 2.803884] scsi host5: ahci [ 2.806848] ata1: SATA max UDMA/133 abar m2048@0xf7c2a000 port 0xf7c2a100 irq 27 [ 2.814254] ata2: DUMMY [ 2.816704] ata3: DUMMY [ 2.819156] ata4: DUMMY [ 2.821613] ata5: DUMMY [ 2.824063] ata6: DUMMY [ 2.826685] VMware vmxnet3 virtual NIC driver - version 1.7.0.0-k-NAPI [ 2.833231] hv_vmbus: registering driver hv_netvsc [ 2.838024] Fusion MPT base driver 3.04.20 [ 2.842128] Copyright (c) 1999-2008 LSI Corporation [ 2.847008] Fusion MPT SPI Host driver 3.04.20 [ 2.851464] Fusion MPT SAS Host driver 3.04.20 [ 2.855996] usbcore: registered new interface driver usb-storage [ 2.856202] ehci-pci 0000:00:1a.0: EHCI Host Controller [ 2.862092] i8042: PNP: No PS/2 controller found. [ 2.867248] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 [ 2.871943] hv_vmbus: registering driver hyperv_keyboard [ 2.879349] ehci-pci 0000:00:1a.0: debug port 2 [ 2.884665] rtc_cmos 00:02: RTC can wake from S4 [ 2.893106] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7c2c000 [ 2.894165] rtc_cmos 00:02: registered as rtc0 [ 2.903920] rtc_cmos 00:02: setting system clock to 2024-07-18T15:51:15 UTC (1721317875) [ 2.912021] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram [ 2.918738] fail to initialize ptp_kvm [ 2.919243] intel_pstate: Intel P-state driver initializing [ 2.928788] sdhci: Secure Digital Host Controller Interface driver [ 2.934996] sdhci: Copyright(c) Pierre Ossman [ 2.939611] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 [ 2.939962] hv_utils: Registering HyperV Utility Driver [ 2.945738] hub 1-0:1.0: USB hub found [ 2.950611] hv_vmbus: registering driver hv_utils [ 2.954437] hub 1-0:1.0: 2 ports detected [ 2.959063] hv_vmbus: registering driver hv_balloon [ 2.959364] NET: Registered PF_INET6 protocol family [ 2.963741] ehci-pci 0000:00:1d.0: EHCI Host Controller [ 2.968502] Segment Routing with IPv6 [ 2.972946] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 [ 2.978172] In-situ OAM (IOAM) with IPv6 [ 2.981860] ehci-pci 0000:00:1d.0: debug port 2 [ 2.989247] NET: Registered PF_PACKET protocol family [ 2.997071] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7c2b000 [ 2.997676] 8021q: 802.1Q VLAN Support v1.8 [ 3.012599] NET: Registered PF_VSOCK protocol family [ 3.017965] microcode: Microcode Update Driver: v2.2. [ 3.017975] IPI shorthand broadcast: enabled [ 3.031720] sched_clock: Marking stable (2220003857, 809399411)->(3235570829, -206167561) [ 3.042979] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 [ 3.048971] clk: Disabling unused clocks [ 3.049078] hub 2-0:1.0: USB hub found [ 3.056680] hub 2-0:1.0: 2 ports detected [ 3.153837] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 3.160209] ata1.00: ATA-9: InnoDisk Corp. - mSATA 3ME, S140714, max UDMA/133 [ 3.167419] ata1.00: 62533296 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 3.174518] ata1.00: configured for UDMA/133 [ 3.179142] scsi 0:0:0:0: Direct-Access ATA InnoDisk Corp. - 714 PQ: 0 ANSI: 5 [ 3.188662] sd 0:0:0:0: [sda] 62533296 512-byte logical blocks: (32.0 GB/29.8 GiB) [ 3.196500] sd 0:0:0:0: [sda] Write Protect is off [ 3.201308] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 3.201446] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 3.210613] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes [ 3.218106] Alternate GPT is invalid, using primary GPT. [ 3.223468] sda: sda1 sda2 sda128 [ 3.227011] sd 0:0:0:0: [sda] Attached SCSI disk [ 3.235636] EXT4-fs (sda2): mounted filesystem ff313567-e9f1-5a5d-9895-3ba130b4a864 ro with ordered data mode. Quota mode: disabled. [ 3.247601] VFS: Mounted root (ext4 filesystem) readonly on device 8:2. [ 3.255144] Freeing unused kernel image (initmem) memory: 2520K [ 3.261158] Write protecting the kernel read-only data: 22528k [ 3.267324] Freeing unused kernel image (rodata/data gap) memory: 576K [ 3.273894] Run /sbin/init as init process [ 3.277995] with arguments: [ 3.277996] /sbin/init [ 3.277997] with environment: [ 3.277998] HOME=/ [ 3.277999] TERM=linux [ 3.278000] BOOT_IMAGE=/boot/vmlinuz [ 3.278039] usb 1-1: new high-speed USB device number 2 using ehci-pci [ 3.290082] init: Console is alive [ 3.322318] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 3.330645] button_hotplug: loading out-of-tree module taints kernel. [ 3.337307] Button Hotplug driver version 0.4.1 [ 3.346149] igb: Intel(R) Gigabit Ethernet Network Driver [ 3.349440] usb 2-1: new high-speed USB device number 2 using ehci-pci [ 3.351562] igb: Copyright (c) 2007-2014 Intel Corporation. [ 3.364387] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 3.378463] init: - preinit - [ 3.480274] hub 1-1:1.0: USB hub found [ 3.487953] hub 1-1:1.0: 6 ports detected [ 3.560294] hub 2-1:1.0: USB hub found [ 3.568027] hub 2-1:1.0: 8 ports detected [ 3.579499] tsc: Refined TSC clocksource calibration: 1398.189 MHz [ 3.585690] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1427717cace, max_idle_ns: 440795222949 ns [ 3.611931] clocksource: Switched to clocksource tsc [ 4.989409] random: crng init done [ 7.093632] mount_root: mounting /dev/root with options [ 7.111857] EXT4-fs (sda2): re-mounted ff313567-e9f1-5a5d-9895-3ba130b4a864 r/w. Quota mode: disabled. [ 7.246549] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 7.259180] urandom-seed: Seeding with /etc/urandom.seed [ 7.271771] procd: - early - [ 7.801848] procd: - ubus - [ 7.858097] procd: - init - [ 7.978395] kmodloader: loading kernel modules from /etc/modules.d/* [ 7.995346] i2c_dev: i2c /dev entries driver [ 8.006096] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt [ 8.012287] i2c i2c-0: 1/4 memory slots populated (from DMI) [ 8.020901] i2c i2c-0: Successfully instantiated SPD at 0x53 [ 8.040128] urngd: v1.0.2 started. [ 8.110171] GACT probability on [ 8.113713] Mirror/redirect action on [ 8.119451] u32 classifier [ 8.122165] input device check on [ 8.125830] Actions configured [ 8.137807] e1000e: Intel(R) PRO/1000 Network Driver [ 8.142789] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 8.148997] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to simplified (2000-8000 ints) mode [ 8.158920] e1000e 0000:00:19.0: Interrupt Mode set to 1 [ 8.256458] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock [ 8.360219] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) ec:0d:9a:93:d7:26 [ 8.368155] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection [ 8.375090] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF [ 8.382320] e1000e 0000:06:00.0: Interrupt Throttling Rate (ints/sec) set to simplified (2000-8000 ints) mode [ 8.455499] e1000e 0000:06:00.0 0000:06:00.0 (uninitialized): registered PHC clock [ 8.527559] e1000e 0000:06:00.0 eth1: (PCI Express:2.5GT/s:Width x1) ec:0d:9a:93:d7:27 [ 8.535520] e1000e 0000:06:00.0 eth1: Intel(R) PRO/1000 Network Connection [ 8.542490] e1000e 0000:06:00.0 eth1: MAC: 4, PHY: 8, PBA No: 000000-001 [ 12.808123] PPP generic driver version 2.4.2 [ 12.813304] NET: Registered PF_PPPOX protocol family [ 12.889752] kmodloader: 1 module could not be probed [ 12.894796] kmodloader: - mlx-platform - 0 [ 18.405506] e1000e 0000:00:19.0 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
Notes
Space for additional notes, links to forum threads or other resources.
- ...