Arch linux kernel 5.5 and zfs... ruining my nas plans?

it took the freenas discussion way to serious i should have totally ignored it there is no way freebsd or linux will take years to get basic driver to work for consumer grade mass produced hardware…

pretty much
I don’t know about FreeBSD (since it is more server focused then consumer-focused), but Linux has had driver support for that 1600x for a while.

Also, while it’s fine to be security minded, it’s also true that a lot of the Intel issues don’t really affect consumers that much. Those issues are mainly relevant in datacenters. That’s not to say they are totally irrelevant, but the impact is way less for consumers.

the reason i got an AMD CPU was price. i wanted ECC and that would be really really expensive with intel c232 chipset so server boards only…

Wow this escalated…

… anyway, back to original issue, I started wondering about grub yesterday as I’m thinking about switching to using lts kernel on my home server/nas now… after you mentioned it.

So I did some research, it seems that when installing/removing kernels, grub configs will get regenerated with whatever kernels are available. So, all you need in theory is to leave only the LTS kernel installed. (i.e. pacman -S linux-lts && -Rncs linux) and then grep -nir -C 5 vmlinuz /boot/grub to double-check and see what happened with grub before rebooting.

Oh, and debian testing is kind of like arch of you prefer Debian package management but want the rolling release (aka. I’ll update when I want not when you tell me to approach). I use it on some VMs I’m renting and on my other home server - it works.

is there something i should know about grub.
back when i at least used linux grub was the default thing but this is not the same grub is this some kind of grub 2 i saw a legacy grub.

grub mbr GPT where some of the major issues i had when i first tried it.
it has to to with how my mainboard reported it’s CSM mode and that it doesn’t like more then 6 drives…
i had 4 hhds and the sdd in the system using an sata add on card for the sdd and installed arch on EFI with efi partition because my efi folder had entries. arch didn’t boot i disbaled CSM mode and it booted so no problem. after that i left it as it is waited for the last 2 disk.
and with 6 HDDs the bios doesn’t see the sdd anymore but with CAM it’s there so i had to reinstall arch and i had to run a special command to even get an MBR disk. that was very important for grub.

@topic:


i did nothing today i guess installing the lts kernel and rerunning the grub install just did everything right for me i don’t have to kernel as an option in the grub and i clearly didn’t deinstalled the kernel but i take it.

now i have to figure out ho to use ZFS so this is done now. the uname -a command was very helpful.

solution TLDR:
kernel downgrading
installing linux-LTS
reconfigure the grub

pacman -S linux-lts
grub-mkconfig -o /boot/grub/grub.cfg

thanks to everyone pointing me to this solution.

i still have some basic question so i just do a triple post.

is there an easy way to test performance. like a tool i just point at the ZFS mount point?

Just use the thing and be happy. Or use a fio config from this thread: Derp Proof FIO

i currently run this dd if=/dev/zero of= /path/to/SSD/ tempfile bs=1G count=1024 conv=fdatasync,notrunc status=progress

i get ~470 mb write. the default test was to small to measure.
with smb i only get 80 mb/s which is fine but not understandable to me.

there are still other thing i don’t understand it started here:

i was expecting the byte size to be close to 60 billions not 55 and the TB space to be ~55 TB

so i run zfs list and zpool list
zpool list
NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT
gundam2 65.5T 9.28M 65.5T - - 0% 0% 1.00x ONLINE -
this result is as expected 65 TB from 72 is correct
zfs list
NAME USED AVAIL REFER MOUNTPOINT
gundam2 6.59M 50.7T 614K /mnt/raid

50.7 that should be higher at least 3 TB.

that pretty much the main reason i’m not done yet.

That is not an accurate way to measure performance.

ZFS will perfectly compress /dev/zero so it doesn’t actually write all that data to disk. SMB isn’t so clever so you see the dramatic difference.

Now you think “ok so I’ll just use /dev/urandom instead” but then you’re benchmarking a PRNG and the data is still not representative of real world data.

Measuring performance is a lot more involved than one would expect at first. That’s why I say just be happy and don’t worry about performance benchmarking, just use the thing normally. That’s the only benchmark that matters: your actual workload. If you really want to get benchmark numbers that mean anything at all it will not be a simple process. If you just want some numbers to make you feel good about yourself use a fio example like the one I linked and adjust it to your setup.

yes i was thinking about something like this too but the old nas is also much faster if smb isn’t used and it was a read “test” of real data.

i plan on disabling compression the data that will end up on this device is already compressed.
wouldn’t that still mean urandom isn’t accurate?

my real issue is the missing 5%+ of the storage that’s why i didn’t test the torrent transfer from the old nas.

i still have about a 100 GB of slc space available for an l2arc so i have to do some performance test to check if it is worse testing this.

just to get it out of the way the stuff i need to look at are still:
a way to see system utilisation (webui unimportant bonus)
temps of the drives and smart info.
a very basic firewall for wan only.
optimising zfs giving it more ram to use maybe l2arc the space thing and such so on.

edit: fio results for read and write looking way to good…

Run status group 0 (all jobs):
READ: bw=660MiB/s (692MB/s), 660MiB/s-660MiB/s (692MB/s-692MB/s), io=77.4GiB (83.1GB), run=120006-120006msec
Run status group 1 (all jobs):
WRITE: bw=452MiB/s (474MB/s), 452MiB/s-452MiB/s (474MB/s-474MB/s), io=52.0GiB (56.9GB), run=120004-120004msec

https://nicolargo.github.io/glances/ is probably what you’re after (pacman -S glances)

assuming you have the iptables command line utils installed installed, raw iptables is probably good enough for a nas, here’s a simple config I pulled from my machine:

basic firewall config
pacman -S iptables

# here's a config to start
# note: my home machine has a static ip, and it's configured to not trust local lan fully
cat >$HOME/new.fw.rules << EOF
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -i lo -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p tcp -m multiport --dports 80,443 -m comment --comment "http/https server" -j ACCEPT
-A INPUT -p tcp -m multiport --dports 32400,32469 -m comment --comment plex -j ACCEPT
-A INPUT -p tcp -m multiport --dports 8123 -m comment --comment "homeassistant" -j ACCEPT
-A INPUT -s 192.168.0.0/24 -p tcp -m multiport --dports 22 -m comment --comment "ssh" -j ACCEPT
-A INPUT -s 192.168.0.0/24 -p tcp -m multiport --dports 445 -m comment --comment "samba" -j ACCEPT
-A INPUT -s 192.168.0.0/24 -p tcp -m multiport --dports 8200 -m comment --comment "minidlna" -j ACCEPT
COMMIT
*nat
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
COMMIT
EOF

# now load the rules, same way systemd would on startup
sudo iptables-restore < $HOME/new.fw.rules

# I stole this from stack overflow:
read -p "are you happy with the rules, not locked out?" -n1 -r
if [[ $REPLY =~ ^[Yy]$ ]]
then
    cp $HOME/new.fw.rules /etc/iptables/iptables.rules
fi

You’ll probably want to setup nginx with lets encrypt or some such thing if you want to access web services from wan

thanks a lot for this.
i don’t plan to do everything with wan.

the more i use the system the more stuff comes up i don’t understand that mismatch with my math.

the command top showed that i only have about 8 GB ram is it possible that zfs is not shown there and the other 8 GB are used by it?

so i could give it much more i can still step up a ssd swap too.

and no idea why my raidz is only 50.1 TB not 54.6 TB but the zpool is correctly 65.5 TB

65.5 *0.833 = 54.6
if i would understand this would have started the migration.

nope, it should all be there. Likely you need to reslot the ram.

that’s bad will do that doesn’t change the bios and the OS see both sticks…

interesting, how much ram do you see here:

journalctl -b | sed -e "s/$HOSTNAME/host/"
Dec 28 11:30:36 host kernel: Linux version 5.4.6-arch3-1 (linux@archlinux) (gcc version 9.2.0 (GCC)) #1 SMP PREEMPT Tue, 24 Dec 2019 04:36:53 +0000
Dec 28 11:30:36 host kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=bca4d5fe-0080-4f16-b610-57354338320d rw quiet
Dec 28 11:30:36 host kernel: KERNEL supported cpus:
Dec 28 11:30:36 host kernel:   Intel GenuineIntel
Dec 28 11:30:36 host kernel:   AMD AuthenticAMD
Dec 28 11:30:36 host kernel:   Hygon HygonGenuine
Dec 28 11:30:36 host kernel:   Centaur CentaurHauls
Dec 28 11:30:36 host kernel:   zhaoxin   Shanghai
Dec 28 11:30:36 host kernel: x86/fpu: x87 FPU will use FXSAVE
Dec 28 11:30:36 host kernel: BIOS-provided physical RAM map:
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000000e2000-0x00000000000fffff] reserved
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000d7f8ffff] usable
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000d7f9e000-0x00000000d7f9ffff] type 9
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000d7fa0000-0x00000000d7fadfff] ACPI data
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000d7fae000-0x00000000d7fdffff] ACPI NVS
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000d7fe0000-0x00000000d7ffffff] reserved
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
Dec 28 11:30:36 host kernel: BIOS-e820: [mem 0x0000000100000000-0x000000019fffffff] usable
Dec 28 11:30:36 host kernel: NX (Execute Disable) protection: active
Dec 28 11:30:36 host kernel: SMBIOS 2.6 present.
Dec 28 11:30:36 host kernel: DMI: HP ProLiant MicroServer, BIOS O41     07/29/2011
Dec 28 11:30:36 host kernel: tsc: Fast TSC calibration using PIT
Dec 28 11:30:36 host kernel: tsc: Detected 1497.667 MHz processor
Dec 28 11:30:36 host kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dec 28 11:30:36 host kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dec 28 11:30:36 host kernel: AGP: No AGP bridge found
Dec 28 11:30:36 host kernel: last_pfn = 0x1a0000 max_arch_pfn = 0x400000000
Dec 28 11:30:36 host kernel: MTRR default type: uncachable
Dec 28 11:30:36 host kernel: MTRR fixed ranges enabled:
Dec 28 11:30:36 host kernel:   00000-9FFFF write-back
Dec 28 11:30:36 host kernel:   A0000-EFFFF uncachable
Dec 28 11:30:36 host kernel:   F0000-FFFFF write-protect
Dec 28 11:30:36 host kernel: MTRR variable ranges enabled:
Dec 28 11:30:36 host kernel:   0 base 000000000000 mask FFFF80000000 write-back
Dec 28 11:30:36 host kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Dec 28 11:30:36 host kernel:   2 base 0000C0000000 mask FFFFE0000000 write-back
Dec 28 11:30:36 host kernel:   3 disabled
Dec 28 11:30:36 host kernel:   4 disabled
Dec 28 11:30:36 host kernel:   5 disabled
Dec 28 11:30:36 host kernel:   6 disabled
Dec 28 11:30:36 host kernel:   7 disabled
Dec 28 11:30:36 host kernel: TOM2: 00000001a0000000 aka 6656M
Dec 28 11:30:36 host kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
Dec 28 11:30:36 host kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
Dec 28 11:30:36 host kernel: last_pfn = 0xd7f90 max_arch_pfn = 0x400000000
Dec 28 11:30:36 host kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f]
Dec 28 11:30:36 host kernel: check: Scanning 1 areas for low memory corruption
Dec 28 11:30:36 host kernel: Using GB pages for direct mapping
Dec 28 11:30:36 host kernel: BRK [0x17a601000, 0x17a601fff] PGTABLE
Dec 28 11:30:36 host kernel: BRK [0x17a602000, 0x17a602fff] PGTABLE
Dec 28 11:30:36 host kernel: BRK [0x17a603000, 0x17a603fff] PGTABLE
...
Dec 28 11:30:36 host kernel: Scanning NUMA topology in Northbridge 24
Dec 28 11:30:36 host kernel: No NUMA configuration found
Dec 28 11:30:36 host kernel: Faking a node at [mem 0x0000000000000000-0x000000019fffffff]
Dec 28 11:30:36 host kernel: NODE_DATA(0) allocated [mem 0x19fffc000-0x19fffffff]
Dec 28 11:30:36 host kernel: Zone ranges:
Dec 28 11:30:36 host kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Dec 28 11:30:36 host kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Dec 28 11:30:36 host kernel:   Normal   [mem 0x0000000100000000-0x000000019fffffff]
Dec 28 11:30:36 host kernel:   Device   empty
Dec 28 11:30:36 host kernel: Movable zone start for each node
Dec 28 11:30:36 host kernel: Early memory node ranges
Dec 28 11:30:36 host kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Dec 28 11:30:36 host kernel:   node   0: [mem 0x0000000000100000-0x00000000d7f8ffff]
Dec 28 11:30:36 host kernel:   node   0: [mem 0x0000000100000000-0x000000019fffffff]
Dec 28 11:30:36 host kernel: Zeroed struct page in unavailable ranges: 211 pages
Dec 28 11:30:36 host kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000019fffffff]
Dec 28 11:30:36 host kernel: On node 0 totalpages: 1539885
Dec 28 11:30:36 host kernel:   DMA zone: 64 pages used for memmap
Dec 28 11:30:36 host kernel:   DMA zone: 21 pages reserved
Dec 28 11:30:36 host kernel:   DMA zone: 3997 pages, LIFO batch:0
Dec 28 11:30:36 host kernel:   DMA32 zone: 13759 pages used for memmap
Dec 28 11:30:36 host kernel:   DMA32 zone: 880528 pages, LIFO batch:63
Dec 28 11:30:36 host kernel:   Normal zone: 10240 pages used for memmap
Dec 28 11:30:36 host kernel:   Normal zone: 655360 pages, LIFO batch:63

it’S flooding me with hdd things to:
i will edit the number in when i find it. had to make it smaller no clue where to start.
edit: a ramdisk?

# journalctl -b | sed -e "s/$HOSTNAME/host/"
-- Logs begin at Sat 2020-02-15 13:23:16 UTC, end at Mon 2020-02-17 15:16:47 UTC. --
Feb 17 15:01:05 host kernel: Linux version 5.4.19-1-lts (linux-lts@archlinux) (gcc version 9.2.1 20200130 (Arch Linux 9.2.1+20200130-2)) #1 SMP Tue, 11 Feb 2020 15:35:50 +0000
Feb 17 15:01:05 host kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=a199e072-411f-49e1-bbe7-a7d6dd947b2d rw loglevel=3 quiet
Feb 17 15:01:05 host kernel: KERNEL supported cpus:
Feb 17 15:01:05 host kernel:   Intel GenuineIntel
Feb 17 15:01:05 host kernel:   AMD AuthenticAMD
Feb 17 15:01:05 host kernel:   Hygon HygonGenuine
Feb 17 15:01:05 host kernel:   Centaur CentaurHauls
Feb 17 15:01:05 host kernel:   zhaoxin   Shanghai
Feb 17 15:01:05 host kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Feb 17 15:01:05 host kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Feb 17 15:01:05 host kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Feb 17 15:01:05 host kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Feb 17 15:01:05 host kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Feb 17 15:01:05 host kernel: BIOS-provided physical RAM map:
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009d01fff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x0000000009d02000-0x0000000009ffffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x000000000b020000-0x00000000db1e4fff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000db1e5000-0x00000000dc6d9fff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000dc6da000-0x00000000dc85bfff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000dc85c000-0x00000000dcc6ffff] ACPI NVS
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000dcc70000-0x00000000dd7aafff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000dd7ab000-0x00000000deffffff] usable
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
Feb 17 15:01:05 host kernel: BIOS-e820: [mem 0x0000000100000000-0x000000021f37ffff] usable
Feb 17 15:01:05 host kernel: NX (Execute Disable) protection: active
Feb 17 15:01:05 host kernel: SMBIOS 3.2.1 present.
Feb 17 15:01:05 host kernel: DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./B450 Pro4, BIOS P3.60 07/31/2019
Feb 17 15:01:05 host kernel: tsc: Fast TSC calibration failed
Feb 17 15:01:05 host kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Feb 17 15:01:05 host kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Feb 17 15:01:05 host kernel: last_pfn = 0x21f380 max_arch_pfn = 0x400000000
Feb 17 15:01:05 host kernel: MTRR default type: uncachable
Feb 17 15:01:05 host kernel: MTRR fixed ranges enabled:
Feb 17 15:01:05 host kernel:   00000-9FFFF write-back
Feb 17 15:01:05 host kernel:   A0000-BFFFF write-through
Feb 17 15:01:05 host kernel:   C0000-FFFFF write-protect
Feb 17 15:01:05 host kernel: MTRR variable ranges enabled:
Feb 17 15:01:05 host kernel:   0 base 000000000000 mask FFFF80000000 write-back
Feb 17 15:01:05 host kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Feb 17 15:01:05 host kernel:   2 base 0000C0000000 mask FFFFE0000000 write-back
Feb 17 15:01:05 host kernel:   3 disabled
Feb 17 15:01:05 host kernel:   4 disabled
Feb 17 15:01:05 host kernel:   5 disabled
Feb 17 15:01:05 host kernel:   6 disabled
Feb 17 15:01:05 host kernel:   7 disabled
Feb 17 15:01:05 host kernel: TOM2: 0000000220000000 aka 8704M
Feb 17 15:01:05 host kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
Feb 17 15:01:05 host kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
Feb 17 15:01:05 host kernel: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
Feb 17 15:01:05 host kernel: check: Scanning 1 areas for low memory corruption
Feb 17 15:01:05 host kernel: Using GB pages for direct mapping
Feb 17 15:01:05 host kernel: BRK [0x1ab001000, 0x1ab001fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab002000, 0x1ab002fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab003000, 0x1ab003fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab004000, 0x1ab004fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab005000, 0x1ab005fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab006000, 0x1ab006fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab007000, 0x1ab007fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab008000, 0x1ab008fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab009000, 0x1ab009fff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab00a000, 0x1ab00afff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab00b000, 0x1ab00bfff] PGTABLE
Feb 17 15:01:05 host kernel: BRK [0x1ab00c000, 0x1ab00cfff] PGTABLE
Feb 17 15:01:05 host kernel: RAMDISK: [mem 0x36e3b000-0x37714fff]
Feb 17 15:01:05 host kernel: ACPI: Early table checksum verification disabled
Feb 17 15:01:05 host kernel: ACPI: RSDP 0x00000000000F05A0 000024 (v02 ALASKA)
Feb 17 15:01:05 host kernel: ACPI: XSDT 0x00000000DCBEB0A0 0000BC (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: FACP 0x00000000DCBF1C20 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: DSDT 0x00000000DCBEB1F0 006A2C (v02 ALASKA A M I    01072009 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: FACS 0x00000000DCC57E00 000040
Feb 17 15:01:05 host kernel: ACPI: APIC 0x00000000DCBF1D38 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: FPDT 0x00000000DCBF1E98 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: FIDT 0x00000000DCBF1EE0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCBF1F80 0000C8 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCBF2048 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCBFACE0 00315B (v01 AMD    AMD AOD  00000001 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: MCFG 0x00000000DCBFDE40 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
Feb 17 15:01:05 host kernel: ACPI: AAFT 0x00000000DCBFDE80 00045C (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
Feb 17 15:01:05 host kernel: ACPI: HPET 0x00000000DCBFE2E0 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCBFE318 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: UEFI 0x00000000DCBFE340 000042 (v01 ALASKA A M I    00000002      01000013)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCBFE388 001A58 (v01 AMD    AMD CPU  00000001 AMD  00000001)
Feb 17 15:01:05 host kernel: ACPI: CRAT 0x00000000DCBFFDE0 000BD0 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
Feb 17 15:01:05 host kernel: ACPI: CDIT 0x00000000DCC009B0 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCC009E0 001D34 (v01 AMD    AmdTable 00000001 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCC02718 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: WSMT 0x00000000DCC027D8 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 17 15:01:05 host kernel: ACPI: SSDT 0x00000000DCC02800 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
Feb 17 15:01:05 host kernel: ACPI: Local APIC address 0xfee00000
Feb 17 15:01:05 host kernel: No NUMA configuration found
Feb 17 15:01:05 host kernel: Faking a node at [mem 0x0000000000000000-0x000000021f37ffff]
Feb 17 15:01:05 host kernel: NODE_DATA(0) allocated [mem 0x21f37c000-0x21f37ffff]
Feb 17 15:01:05 host kernel: Zone ranges:
Feb 17 15:01:05 host kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Feb 17 15:01:05 host kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Feb 17 15:01:05 host kernel:   Normal   [mem 0x0000000100000000-0x000000021f37ffff]
Feb 17 15:01:05 host kernel:   Device   empty
Feb 17 15:01:05 host kernel: Movable zone start for each node
Feb 17 15:01:05 host kernel: Early memory node ranges
Feb 17 15:01:05 host kernel:   node   0: [mem 0x0000000000001000-0x000000000009afff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x0000000000100000-0x0000000009d01fff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x000000000a20b000-0x000000000affffff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x000000000b020000-0x00000000db1e4fff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x00000000dc6da000-0x00000000dc85bfff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x00000000dd7ab000-0x00000000deffffff]
Feb 17 15:01:05 host kernel:   node   0: [mem 0x0000000100000000-0x000000021f37ffff]
Feb 17 15:01:05 host kernel: Zeroed struct page in unavailable ranges: 17491 pages
Feb 17 15:01:05 host kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000021f37ffff]
Feb 17 15:01:05 host kernel: On node 0 totalpages: 2079661
Feb 17 15:01:05 host kernel:   DMA zone: 64 pages used for memmap
Feb 17 15:01:05 host kernel:   DMA zone: 21 pages reserved
Feb 17 15:01:05 host kernel:   DMA zone: 3994 pages, LIFO batch:0
Feb 17 15:01:05 host kernel:   DMA32 zone: 14051 pages used for memmap
Feb 17 15:01:05 host kernel:   DMA32 zone: 899219 pages, LIFO batch:63
Feb 17 15:01:05 host kernel:   Normal zone: 18382 pages used for memmap
Feb 17 15:01:05 host kernel:   Normal zone: 1176448 pages, LIFO batch:63
Feb 17 15:01:05 host kernel: ACPI: PM-Timer IO Port: 0x808
Feb 17 15:01:05 host kernel: ACPI: Local APIC address 0xfee00000
Feb 17 15:01:05 host kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Feb 17 15:01:05 host kernel: IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
Feb 17 15:01:05 host kernel: IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
Feb 17 15:01:05 host kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Feb 17 15:01:05 host kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Feb 17 15:01:05 host kernel: ACPI: IRQ0 used by override.
Feb 17 15:01:05 host kernel: ACPI: IRQ9 used by override.
Feb 17 15:01:05 host kernel: Using ACPI (MADT) for SMP configuration information
Feb 17 15:01:05 host kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
Feb 17 15:01:05 host kernel: smpboot: Allowing 32 CPUs, 20 hotplug CPUs
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x09d02000-0x09ffffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xdb1e5000-0xdc6d9fff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xdc85c000-0xdcc6ffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xdcc70000-0xdd7aafff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
Feb 17 15:01:05 host kernel: PM: Registered nosave memory: [mem 0xfd000000-0xffffffff]
Feb 17 15:01:05 host kernel: [mem 0xe0000000-0xf7ffffff] available for PCI devices
Feb 17 15:01:05 host kernel: Booting paravirtualized kernel on bare hardware
Feb 17 15:01:05 host kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Feb 17 15:01:05 host kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:32 nr_node_ids:1
Feb 17 15:01:05 host kernel: percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u262144
Feb 17 15:01:05 host kernel: pcpu-alloc: s184320 r8192 d28672 u262144 alloc=1*2097152
Feb 17 15:01:05 host kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
Feb 17 15:01:05 host kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
Feb 17 15:01:05 host kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2047143
Feb 17 15:01:05 host kernel: Policy zone: Normal
Feb 17 15:01:05 host kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=a199e072-411f-49e1-bbe7-a7d6dd947b2d rw loglevel=3 quiet
Feb 17 15:01:05 host kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Feb 17 15:01:05 host kernel: printk: log_buf_len total cpu_extra contributions: 126976 bytes
Feb 17 15:01:05 host kernel: printk: log_buf_len min size: 131072 bytes
Feb 17 15:01:05 host kernel: printk: log_buf_len: 262144 bytes
Feb 17 15:01:05 host kernel: printk: early log buf free: 119232(90%)
Feb 17 15:01:05 host kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Feb 17 15:01:05 host kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Feb 17 15:01:05 host kernel: mem auto-init: stack:byref_all, heap alloc:on, heap free:off
Feb 17 15:01:05 host kernel: Calgary: detecting Calgary via BIOS EBDA area
Feb 17 15:01:05 host kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Feb 17 15:01:05 host kernel: Memory: 8064236K/8318644K available (12291K kernel code, 1325K rwdata, 4032K rodata, 1724K init, 3436K bss, 254408K reserved, 0K cma-reserved)
Feb 17 15:01:05 host kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
Feb 17 15:01:05 host kernel: ftrace: allocating 38383 entries in 150 pages
Feb 17 15:01:05 host kernel: rcu: Hierarchical RCU implementation.
Feb 17 15:01:05 host kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=32.
Feb 17 15:01:05 host kernel: rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
Feb 17 15:01:05 host kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
Feb 17 15:01:05 host kernel: NR_IRQS: 20736, nr_irqs: 1224, preallocated irqs: 16
Feb 17 15:01:05 host kernel: random: get_random_bytes called from start_kernel+0x386/0x561 with crng_init=0
Feb 17 15:01:05 host kernel: spurious 8259A interrupt: IRQ7.
Feb 17 15:01:05 host kernel: Console: colour dummy device 80x25
Feb 17 15:01:05 host kernel: printk: console [tty0] enabled
Feb 17 15:01:05 host kernel: ACPI: Core revision 20190816
Feb 17 15:01:05 host kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Feb 17 15:01:05 host kernel: APIC: Switch to symmetric I/O mode setup
Feb 17 15:01:05 host kernel: Switched APIC routing to physical flat.
Feb 17 15:01:05 host kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Feb 17 15:01:05 host kernel: tsc: PIT calibration matches HPET. 1 loops
Feb 17 15:01:05 host kernel: tsc: Detected 3193.626 MHz processor
Feb 17 15:01:05 host kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e08c4f4e80, max_idle_ns: 440795344817 ns
Feb 17 15:01:05 host kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6387.25 BogoMIPS (lpj=31936260)
Feb 17 15:01:05 host kernel: pid_max: default: 32768 minimum: 301
Feb 17 15:01:05 host kernel: LSM: Security Framework initializing
Feb 17 15:01:05 host kernel: Yama: becoming mindful.
Feb 17 15:01:05 host kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Feb 17 15:01:05 host kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Feb 17 15:01:05 host kernel: *** VALIDATE tmpfs ***
Feb 17 15:01:05 host kernel: *** VALIDATE proc ***
Feb 17 15:01:05 host kernel: *** VALIDATE cgroup1 ***
Feb 17 15:01:05 host kernel: *** VALIDATE cgroup2 ***
Feb 17 15:01:05 host kernel: LVT offset 1 assigned for vector 0xf9
Feb 17 15:01:05 host kernel: LVT offset 2 assigned for vector 0xf4
Feb 17 15:01:05 host kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Feb 17 15:01:05 host kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
Feb 17 15:01:05 host kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Feb 17 15:01:05 host kernel: Spectre V2 : Mitigation: Full AMD retpoline
Feb 17 15:01:05 host kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Feb 17 15:01:05 host kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Feb 17 15:01:05 host kernel: Spectre V2 : User space: Vulnerable
Feb 17 15:01:05 host kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Feb 17 15:01:05 host kernel: Freeing SMP alternatives memory: 32K
Feb 17 15:01:05 host kernel: smpboot: CPU0: AMD Ryzen 5 1600 Six-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
Feb 17 15:01:05 host kernel: Performance Events: Fam17h core perfctr, AMD PMU driver.
Feb 17 15:01:05 host kernel: ... version:                0
Feb 17 15:01:05 host kernel: ... bit width:              48
Feb 17 15:01:05 host kernel: ... generic registers:      6
Feb 17 15:01:05 host kernel: ... value mask:             0000ffffffffffff
Feb 17 15:01:05 host kernel: ... max period:             00007fffffffffff
Feb 17 15:01:05 host kernel: ... fixed-purpose events:   0
Feb 17 15:01:05 host kernel: ... event mask:             000000000000003f
Feb 17 15:01:05 host kernel: rcu: Hierarchical SRCU implementation.
Feb 17 15:01:05 host kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Feb 17 15:01:05 host kernel: smp: Bringing up secondary CPUs ...
Feb 17 15:01:05 host kernel: x86: Booting SMP configuration:
Feb 17 15:01:05 host kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
Feb 17 15:01:05 host kernel: smp: Brought up 1 node, 12 CPUs
Feb 17 15:01:05 host kernel: smpboot: Max logical packages: 3
Feb 17 15:01:05 host kernel: smpboot: Total of 12 processors activated (76647.02 BogoMIPS)
Feb 17 15:01:05 host kernel: devtmpfs: initialized
Feb 17 15:01:05 host kernel: x86/mm: Memory block size: 128MB
Feb 17 15:01:05 host kernel: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
Feb 17 15:01:05 host kernel: PM: Registering ACPI NVS region [mem 0xdc85c000-0xdcc6ffff] (4276224 bytes)
Feb 17 15:01:05 host kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
Feb 17 15:01:05 host kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
Feb 17 15:01:05 host kernel: pinctrl core: initialized pinctrl subsystem
Feb 17 15:01:05 host kernel: PM: RTC time: 15:01:01, date: 2020-02-17
Feb 17 15:01:05 host kernel: NET: Registered protocol family 16
Feb 17 15:01:05 host kernel: audit: initializing netlink subsys (disabled)
Feb 17 15:01:05 host kernel: audit: type=2000 audit(1581951661.200:1): state=initialized audit_enabled=0 res=1
Feb 17 15:01:05 host kernel: cpuidle: using governor ladder
Feb 17 15:01:05 host kernel: cpuidle: using governor menu
Feb 17 15:01:05 host kernel: ACPI: bus type PCI registered
Feb 17 15:01:05 host kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Feb 17 15:01:05 host kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Feb 17 15:01:05 host kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Feb 17 15:01:05 host kernel: PCI: Using configuration type 1 for base access
Feb 17 15:01:05 host kernel: mtrr: your CPUs had inconsistent variable MTRR settings
Feb 17 15:01:05 host kernel: mtrr: probably your BIOS does not setup all CPUs.
Feb 17 15:01:05 host kernel: mtrr: corrected configuration.
Feb 17 15:01:05 host kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Feb 17 15:01:05 host kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Module Device)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Processor Device)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Processor Aggregator Device)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Linux-Dell-Video)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Feb 17 15:01:05 host kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Feb 17 15:01:05 host kernel: ACPI: 9 ACPI AML tables successfully acquired and loaded
Feb 17 15:01:05 host kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Feb 17 15:01:05 host kernel: ACPI: Interpreter enabled
Feb 17 15:01:05 host kernel: ACPI: (supports S0 S3 S4 S5)
Feb 17 15:01:05 host kernel: ACPI: Using IOAPIC for interrupt routing
Feb 17 15:01:05 host kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Feb 17 15:01:05 host kernel: ACPI: Enabled 2 GPEs in block 00 to 1F
Feb 17 15:01:05 host kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Feb 17 15:01:05 host kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Feb 17 15:01:05 host kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
Feb 17 15:01:05 host kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Feb 17 15:01:05 host kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Feb 17 15:01:05 host kernel: PCI host bridge to bus 0000:00
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Feb 17 15:01:05 host kernel: pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:00:01.3: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:00:07.1: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:00:08.1: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Feb 17 15:01:05 host kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Feb 17 15:01:05 host kernel: pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
Feb 17 15:01:05 host kernel: pci 0000:01:00.0: [1022:43d5] type 00 class 0x0c0330
Feb 17 15:01:05 host kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf75a0000-0xf75a7fff 64bit]
Feb 17 15:01:05 host kernel: pci 0000:01:00.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:01:00.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:01:00.1: [1022:43c8] type 00 class 0x010601
Feb 17 15:01:05 host kernel: pci 0000:01:00.1: reg 0x24: [mem 0xf7580000-0xf759ffff]
Feb 17 15:01:05 host kernel: pci 0000:01:00.1: reg 0x30: [mem 0xf7500000-0xf757ffff pref]
Feb 17 15:01:05 host kernel: pci 0000:01:00.1: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:01:00.1: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:01:00.2: [1022:43c6] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:01:00.2: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:01:00.2: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:01.3: PCI bridge to [bus 01-08]
Feb 17 15:01:05 host kernel: pci 0000:00:01.3:   bridge window [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:00:01.3:   bridge window [mem 0xf7200000-0xf75fffff]
Feb 17 15:01:05 host kernel: pci 0000:02:00.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:00.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:00.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:01.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:01.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:01.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:04.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:04.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:04.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:05.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:05.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:05.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:06.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:06.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:06.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:07.0: [1022:43c7] type 01 class 0x060400
Feb 17 15:01:05 host kernel: pci 0000:02:07.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:02:07.0: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:01:00.2: PCI bridge to [bus 02-08]
Feb 17 15:01:05 host kernel: pci 0000:01:00.2:   bridge window [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:01:00.2:   bridge window [mem 0xf7200000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Feb 17 15:01:05 host kernel: pci 0000:02:01.0: PCI bridge to [bus 04]
Feb 17 15:01:05 host kernel: pci 0000:02:04.0: PCI bridge to [bus 05]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: [1b4b:9215] type 00 class 0x010601
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x10: [io  0xe050-0xe057]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x14: [io  0xe040-0xe043]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x18: [io  0xe030-0xe037]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x1c: [io  0xe020-0xe023]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x20: [io  0xe000-0xe01f]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x24: [mem 0xf7440000-0xf74407ff]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: reg 0x30: [mem 0xf7400000-0xf743ffff pref]
Feb 17 15:01:05 host kernel: pci 0000:06:00.0: PME# supported from D3hot
Feb 17 15:01:05 host kernel: pci 0000:02:05.0: PCI bridge to [bus 06]
Feb 17 15:01:05 host kernel: pci 0000:02:05.0:   bridge window [io  0xe000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:02:05.0:   bridge window [mem 0xf7400000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: [1b21:0612] type 00 class 0x010601
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x10: [io  0xd050-0xd057]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x14: [io  0xd040-0xd043]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x18: [io  0xd030-0xd037]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x1c: [io  0xd020-0xd023]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x20: [io  0xd000-0xd01f]
Feb 17 15:01:05 host kernel: pci 0000:07:00.0: reg 0x24: [mem 0xf7300000-0xf73001ff]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0: PCI bridge to [bus 07]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0:   bridge window [io  0xd000-0xdfff]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0:   bridge window [mem 0xf7300000-0xf73fffff]
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: [10ec:8168] type 00 class 0x020000
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: reg 0x10: [io  0xc000-0xc0ff]
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: reg 0x18: [mem 0xf7204000-0xf7204fff 64bit]
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: reg 0x20: [mem 0xf7200000-0xf7203fff 64bit]
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: supports D1 D2
Feb 17 15:01:05 host kernel: pci 0000:08:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:02:07.0: PCI bridge to [bus 08]
Feb 17 15:01:05 host kernel: pci 0000:02:07.0:   bridge window [io  0xc000-0xcfff]
Feb 17 15:01:05 host kernel: pci 0000:02:07.0:   bridge window [mem 0xf7200000-0xf72fffff]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: [10de:1401] type 00 class 0x030000
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: reg 0x24: [io  0xf000-0xf07f]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s x16 link at 0000:00:03.1 (capable of 126.016 Gb/s with 8 GT/s x16 link)
Feb 17 15:01:05 host kernel: pci 0000:09:00.1: [10de:0fba] type 00 class 0x040300
Feb 17 15:01:05 host kernel: pci 0000:09:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [io  0xf000-0xffff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
Feb 17 15:01:05 host kernel: pci 0000:0a:00.0: [1022:145a] type 00 class 0x130000
Feb 17 15:01:05 host kernel: pci 0000:0a:00.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0a:00.2: [1022:1456] type 00 class 0x108000
Feb 17 15:01:05 host kernel: pci 0000:0a:00.2: reg 0x18: [mem 0xf7700000-0xf77fffff]
Feb 17 15:01:05 host kernel: pci 0000:0a:00.2: reg 0x24: [mem 0xf7800000-0xf7801fff]
Feb 17 15:01:05 host kernel: pci 0000:0a:00.2: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0a:00.3: [1022:145f] type 00 class 0x0c0330
Feb 17 15:01:05 host kernel: pci 0000:0a:00.3: reg 0x10: [mem 0xf7600000-0xf76fffff 64bit]
Feb 17 15:01:05 host kernel: pci 0000:0a:00.3: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0a:00.3: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
Feb 17 15:01:05 host kernel: pci 0000:00:07.1:   bridge window [mem 0xf7600000-0xf78fffff]
Feb 17 15:01:05 host kernel: pci 0000:0b:00.0: [1022:1455] type 00 class 0x130000
Feb 17 15:01:05 host kernel: pci 0000:0b:00.0: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0b:00.2: [1022:7901] type 00 class 0x010601
Feb 17 15:01:05 host kernel: pci 0000:0b:00.2: reg 0x24: [mem 0xf7908000-0xf7908fff]
Feb 17 15:01:05 host kernel: pci 0000:0b:00.2: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0b:00.2: PME# supported from D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:0b:00.3: [1022:1457] type 00 class 0x040300
Feb 17 15:01:05 host kernel: pci 0000:0b:00.3: reg 0x10: [mem 0xf7900000-0xf7907fff]
Feb 17 15:01:05 host kernel: pci 0000:0b:00.3: enabling Extended Tags
Feb 17 15:01:05 host kernel: pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
Feb 17 15:01:05 host kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
Feb 17 15:01:05 host kernel: pci 0000:00:08.1:   bridge window [mem 0xf7900000-0xf79fffff]
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
Feb 17 15:01:05 host kernel: iommu: Default domain type: Translated
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: vgaarb: setting as boot VGA device
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: vgaarb: bridge control possible
Feb 17 15:01:05 host kernel: vgaarb: loaded
Feb 17 15:01:05 host kernel: ACPI: bus type USB registered
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver usbfs
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver hub
Feb 17 15:01:05 host kernel: usbcore: registered new device driver usb
Feb 17 15:01:05 host kernel: pps_core: LinuxPPS API ver. 1 registered
Feb 17 15:01:05 host kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Feb 17 15:01:05 host kernel: PTP clock support registered
Feb 17 15:01:05 host kernel: EDAC MC: Ver: 3.0.0
Feb 17 15:01:05 host kernel: PCI: Using ACPI for IRQ routing
Feb 17 15:01:05 host kernel: PCI: pci_cache_line_size set to 64 bytes
Feb 17 15:01:05 host kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0x09d02000-0x0bffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0xdb1e5000-0xdbffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0xdc85c000-0xdfffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
Feb 17 15:01:05 host kernel: e820: reserve RAM buffer [mem 0x21f380000-0x21fffffff]
Feb 17 15:01:05 host kernel: NetLabel: Initializing
Feb 17 15:01:05 host kernel: NetLabel:  domain hash size = 128
Feb 17 15:01:05 host kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Feb 17 15:01:05 host kernel: NetLabel:  unlabeled traffic allowed by default
Feb 17 15:01:05 host kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Feb 17 15:01:05 host kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Feb 17 15:01:05 host kernel: clocksource: Switched to clocksource tsc-early
Feb 17 15:01:05 host kernel: *** VALIDATE bpf ***
Feb 17 15:01:05 host kernel: VFS: Disk quotas dquot_6.6.0
Feb 17 15:01:05 host kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Feb 17 15:01:05 host kernel: *** VALIDATE ramfs ***
Feb 17 15:01:05 host kernel: *** VALIDATE hugetlbfs ***
Feb 17 15:01:05 host kernel: pnp: PnP ACPI init
Feb 17 15:01:05 host kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
Feb 17 15:01:05 host kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Feb 17 15:01:05 host kernel: system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved
Feb 17 15:01:05 host kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 17 15:01:05 host kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Feb 17 15:01:05 host kernel: system 00:03: [io  0x0280-0x028f] has been reserved
Feb 17 15:01:05 host kernel: system 00:03: [io  0x0290-0x029f] has been reserved
Feb 17 15:01:05 host kernel: system 00:03: [io  0x02a0-0x02af] has been reserved
Feb 17 15:01:05 host kernel: system 00:03: [io  0x02b0-0x02bf] has been reserved
Feb 17 15:01:05 host kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 17 15:01:05 host kernel: pnp 00:04: [dma 0 disabled]
Feb 17 15:01:05 host kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Feb 17 15:01:05 host kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x040b] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x04d6] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c00-0x0c01] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c14] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c50-0x0c51] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c52] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c6c] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0c6f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0cd0-0x0cd1] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0cd2-0x0cd3] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0cd4-0x0cd5] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0cd6-0x0cd7] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0cd8-0x0cdf] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0800-0x089f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0b00-0x0b0f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0b20-0x0b3f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0900-0x090f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [io  0x0910-0x091f] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
Feb 17 15:01:05 host kernel: system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 17 15:01:05 host kernel: pnp: PnP ACPI: found 6 devices
Feb 17 15:01:05 host kernel: thermal_sys: Registered thermal governor 'fair_share'
Feb 17 15:01:05 host kernel: thermal_sys: Registered thermal governor 'bang_bang'
Feb 17 15:01:05 host kernel: thermal_sys: Registered thermal governor 'step_wise'
Feb 17 15:01:05 host kernel: thermal_sys: Registered thermal governor 'user_space'
Feb 17 15:01:05 host kernel: thermal_sys: Registered thermal governor 'power_allocator'
Feb 17 15:01:05 host kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Feb 17 15:01:05 host kernel: pci 0000:02:00.0: PCI bridge to [bus 03]
Feb 17 15:01:05 host kernel: pci 0000:02:01.0: PCI bridge to [bus 04]
Feb 17 15:01:05 host kernel: pci 0000:02:04.0: PCI bridge to [bus 05]
Feb 17 15:01:05 host kernel: pci 0000:02:05.0: PCI bridge to [bus 06]
Feb 17 15:01:05 host kernel: pci 0000:02:05.0:   bridge window [io  0xe000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:02:05.0:   bridge window [mem 0xf7400000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0: PCI bridge to [bus 07]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0:   bridge window [io  0xd000-0xdfff]
Feb 17 15:01:05 host kernel: pci 0000:02:06.0:   bridge window [mem 0xf7300000-0xf73fffff]
Feb 17 15:01:05 host kernel: pci 0000:02:07.0: PCI bridge to [bus 08]
Feb 17 15:01:05 host kernel: pci 0000:02:07.0:   bridge window [io  0xc000-0xcfff]
Feb 17 15:01:05 host kernel: pci 0000:02:07.0:   bridge window [mem 0xf7200000-0xf72fffff]
Feb 17 15:01:05 host kernel: pci 0000:01:00.2: PCI bridge to [bus 02-08]
Feb 17 15:01:05 host kernel: pci 0000:01:00.2:   bridge window [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:01:00.2:   bridge window [mem 0xf7200000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci 0000:00:01.3: PCI bridge to [bus 01-08]
Feb 17 15:01:05 host kernel: pci 0000:00:01.3:   bridge window [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci 0000:00:01.3:   bridge window [mem 0xf7200000-0xf75fffff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [io  0xf000-0xffff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
Feb 17 15:01:05 host kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
Feb 17 15:01:05 host kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
Feb 17 15:01:05 host kernel: pci 0000:00:07.1:   bridge window [mem 0xf7600000-0xf78fffff]
Feb 17 15:01:05 host kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
Feb 17 15:01:05 host kernel: pci 0000:00:08.1:   bridge window [mem 0xf7900000-0xf79fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
Feb 17 15:01:05 host kernel: pci_bus 0000:01: resource 0 [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci_bus 0000:01: resource 1 [mem 0xf7200000-0xf75fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:02: resource 0 [io  0xc000-0xefff]
Feb 17 15:01:05 host kernel: pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
Feb 17 15:01:05 host kernel: pci_bus 0000:06: resource 1 [mem 0xf7400000-0xf74fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:07: resource 0 [io  0xd000-0xdfff]
Feb 17 15:01:05 host kernel: pci_bus 0000:07: resource 1 [mem 0xf7300000-0xf73fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:08: resource 0 [io  0xc000-0xcfff]
Feb 17 15:01:05 host kernel: pci_bus 0000:08: resource 1 [mem 0xf7200000-0xf72fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:09: resource 0 [io  0xf000-0xffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:09: resource 1 [mem 0xf6000000-0xf70fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
Feb 17 15:01:05 host kernel: pci_bus 0000:0a: resource 1 [mem 0xf7600000-0xf78fffff]
Feb 17 15:01:05 host kernel: pci_bus 0000:0b: resource 1 [mem 0xf7900000-0xf79fffff]
Feb 17 15:01:05 host kernel: NET: Registered protocol family 2
Feb 17 15:01:05 host kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Feb 17 15:01:05 host kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Feb 17 15:01:05 host kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Feb 17 15:01:05 host kernel: TCP: Hash tables configured (established 65536 bind 65536)
Feb 17 15:01:05 host kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Feb 17 15:01:05 host kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Feb 17 15:01:05 host kernel: NET: Registered protocol family 1
Feb 17 15:01:05 host kernel: NET: Registered protocol family 44
Feb 17 15:01:05 host kernel: pci 0000:09:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Feb 17 15:01:05 host kernel: pci 0000:09:00.1: D0 power state depends on 0000:09:00.0
Feb 17 15:01:05 host kernel: PCI: CLS 64 bytes, default 64
Feb 17 15:01:05 host kernel: Trying to unpack rootfs image as initramfs...
Feb 17 15:01:05 host kernel: Freeing initrd memory: 9064K
Feb 17 15:01:05 host kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Feb 17 15:01:05 host kernel: software IO TLB: mapped [mem 0xd71e5000-0xdb1e5000] (64MB)
Feb 17 15:01:05 host kernel: amd_uncore: AMD NB counters detected
Feb 17 15:01:05 host kernel: amd_uncore: AMD LLC counters detected
Feb 17 15:01:05 host kernel: check: Scanning for low memory corruption every 60 seconds
Feb 17 15:01:05 host kernel: Initialise system trusted keyrings
Feb 17 15:01:05 host kernel: Key type blacklist registered
Feb 17 15:01:05 host kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Feb 17 15:01:05 host kernel: zbud: loaded
Feb 17 15:01:05 host kernel: Key type asymmetric registered
Feb 17 15:01:05 host kernel: Asymmetric key parser 'x509' registered
Feb 17 15:01:05 host kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
Feb 17 15:01:05 host kernel: io scheduler mq-deadline registered
Feb 17 15:01:05 host kernel: io scheduler kyber registered
Feb 17 15:01:05 host kernel: io scheduler bfq registered
Feb 17 15:01:05 host kernel: pcieport 0000:00:01.3: PME: Signaling with IRQ 25
Feb 17 15:01:05 host kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 25
Feb 17 15:01:05 host kernel: pcieport 0000:00:03.1: PME: Signaling with IRQ 26
Feb 17 15:01:05 host kernel: pcieport 0000:00:03.1: AER: enabled with IRQ 26
Feb 17 15:01:05 host kernel: pcieport 0000:00:07.1: PME: Signaling with IRQ 27
Feb 17 15:01:05 host kernel: pcieport 0000:00:07.1: AER: enabled with IRQ 27
Feb 17 15:01:05 host kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 29
Feb 17 15:01:05 host kernel: pcieport 0000:00:08.1: AER: enabled with IRQ 29
Feb 17 15:01:05 host kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Feb 17 15:01:05 host kernel: vesafb: mode is 1920x1080x32, linelength=7680, pages=0
Feb 17 15:01:05 host kernel: vesafb: scrolling: redraw
Feb 17 15:01:05 host kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Feb 17 15:01:05 host kernel: vesafb: framebuffer at 0xf1000000, mapped to 0x00000000e167187e, using 8128k, total 8128k
Feb 17 15:01:05 host kernel: fbcon: Deferring console take-over
Feb 17 15:01:05 host kernel: fb0: VESA VGA frame buffer device
Feb 17 15:01:05 host kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Feb 17 15:01:05 host kernel: ACPI: Power Button [PWRB]
Feb 17 15:01:05 host kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Feb 17 15:01:05 host kernel: ACPI: Power Button [PWRF]
Feb 17 15:01:05 host kernel: Monitor-Mwait will be used to enter C-1 state
Feb 17 15:01:05 host kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Feb 17 15:01:05 host kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Feb 17 15:01:05 host kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <[email protected]>
Feb 17 15:01:05 host kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver usbserial_generic
Feb 17 15:01:05 host kernel: usbserial: USB Serial support registered for generic
Feb 17 15:01:05 host kernel: rtc_cmos 00:02: RTC can wake from S4
Feb 17 15:01:05 host kernel: rtc_cmos 00:02: registered as rtc0
Feb 17 15:01:05 host kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Feb 17 15:01:05 host kernel: ledtrig-cpu: registered to indicate activity on CPUs
Feb 17 15:01:05 host kernel: drop_monitor: Initializing network drop monitor service
Feb 17 15:01:05 host kernel: NET: Registered protocol family 10
Feb 17 15:01:05 host kernel: Segment Routing with IPv6
Feb 17 15:01:05 host kernel: NET: Registered protocol family 17
Feb 17 15:01:05 host kernel: RAS: Correctable Errors collector initialized.
Feb 17 15:01:05 host kernel: microcode: CPU0: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU1: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU2: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU3: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU4: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU5: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU6: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU7: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU8: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU9: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU10: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: CPU11: patch_level=0x0800820d
Feb 17 15:01:05 host kernel: microcode: Microcode Update Driver: v2.2.
Feb 17 15:01:05 host kernel: IPI shorthand broadcast: enabled
Feb 17 15:01:05 host kernel: sched_clock: Marking stable (396119692, -59995111)->(349397395, -13272814)
Feb 17 15:01:05 host kernel: registered taskstats version 1
Feb 17 15:01:05 host kernel: Loading compiled-in X.509 certificates
Feb 17 15:01:05 host kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 5c7da023fe9405dc5b5fd2240e9bec01a3e6676f'
Feb 17 15:01:05 host kernel: zswap: loaded using pool lzo/zbud
Feb 17 15:01:05 host kernel: Key type ._fscrypt registered
Feb 17 15:01:05 host kernel: Key type .fscrypt registered
Feb 17 15:01:05 host kernel: Key type big_key registered
Feb 17 15:01:05 host kernel: PM:   Magic number: 8:803:32
Feb 17 15:01:05 host kernel: rtc_cmos 00:02: setting system clock to 2020-02-17T15:01:01 UTC (1581951661)
Feb 17 15:01:05 host kernel: Freeing unused decrypted memory: 2040K
Feb 17 15:01:05 host kernel: Freeing unused kernel image memory: 1724K
Feb 17 15:01:05 host kernel: Write protecting the kernel read-only data: 18432k
Feb 17 15:01:05 host kernel: Freeing unused kernel image memory: 2012K
Feb 17 15:01:05 host kernel: Freeing unused kernel image memory: 64K
Feb 17 15:01:05 host kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Feb 17 15:01:05 host kernel: Run /init as init process
Feb 17 15:01:05 host kernel: fbcon: Taking over console
Feb 17 15:01:05 host kernel: Console: switching to colour frame buffer device 240x67
Feb 17 15:01:05 host kernel: SCSI subsystem initialized
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: xHCI Host Controller
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
Feb 17 15:01:05 host kernel: libata version 3.00 loaded.
Feb 17 15:01:05 host kernel: ahci 0000:01:00.1: version 3.0
Feb 17 15:01:05 host kernel: ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
Feb 17 15:01:05 host kernel: ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
Feb 17 15:01:05 host kernel: ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
Feb 17 15:01:05 host kernel: scsi host0: ahci
Feb 17 15:01:05 host kernel: scsi host1: ahci
Feb 17 15:01:05 host kernel: scsi host2: ahci
Feb 17 15:01:05 host kernel: scsi host3: ahci
Feb 17 15:01:05 host kernel: scsi host4: ahci
Feb 17 15:01:05 host kernel: scsi host5: ahci
Feb 17 15:01:05 host kernel: scsi host6: ahci
Feb 17 15:01:05 host kernel: scsi host7: ahci
Feb 17 15:01:05 host kernel: ata1: SATA max UDMA/133 abar m131072@0xf7580000 port 0xf7580100 irq 40
Feb 17 15:01:05 host kernel: ata2: SATA max UDMA/133 abar m131072@0xf7580000 port 0xf7580180 irq 40
Feb 17 15:01:05 host kernel: ata3: DUMMY
Feb 17 15:01:05 host kernel: ata4: DUMMY
Feb 17 15:01:05 host kernel: ata5: SATA max UDMA/133 abar m131072@0xf7580000 port 0xf7580300 irq 40
Feb 17 15:01:05 host kernel: ata6: SATA max UDMA/133 abar m131072@0xf7580000 port 0xf7580380 irq 40
Feb 17 15:01:05 host kernel: ata7: DUMMY
Feb 17 15:01:05 host kernel: ata8: DUMMY
Feb 17 15:01:05 host kernel: ahci 0000:06:00.0: AHCI 0001.0000 32 slots 4 ports 6 Gbps 0xf impl SATA mode
Feb 17 15:01:05 host kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs
Feb 17 15:01:05 host kernel: scsi host8: ahci
Feb 17 15:01:05 host kernel: scsi host9: ahci
Feb 17 15:01:05 host kernel: scsi host10: ahci
Feb 17 15:01:05 host kernel: scsi host11: ahci
Feb 17 15:01:05 host kernel: ata9: SATA max UDMA/133 abar m2048@0xf7440000 port 0xf7440100 irq 41
Feb 17 15:01:05 host kernel: ata10: SATA max UDMA/133 abar m2048@0xf7440000 port 0xf7440180 irq 41
Feb 17 15:01:05 host kernel: ata11: SATA max UDMA/133 abar m2048@0xf7440000 port 0xf7440200 irq 41
Feb 17 15:01:05 host kernel: ata12: SATA max UDMA/133 abar m2048@0xf7440000 port 0xf7440280 irq 41
Feb 17 15:01:05 host kernel: ahci 0000:07:00.0: SSS flag set, parallel bus scan disabled
Feb 17 15:01:05 host kernel: ahci 0000:07:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
Feb 17 15:01:05 host kernel: ahci 0000:07:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
Feb 17 15:01:05 host kernel: scsi host12: ahci
Feb 17 15:01:05 host kernel: scsi host13: ahci
Feb 17 15:01:05 host kernel: ata13: SATA max UDMA/133 abar m512@0xf7300000 port 0xf7300100 irq 42
Feb 17 15:01:05 host kernel: ata14: SATA max UDMA/133 abar m512@0xf7300000 port 0xf7300180 irq 42
Feb 17 15:01:05 host kernel: ahci 0000:0b:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
Feb 17 15:01:05 host kernel: ahci 0000:0b:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part
Feb 17 15:01:05 host kernel: scsi host14: ahci
Feb 17 15:01:05 host kernel: ata15: SATA max UDMA/133 abar m4096@0xf7908000 port 0xf7908100 irq 44
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
Feb 17 15:01:05 host kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Feb 17 15:01:05 host kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 17 15:01:05 host kernel: usb usb1: Product: xHCI Host Controller
Feb 17 15:01:05 host kernel: usb usb1: Manufacturer: Linux 5.4.19-1-lts xhci-hcd
Feb 17 15:01:05 host kernel: usb usb1: SerialNumber: 0000:01:00.0
Feb 17 15:01:05 host kernel: hub 1-0:1.0: USB hub found
Feb 17 15:01:05 host kernel: hub 1-0:1.0: 10 ports detected
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: xHCI Host Controller
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
Feb 17 15:01:05 host kernel: xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Feb 17 15:01:05 host kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 17 15:01:05 host kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Feb 17 15:01:05 host kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 17 15:01:05 host kernel: usb usb2: Product: xHCI Host Controller
Feb 17 15:01:05 host kernel: usb usb2: Manufacturer: Linux 5.4.19-1-lts xhci-hcd
Feb 17 15:01:05 host kernel: usb usb2: SerialNumber: 0000:01:00.0
Feb 17 15:01:05 host kernel: hub 2-0:1.0: USB hub found
Feb 17 15:01:05 host kernel: hub 2-0:1.0: 4 ports detected
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: xHCI Host Controller
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: new USB bus registered, assigned bus number 3
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
Feb 17 15:01:05 host kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Feb 17 15:01:05 host kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 17 15:01:05 host kernel: usb usb3: Product: xHCI Host Controller
Feb 17 15:01:05 host kernel: usb usb3: Manufacturer: Linux 5.4.19-1-lts xhci-hcd
Feb 17 15:01:05 host kernel: usb usb3: SerialNumber: 0000:0a:00.3
Feb 17 15:01:05 host kernel: hub 3-0:1.0: USB hub found
Feb 17 15:01:05 host kernel: hub 3-0:1.0: 4 ports detected
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: xHCI Host Controller
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: new USB bus registered, assigned bus number 4
Feb 17 15:01:05 host kernel: xhci_hcd 0000:0a:00.3: Host supports USB 3.0 SuperSpeed
Feb 17 15:01:05 host kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 17 15:01:05 host kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Feb 17 15:01:05 host kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 17 15:01:05 host kernel: usb usb4: Product: xHCI Host Controller
Feb 17 15:01:05 host kernel: usb usb4: Manufacturer: Linux 5.4.19-1-lts xhci-hcd
Feb 17 15:01:05 host kernel: usb usb4: SerialNumber: 0000:0a:00.3
Feb 17 15:01:05 host kernel: hub 4-0:1.0: USB hub found
Feb 17 15:01:05 host kernel: hub 4-0:1.0: 4 ports detected
Feb 17 15:01:05 host kernel: ata11: SATA link down (SStatus 0 SControl 300)
Feb 17 15:01:05 host kernel: ata15: SATA link down (SStatus 0 SControl 300)
Feb 17 15:01:05 host kernel: ata12: SATA link down (SStatus 0 SControl 300)
Feb 17 15:01:05 host kernel: ata10: SATA link down (SStatus 0 SControl 300)
Feb 17 15:01:05 host kernel: usb 1-10: new low-speed USB device number 2 using xhci_hcd
Feb 17 15:01:05 host kernel: usb 3-1: new high-speed USB device number 2 using xhci_hcd
Feb 17 15:01:05 host kernel: usb 3-1: New USB device found, idVendor=090c, idProduct=1000, bcdDevice=10.00
Feb 17 15:01:05 host kernel: usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Feb 17 15:01:05 host kernel: usb 3-1: SerialNumber: 13010412002121
Feb 17 15:01:05 host kernel: usb-storage 3-1:1.0: USB Mass Storage device detected
Feb 17 15:01:05 host kernel: scsi host15: usb-storage 3-1:1.0
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver usb-storage
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver uas
Feb 17 15:01:05 host kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata13: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata1.00: supports DRM functions and may not be fully accessible
Feb 17 15:01:05 host kernel: ata9: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata1.00: ATA-9: WDC WD120EDAZ-11F3RA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata1.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata13.00: ATA-9: WDC WD120EMAZ-11BLFA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata13.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata9.00: ATA-8: SanDisk SDSSDX120GG25, R201, max UDMA/133
Feb 17 15:01:05 host kernel: ata9.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata1.00: supports DRM functions and may not be fully accessible
Feb 17 15:01:05 host kernel: ata13.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: ata1.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: scsi 0:0:0:0: Direct-Access     ATA      WDC WD120EDAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: ata9.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: usb 3-2: new full-speed USB device number 3 using xhci_hcd
Feb 17 15:01:05 host kernel: usb 1-10: New USB device found, idVendor=04b4, idProduct=0101, bcdDevice= 0.01
Feb 17 15:01:05 host kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Feb 17 15:01:05 host kernel: usb 1-10: Product: SteelS쀁̄Љ̒DATA
Feb 17 15:01:05 host kernel: usb 1-10: Manufacturer: DATACOMP
Feb 17 15:01:05 host kernel: hidraw: raw HID events driver (C) Jiri Kosina
Feb 17 15:01:05 host kernel: usbcore: registered new interface driver usbhid
Feb 17 15:01:05 host kernel: usbhid: USB HID core driver
Feb 17 15:01:05 host kernel: input: DATACOMP SteelS쀁̄Љ̒DATA as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-10/1-10:1.0/0003:04B4:0101.0001/input/input2
Feb 17 15:01:05 host kernel: usb 3-2: New USB device found, idVendor=12cf, idProduct=0182, bcdDevice=15.02
Feb 17 15:01:05 host kernel: usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Feb 17 15:01:05 host kernel: usb 3-2: Product: Tt eSPORTS BLACK Element
Feb 17 15:01:05 host kernel: usb 3-2: Manufacturer: DEXIN Corp.
Feb 17 15:01:05 host kernel: input: DEXIN Corp. Tt eSPORTS BLACK Element as /devices/pci0000:00/0000:00:07.1/0000:0a:00.3/usb3/3-2/3-2:1.0/0003:12CF:0182.0003/input/input3
Feb 17 15:01:05 host kernel: tsc: Refined TSC clocksource calibration: 3193.998 MHz
Feb 17 15:01:05 host kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a244aeba, max_idle_ns: 440795290469 ns
Feb 17 15:01:05 host kernel: clocksource: Switched to clocksource tsc
Feb 17 15:01:05 host kernel: hid-generic 0003:04B4:0101.0001: input,hidraw0: USB HID v1.00 Keyboard [DATACOMP SteelS쀁̄Љ̒DATA] on usb-0000:01:00.0-10/input0
Feb 17 15:01:05 host kernel: hid-generic 0003:12CF:0182.0003: input,hidraw1: USB HID v1.11 Mouse [DEXIN Corp. Tt eSPORTS BLACK Element] on usb-0000:0a:00.3-2/input0
Feb 17 15:01:05 host kernel: input: DATACOMP SteelS쀁̄Љ̒DATA System Control as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-10/1-10:1.1/0003:04B4:0101.0002/input/input4
Feb 17 15:01:05 host kernel: input: DEXIN Corp. Tt eSPORTS BLACK Element Keyboard as /devices/pci0000:00/0000:00:07.1/0000:0a:00.3/usb3/3-2/3-2:1.1/0003:12CF:0182.0004/input/input6
Feb 17 15:01:05 host kernel: input: DATACOMP SteelS쀁̄Љ̒DATA Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-10/1-10:1.1/0003:04B4:0101.0002/input/input5
Feb 17 15:01:05 host kernel: input: DEXIN Corp. Tt eSPORTS BLACK Element Consumer Control as /devices/pci0000:00/0000:00:07.1/0000:0a:00.3/usb3/3-2/3-2:1.1/0003:12CF:0182.0004/input/input7
Feb 17 15:01:05 host kernel: hid-generic 0003:04B4:0101.0002: input,hidraw2: USB HID v1.00 Device [DATACOMP SteelS쀁̄Љ̒DATA] on usb-0000:01:00.0-10/input1
Feb 17 15:01:05 host kernel: hid-generic 0003:12CF:0182.0004: input,hidraw3: USB HID v1.11 Keyboard [DEXIN Corp. Tt eSPORTS BLACK Element] on usb-0000:0a:00.3-2/input1
Feb 17 15:01:05 host kernel: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata2.00: supports DRM functions and may not be fully accessible
Feb 17 15:01:05 host kernel: ata2.00: ATA-9: WDC WD120EDAZ-11F3RA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata2.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata2.00: supports DRM functions and may not be fully accessible
Feb 17 15:01:05 host kernel: ata2.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: scsi 1:0:0:0: Direct-Access     ATA      WDC WD120EDAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata5.00: ATA-9: WDC WD120EMAZ-11BLFA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata5.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata5.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: scsi: waiting for bus probes to complete ...
Feb 17 15:01:05 host kernel: scsi 15:0:0:0: Direct-Access                                    PQ: 0 ANSI: 4
Feb 17 15:01:05 host kernel: scsi 4:0:0:0: Direct-Access     ATA      WDC WD120EMAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] Write Protect is off
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] Write Protect is off
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] Write Protect is off
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] 15482880 512-byte logical blocks: (7.93 GB/7.38 GiB)
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] Write Protect is off
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] Mode Sense: 43 00 00 00
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] No Caching mode page found
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] Assuming drive cache: write through
Feb 17 15:01:05 host kernel:  sdc: sdc1
Feb 17 15:01:05 host kernel: sd 15:0:0:0: [sdc] Attached SCSI removable disk
Feb 17 15:01:05 host kernel:  sdb: sdb1 sdb9
Feb 17 15:01:05 host kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
Feb 17 15:01:05 host kernel:  sdd: sdd1 sdd9
Feb 17 15:01:05 host kernel: sd 4:0:0:0: [sdd] Attached SCSI disk
Feb 17 15:01:05 host kernel:  sda: sda1 sda9
Feb 17 15:01:05 host kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Feb 17 15:01:05 host kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata6.00: ATA-9: WDC WD120EMAZ-11BLFA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata6.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: scsi 5:0:0:0: Direct-Access     ATA      WDC WD120EMAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] Write Protect is off
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel: scsi 8:0:0:0: Direct-Access     ATA      SanDisk SDSSDX12 R201 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: sd 8:0:0:0: [sdf] 234441648 512-byte logical blocks: (120 GB/112 GiB)
Feb 17 15:01:05 host kernel: sd 8:0:0:0: [sdf] Write Protect is off
Feb 17 15:01:05 host kernel: sd 8:0:0:0: [sdf] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 8:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel: scsi 12:0:0:0: Direct-Access     ATA      WDC WD120EMAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] Write Protect is off
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel:  sdf: sdf1
Feb 17 15:01:05 host kernel: sd 8:0:0:0: [sdf] Attached SCSI removable disk
Feb 17 15:01:05 host kernel: random: fast init done
Feb 17 15:01:05 host kernel:  sde: sde1 sde9
Feb 17 15:01:05 host kernel: sd 5:0:0:0: [sde] Attached SCSI disk
Feb 17 15:01:05 host kernel:  sdg: sdg1 sdg9
Feb 17 15:01:05 host kernel: sd 12:0:0:0: [sdg] Attached SCSI disk
Feb 17 15:01:05 host kernel: ata14: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 17 15:01:05 host kernel: ata14.00: ATA-9: WDC WD120EMAZ-11BLFA0, 81.00A81, max UDMA/133
Feb 17 15:01:05 host kernel: ata14.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 17 15:01:05 host kernel: ata14.00: configured for UDMA/133
Feb 17 15:01:05 host kernel: scsi 13:0:0:0: Direct-Access     ATA      WDC WD120EMAZ-11 0A81 PQ: 0 ANSI: 5
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] 4096-byte physical blocks
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] Write Protect is off
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] Mode Sense: 00 3a 00 00
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 17 15:01:05 host kernel:  sdh: sdh1 sdh9
Feb 17 15:01:05 host kernel: sd 13:0:0:0: [sdh] Attached SCSI disk
Feb 17 15:01:05 host kernel: EXT4-fs (sdf1): mounted filesystem with ordered data mode. Opts: (null)
Feb 17 15:01:05 host systemd[1]: systemd 244.3-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Feb 17 15:01:05 host systemd[1]: Detected architecture x86-64.
Feb 17 15:01:05 host systemd[1]: Set hostname to <gundam2>.
Feb 17 15:01:05 host systemd[1]: Created slice system-getty.slice.
Feb 17 15:01:05 host systemd[1]: Created slice system-modprobe.slice.
Feb 17 15:01:05 host systemd[1]: Created slice system-netctl.slice.
Feb 17 15:01:05 host systemd[1]: Created slice User and Session Slice.
Feb 17 15:01:05 host systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Feb 17 15:01:05 host systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Feb 17 15:01:05 host systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Feb 17 15:01:05 host systemd[1]: Reached target Local Encrypted Volumes.
Feb 17 15:01:05 host systemd[1]: Reached target Paths.
Feb 17 15:01:05 host systemd[1]: Reached target Remote File Systems.
Feb 17 15:01:05 host systemd[1]: Reached target Slices.
Feb 17 15:01:05 host systemd[1]: Reached target Swap.
Feb 17 15:01:05 host systemd[1]: Listening on Device-mapper event daemon FIFOs.
Feb 17 15:01:05 host systemd[1]: Listening on Process Core Dump Socket.
Feb 17 15:01:05 host systemd[1]: Listening on initctl Compatibility Named Pipe.
Feb 17 15:01:05 host systemd[1]: Listening on Journal Audit Socket.
Feb 17 15:01:05 host systemd[1]: Listening on Journal Socket (/dev/log).
Feb 17 15:01:05 host systemd[1]: Listening on Journal Socket.
Feb 17 15:01:05 host systemd[1]: Listening on udev Control Socket.
Feb 17 15:01:05 host systemd[1]: Listening on udev Kernel Socket.
Feb 17 15:01:05 host systemd[1]: Mounting Huge Pages File System...
Feb 17 15:01:05 host systemd[1]: Mounting POSIX Message Queue File System...
Feb 17 15:01:05 host systemd[1]: Mounting Kernel Debug File System...
Feb 17 15:01:05 host systemd[1]: Mounting Temporary Directory (/tmp)...
Feb 17 15:01:05 host systemd[1]: Starting Create list of static device nodes for the current kernel...
Feb 17 15:01:05 host systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 17 15:01:05 host systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 17 15:01:05 host systemd[1]: Starting Journal Service...
Feb 17 15:01:05 host systemd[1]: Starting Load Kernel Modules...
Feb 17 15:01:05 host systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 17 15:01:05 host systemd[1]: Starting udev Coldplug all Devices...
Feb 17 15:01:05 host systemd[1]: Mounted Huge Pages File System.
Feb 17 15:01:05 host systemd[1]: Mounted POSIX Message Queue File System.
Feb 17 15:01:05 host systemd[1]: Mounted Kernel Debug File System.
Feb 17 15:01:05 host systemd[1]: Mounted Temporary Directory (/tmp).
Feb 17 15:01:05 host systemd[1]: Started Create list of static device nodes for the current kernel.
Feb 17 15:01:05 host kernel: EXT4-fs (sdf1): re-mounted. Opts: (null)
Feb 17 15:01:05 host systemd[1]: Started Remount Root and Kernel File Systems.
Feb 17 15:01:05 host systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Feb 17 15:01:05 host systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Feb 17 15:01:05 host systemd[1]: Starting Create System Users...
Feb 17 15:01:05 host kernel: zlua: loading out-of-tree module taints kernel.
Feb 17 15:01:05 host kernel: zlua: module license 'MIT' taints kernel.
Feb 17 15:01:05 host kernel: Disabling lock debugging due to kernel taint
Feb 17 15:01:05 host kernel: zlua: module verification failed: signature and/or required key missing - tainting kernel
Feb 17 15:01:05 host systemd[1]: Started Create System Users.
Feb 17 15:01:05 host systemd[1]: Starting Create Static Device Nodes in /dev...
Feb 17 15:01:05 host systemd[1]: Started Create Static Device Nodes in /dev.
Feb 17 15:01:05 host systemd[1]: Reached target Local File Systems (Pre).
Feb 17 15:01:05 host systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Feb 17 15:01:05 host systemd[1]: Starting udev Kernel Device Manager...
Feb 17 15:01:05 host systemd[1]: Started udev Coldplug all Devices.
Feb 17 15:01:05 host systemd[1]: Starting udev Wait for Complete Device Initialization...
Feb 17 15:01:05 host systemd-journald[394]: Journal started
Feb 17 15:01:05 host systemd-journald[394]: Runtime Journal (/run/log/journal/4117777c9dd6427a8c46a14d62b5c310) is 8.0M, max 394.4M, 386.4M free.
Feb 17 15:01:05 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host systemd[1]: Starting Flush Journal to Persistent Storage...
Feb 17 15:01:05 host systemd[1]: Started Journal Service.
Feb 17 15:01:05 host kernel: audit: type=1130 audit(1581951665.298:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host systemd-journald[394]: Time spent on flushing to /var is 141.149ms for 940 entries.
Feb 17 15:01:05 host systemd-journald[394]: System Journal (/var/log/journal/4117777c9dd6427a8c46a14d62b5c310) is 32.0M, max 932.3M, 900.3M free.
Feb 17 15:01:05 host kernel: audit: type=1130 audit(1581951665.328:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host kernel: random: crng init done
Feb 17 15:01:05 host kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Feb 17 15:01:05 host kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Feb 17 15:01:05 host kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Feb 17 15:01:05 host kernel: sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
Feb 17 15:01:05 host kernel: sp5100-tco sp5100-tco: Watchdog hardware is disabled
Feb 17 15:01:05 host kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Feb 17 15:01:05 host kernel: Linux agpgart interface v0.103
Feb 17 15:01:05 host kernel: ccp 0000:0a:00.2: ccp enabled
Feb 17 15:01:05 host kernel: cryptd: max_cpu_qlen set to 1000
Feb 17 15:01:05 host kernel: libphy: r8169: probed
Feb 17 15:01:05 host kernel: r8169 0000:08:00.0 eth0: RTL8168h/8111h, a8:a1:59:07:dd:d1, XID 541, IRQ 65
Feb 17 15:01:05 host kernel: r8169 0000:08:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 17 15:01:05 host kernel: AVX2 version of gcm_enc/dec engaged.
Feb 17 15:01:05 host kernel: AES CTR mode by8 optimization enabled
Feb 17 15:01:05 host kernel: snd_hda_intel 0000:09:00.1: Disabling MSI
Feb 17 15:01:05 host kernel: snd_hda_intel 0000:09:00.1: Handle vga_switcheroo audio client
Feb 17 15:01:05 host kernel: mousedev: PS/2 mouse device common for all mice
Feb 17 15:01:05 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host systemd[1]: Started udev Kernel Device Manager.
Feb 17 15:01:05 host systemd[1]: Started Flush Journal to Persistent Storage.
Feb 17 15:01:05 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host kernel: audit: type=1130 audit(1581951665.468:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
Feb 17 15:01:05 host kernel: snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
Feb 17 15:01:05 host kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/sound/card1/input9
Feb 17 15:01:05 host kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/sound/card1/input10
Feb 17 15:01:05 host kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/sound/card1/input11
Feb 17 15:01:05 host kernel: input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/sound/card1/input12
Feb 17 15:01:05 host kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0b:00.3/sound/card1/input13
Feb 17 15:01:05 host kernel: checking generic (f1000000 7f0000) vs hw (e0000000 10000000)
Feb 17 15:01:05 host kernel: checking generic (f1000000 7f0000) vs hw (f0000000 2000000)
Feb 17 15:01:05 host kernel: fb0: switching to nouveaufb from VESA VGA
Feb 17 15:01:05 host kernel: Console: switching to colour dummy device 80x25
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: NVIDIA GM206 (126010a1)
Feb 17 15:01:05 host systemd-udevd[441]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Feb 17 15:01:05 host systemd-vconsole-setup[524]: KD_FONT_OP_GET failed while trying to get the font metadata: Function not implemented
Feb 17 15:01:05 host systemd-vconsole-setup[524]: Fonts will not be copied to remaining consoles
Feb 17 15:01:05 host systemd-vconsole-setup[523]: KD_FONT_OP_GET failed while trying to get the font metadata: Function not implemented
Feb 17 15:01:05 host systemd-vconsole-setup[523]: Fonts will not be copied to remaining consoles
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: bios: version 84.06.14.00.03
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: fb: 2048 MiB GDDR5
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: bus: MMIO write of 800000c8 FAULT at 10eb14 [ IBUS ]
Feb 17 15:01:05 host udevadm[407]: systemd-udev-settle.service is deprecated.
Feb 17 15:01:05 host kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Feb 17 15:01:05 host kernel: [TTM] Zone  kernel: Available graphics memory: 4039586 KiB
Feb 17 15:01:05 host kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
Feb 17 15:01:05 host kernel: [TTM] Initializing pool allocator
Feb 17 15:01:05 host kernel: [TTM] Initializing DMA pool allocator
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: VRAM: 2048 MiB
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: GART: 1048576 MiB
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: TMDS table version 2.0
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB version 4.1
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 00: 01000f02 00020030
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 01: 02000f00 00000000
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 02: 02811f76 04400020
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 03: 02011f72 00020020
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 04: 04022f82 00020030
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 05: 02033f62 00020010
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB outp 15: 01df5ff8 00000000
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB conn 00: 00001030
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB conn 01: 00020146
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB conn 02: 01000231
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB conn 03: 00010361
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: DCB conn 05: 00000570
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: MM: using COPY for buffer copies
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: failed to create encoder 1/8/0: -19
Feb 17 15:01:05 host kernel: nouveau 0000:09:00.0: DRM: Virtual-1 has no encoders, removing
Feb 17 15:01:05 host kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Feb 17 15:01:05 host kernel: [drm] Driver supports precise vblank timestamp query.
Feb 17 15:01:06 host kernel: nouveau 0000:09:00.0: DRM: allocated 1920x1080 fb: 0xa0000, bo 000000004338afb5
Feb 17 15:01:06 host kernel: fbcon: nouveaudrmfb (fb0) is primary device
Feb 17 15:01:06 host kernel: Console: switching to colour frame buffer device 240x67
Feb 17 15:01:06 host kernel: nouveau 0000:09:00.0: fb0: nouveaudrmfb frame buffer device
Feb 17 15:01:07 host kernel: kvm: Nested Virtualization enabled
Feb 17 15:01:07 host kernel: kvm: Nested Paging enabled
Feb 17 15:01:07 host kernel: SVM: Virtual VMLOAD VMSAVE supported
Feb 17 15:01:07 host kernel: SVM: Virtual GIF supported
Feb 17 15:01:07 host kernel: ZFS: Loaded module v0.8.3-1, ZFS pool version 5000, ZFS filesystem version 5
Feb 17 15:01:07 host kernel: [drm] Initialized nouveau 1.3.1 20120801 for 0000:09:00.0 on minor 0
Feb 17 15:01:07 host systemd-modules-load[395]: Inserted module 'zfs'
Feb 17 15:01:07 host systemd[1]: Started Load Kernel Modules.
Feb 17 15:01:07 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:07 host systemd[1]: Condition check resulted in FUSE Control File System being skipped.
Feb 17 15:01:07 host systemd[1]: Mounting Kernel Configuration File System...
Feb 17 15:01:07 host systemd[1]: Starting Apply Kernel Variables...
Feb 17 15:01:07 host systemd[1]: Mounted Kernel Configuration File System.
Feb 17 15:01:07 host kernel: audit: type=1130 audit(1581951667.288:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:07 host systemd[1]: Started Apply Kernel Variables.
Feb 17 15:01:07 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:07 host kernel: audit: type=1130 audit(1581951667.298:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:07 host kernel: MCE: In-kernel MCE decoding enabled.
Feb 17 15:01:07 host kernel: EDAC amd64: Node 0: DRAM ECC enabled.
Feb 17 15:01:07 host kernel: EDAC amd64: F17h detected (node 0).
Feb 17 15:01:07 host kernel: EDAC MC: UMC0 chip selects:
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB
Feb 17 15:01:07 host kernel: EDAC MC: UMC1 chip selects:
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: using x8 syndromes.
Feb 17 15:01:07 host kernel: EDAC amd64: MCT channel count: 1
Feb 17 15:01:07 host kernel: EDAC MC0: Giving out device to module amd64_edac controller F17h: DEV 0000:00:18.3 (INTERRUPT)
Feb 17 15:01:07 host kernel: EDAC PCI0: Giving out device to module amd64_edac controller EDAC PCI controller: DEV 0000:00:18.0 (POLLED)
Feb 17 15:01:07 host kernel: AMD64 EDAC driver v3.5.0
Feb 17 15:01:07 host systemd-udevd[435]: Using default interface naming scheme 'v243'.
Feb 17 15:01:07 host systemd-udevd[435]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Feb 17 15:01:07 host kernel: r8169 0000:08:00.0 enp8s0: renamed from eth0
Feb 17 15:01:07 host systemd[1]: Reached target Sound Card.
Feb 17 15:01:07 host systemd-udevd[449]: Using default interface naming scheme 'v243'.
Feb 17 15:01:07 host systemd[1]: Found device RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (Motherboard (one of many)).
Feb 17 15:01:08 host kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input14
Feb 17 15:01:08 host kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input15
Feb 17 15:01:08 host kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input16
Feb 17 15:01:08 host kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input17
Feb 17 15:01:10 host systemd[1]: Started udev Wait for Complete Device Initialization.
Feb 17 15:01:10 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:10 host systemd[1]: Starting Import ZFS pools by cache file...
Feb 17 15:01:10 host kernel: audit: type=1130 audit(1581951670.218:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-settle comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Started Import ZFS pools by cache file.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=zfs-import-cache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Reached target ZFS pool import target.
Feb 17 15:01:14 host systemd[1]: Reached target ZFS startup target.
Feb 17 15:01:14 host systemd[1]: Starting Mount ZFS filesystems...
Feb 17 15:01:14 host kernel: audit: type=1130 audit(1581951674.088:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=zfs-import-cache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Started Mount ZFS filesystems.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=zfs-mount comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Reached target Local File Systems.
Feb 17 15:01:14 host kernel: audit: type=1130 audit(1581951674.168:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=zfs-mount comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Starting Rebuild Dynamic Linker Cache...
Feb 17 15:01:14 host systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Feb 17 15:01:14 host systemd[1]: Starting Load/Save Random Seed...
Feb 17 15:01:14 host systemd[1]: Starting Create Volatile Files and Directories...
Feb 17 15:01:14 host systemd[1]: Started Load/Save Random Seed.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Feb 17 15:01:14 host systemd[1]: Started Create Volatile Files and Directories.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Starting Rebuild Journal Catalog...
Feb 17 15:01:14 host systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Feb 17 15:01:14 host kernel: audit: type=1130 audit(1581951674.188:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host kernel: audit: type=1130 audit(1581951674.188:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host audit[14330]: SYSTEM_BOOT pid=14330 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Started Rebuild Dynamic Linker Cache.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host kernel: audit: type=1127 audit(1581951674.198:12): pid=14330 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host kernel: audit: type=1130 audit(1581951674.198:13): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Started Rebuild Journal Catalog.
Feb 17 15:01:14 host audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Feb 17 15:01:14 host systemd[1]: Started Update UTMP about System Boot/Shutdown.

from:

The end of the range there is about 9.1G, that adds up as 8G of actually usable system ram, and various “virtual” memory reserved address space for all kinds of devices (and so on).

try rebooting / reseating the ram, or check the bios again


then again:

Feb 17 15:01:07 host kernel: MCE: In-kernel MCE decoding enabled.
Feb 17 15:01:07 host kernel: EDAC amd64: Node 0: DRAM ECC enabled.
Feb 17 15:01:07 host kernel: EDAC amd64: F17h detected (node 0).
Feb 17 15:01:07 host kernel: EDAC MC: UMC0 chip selects:
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB
Feb 17 15:01:07 host kernel: EDAC MC: UMC1 chip selects:
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB
Feb 17 15:01:07 host kernel: EDAC amd64: using x8 syndromes.
Feb 17 15:01:07 host kernel: EDAC amd64: MCT channel count: 1

I haven’t worked with 3000 series APUs , did you dedicate 8G of ram to graphics somehow? journalctl has 1600x listed, my bad … and I have no idea how to read the things up there, … is that “slot #2 has 8G module?”

it zen+ with 2 numa nodes. if in understand this correctly.

it’s very new released x1600 that is actually a x2600 with just 100 mhz less speed. it has zen+ cores and 12nm.

i’m using slot 2 and 4 not sure if they are counted from 0 or 1. this is the recommended setup by the board the ram is SR so i can put where ever if i wanted to.

yes both are 8 GB kingston unbuffered ECC ram.
edit: reseating fix it i needed to do it a couple of times because it sometime didn’t even show in the bios.

still the same:

Feb 18 08:12:22 host kernel: EDAC amd64: Node 0: DRAM ECC enabled.
Feb 18 08:12:22 host kernel: EDAC amd64: F17h detected (node 0).
Feb 18 08:12:22 host kernel: EDAC MC: UMC0 chip selects:
Feb 18 08:12:22 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 18 08:12:22 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB
Feb 18 08:12:22 host kernel: EDAC MC: UMC1 chip selects:
Feb 18 08:12:22 host kernel: EDAC amd64: MC: 0:     0MB 1:     0MB
Feb 18 08:12:22 host kernel: EDAC amd64: MC: 2:  8192MB 3:     0MB

found something to explain my missing data situations not understanding it yet but i’m getting there how i managed to get it up to 8 % no clue yet

This topic was automatically closed 273 days after the last reply. New replies are no longer allowed.