You are not logged in.

#1 2021-01-25 19:52:10

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

[SOLVED]Problem setting up multihead, only one display opens properly.

I have an asus laptop with an AMD integrated and Nvidia dedicated graphics. I am running the latest version of arch, with i3wm.
Upon fresh setup, the laptop's integrated display opens. Initially, the amd was not detected by X -configure, but after i installed amdgpu pro, that was solved.

The problem is that when I generate the xorg.conf using "X -configure", the integrated display has a flashing cursor and the hdmi one is off. Using nvidia for both displays, makes the hdmi work. If i delete the conf and replace it with one generated by nvidia-xconfig, only the hdmi works and xrandr only detects the hdmi and also doesnt list the amdgpu.

The X -configure conf

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/75dpi"
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "Accel"              	# [<bool>]
        #Option     "SWcursor"           	# [<bool>]
        #Option     "EnablePageFlip"     	# [<bool>]
        #Option     "SubPixelOrder"      	# [<str>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "AccelMethod"        	# <str>
        #Option     "DRI3"               	# [<bool>]
        #Option     "DRI"                	# <i>
        #Option     "ShadowPrimary"      	# [<bool>]
        #Option     "TearFree"           	# [<bool>]
        #Option     "DeleteUnusedDP12Displays" 	# [<bool>]
        #Option     "VariableRefresh"    	# [<bool>]
	Identifier  "Card0"
	Driver      "amdgpu"
EndSection

Section "Device"
	Identifier  "Card1"
	Driver      "nvidia"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

It seems as if it doesnt want to work on the amd integrated card.

I dont know if it is related, but on the laptop screen, i get an error before the flashing cursor screen:

FAILED to start Load/Save #ness of backlight:acpi_video0

Inspecting the service status, i get:

● systemd-backlight@backlight:acpi_video0.service - Load/Save Screen Backlight Brightness of backlight:acpi_video0
     Loaded: loaded (/usr/lib/systemd/system/systemd-backlight@.service; static)
     Active: inactive (dead)
       Docs: man:systemd-backlight@.service(8)

and

● systemd-backlight@backlight:amdgpu_bl0.service - Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0
     Loaded: loaded (/usr/lib/systemd/system/systemd-backlight@.service; static)
     Active: active (exited) since Mon 2021-01-25 21:03:01 EET; 44min ago
       Docs: man:systemd-backlight@.service(8)
    Process: 387 ExecStart=/usr/lib/systemd/systemd-backlight load backlight:amdgpu_bl0 (code=exited, status=0/SUCCESS)
   Main PID: 387 (code=exited, status=0/SUCCESS)

Jan 25 21:03:01 carton systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0...
Jan 25 21:03:01 carton systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0.

I want to get both screens working, not mirrored.

Last edited by wawawiwo (2021-01-26 22:18:00)

Offline

#2 2021-01-25 20:11:36

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,510
Website

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

So you have a hybrid graphics system, but it doesn't sound like you've done anything to configure it, right?  You need to start here:
https://wiki.archlinux.org/index.php/Hybrid_graphics


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#3 2021-01-25 20:19:24

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

Trilby wrote:

So you have a hybrid graphics system, but it doesn't sound like you've done anything to configure it, right?  You need to start here:
https://wiki.archlinux.org/index.php/Hybrid_graphics

Well, i tried using bumblebee with bbswitch, but on boot the same thing happens, the integrated display has the flashing cursor and the hdmi is off.
Can optimus help me in any way? I tried it installing it on another display, but it didnt seem to do anything in this regard.

Offline

#4 2021-01-25 20:26:11

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,510
Website

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

What exactly did you do to "try" using bumblebee and / or bbswitch?  Be specific.  And what do you mean you tried installing optimus on another display?  Do you mean a different computer?


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#5 2021-01-25 20:32:18

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

Trilby wrote:

What exactly did you do to "try" using bumblebee and / or bbswitch?  Be specific.  And what do you mean you tried installing optimus on another display?  Do you mean a different computer?

Well, upon installing bulblebee and bbswitch, i cant properly boot.
With optimus, I installed it on another installation*(i reinstalled arch, as i thought it was a problem with the way i did it the first time) of arch and got the same problem. Is there a way i can use optimus to make the internal display work?

Offline

#6 2021-01-25 21:29:45

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,613

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

This ha nothing to do w/ bumblebee or bbswitch.
You need to offload the output, the page Trilby linked references https://wiki.archlinux.org/index.php/PRIME
There you'll also find that this will only work by using the nvidia GPU as primary one.
You will NOT create a static server layout w/ either Xorg -configure nor nvidia-xconfig, but follow the link on that page that describes how to make the nvidia chip the primary one.

Online

#7 2021-01-26 13:48:05

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

seth wrote:

This ha nothing to do w/ bumblebee or bbswitch.
You need to offload the output, the page Trilby linked references https://wiki.archlinux.org/index.php/PRIME
There you'll also find that this will only work by using the nvidia GPU as primary one.
You will NOT create a static server layout w/ either Xorg -configure nor nvidia-xconfig, but follow the link on that page that describes how to make the nvidia chip the primary one.

I can't exactly use prime as xrandr doesnt detect the amd card. Is there a way to make it detect it?

Offline

#8 2021-01-26 15:17:24

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,613

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

Remove all generated xorg.conf'igs and post the xorg log and your system journal and the output of "lspci".
You might face a race condition on the initial X11 start after the boot process, in that case see https://wiki.archlinux.org/index.php/ke … _KMS_start

Online

#9 2021-01-26 15:56:03

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

seth wrote:

Remove all generated xorg.conf'igs and post the xorg log and your system journal and the output of "lspci".
You might face a race condition on the initial X11 start after the boot process, in that case see https://wiki.archlinux.org/index.php/ke … _KMS_start

After I removed xorg.conf, the xorg log was empty. Before that, it was like this :

[    19.779]
X.Org X Server 1.20.10
X Protocol Version 11, Revision 0
[    19.779] Build Operating System: Linux Arch Linux
[    19.780] Current Operating System: Linux carton 5.10.10-arch1-1 #1 SMP PREEMPT Sat, 23 Jan 2021 23:59:48 +0000 x86_64
[    19.780] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=538e8170-bd4a-4524-a4ff-877034cea63c rw loglevel=3 quiet acpi_backlight=vendor
[    19.780] Build Date: 14 December 2020  12:10:29PM
[    19.780]
[    19.780] Current version of pixman: 0.40.0
[    19.780] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    19.780] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    19.780] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan 26 17:20:56 2021
[    19.900] (==) Using config file: "/etc/X11/xorg.conf"
[    19.900] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    19.900] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    20.038] (==) ServerLayout "X.org Configured"
[    20.038] (**) |-->Screen "Screen0" (0)
[    20.038] (**) |   |-->Monitor "Monitor0"
[    20.039] (**) |   |-->Device "Card1"
[    20.039] (**) |-->Screen "Screen1" (1)
[    20.039] (**) |   |-->Monitor "Monitor1"
[    20.039] (**) |   |-->Device "Card1"
[    20.039] (**) |-->Input Device "Mouse0"
[    20.039] (**) |-->Input Device "Keyboard0"
[    20.039] (==) Automatically adding devices
[    20.039] (==) Automatically enabling devices
[    20.039] (==) Automatically adding GPU devices
[    20.039] (==) Automatically binding GPU devices
[    20.039] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    20.321] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    20.322] 	Entry deleted from font path.
[    20.375] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    20.375] 	Entry deleted from font path.
[    20.375] (**) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi,
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    20.375] (**) ModulePath set to "/usr/lib/xorg/modules"
[    20.375] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    20.375] (WW) Disabling Mouse0
[    20.375] (WW) Disabling Keyboard0
[    20.375] (II) Module ABI versions:
[    20.375] 	X.Org ANSI C Emulation: 0.4
[    20.375] 	X.Org Video Driver: 24.1
[    20.375] 	X.Org XInput driver : 24.1
[    20.375] 	X.Org Server Extension : 10.0
[    20.376] (++) using VT number 7

[    20.376] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[    20.377] (II) xfree86: Adding drm device (/dev/dri/card1)
[    20.377] (II) xfree86: Adding drm device (/dev/dri/card0)
[    20.385] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    20.388] (--) PCI: (1@0:0:0) 10de:1f91:1043:109f rev 161, Mem @ 0xf6000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[    20.388] (--) PCI:*(5@0:0:0) 1002:15d8:1043:18f1 rev 194, Mem @ 0xe0000000/268435456, 0xf0000000/2097152, 0xf7500000/524288, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
[    20.388] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    20.388] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    20.388] (II) LoadModule: "glx"
[    20.457] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    20.535] (II) Module glx: vendor="X.Org Foundation"
[    20.535] 	compiled for 1.20.10, module version = 1.0.0
[    20.535] 	ABI class: X.Org Server Extension, version 10.0
[    20.535] (II) LoadModule: "nvidia"
[    20.536] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    20.614] (II) Module nvidia: vendor="NVIDIA Corporation"
[    20.614] 	compiled for 1.6.99.901, module version = 1.0.0
[    20.614] 	Module class: X.Org Video Driver
[    20.620] (II) NVIDIA dlloader X Driver  460.32.03  Sun Dec 27 18:56:00 UTC 2020
[    20.620] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    20.636] (II) Loading sub module "fb"
[    20.636] (II) LoadModule: "fb"
[    20.636] (II) Loading /usr/lib/xorg/modules/libfb.so
[    20.645] (II) Module fb: vendor="X.Org Foundation"
[    20.645] 	compiled for 1.20.10, module version = 1.0.0
[    20.645] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    20.645] (II) Loading sub module "wfb"
[    20.645] (II) LoadModule: "wfb"
[    20.645] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    20.652] (II) Module wfb: vendor="X.Org Foundation"
[    20.652] 	compiled for 1.20.10, module version = 1.0.0
[    20.652] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    20.652] (II) Loading sub module "ramdac"
[    20.652] (II) LoadModule: "ramdac"
[    20.652] (II) Module "ramdac" already built-in
[    20.655] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    20.655] (==) NVIDIA(0): RGB weight 888
[    20.655] (==) NVIDIA(0): Default visual is TrueColor
[    20.655] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    20.655] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    20.655] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    20.655] (**) NVIDIA(0): Enabling 2D acceleration
[    20.656] (II) Loading sub module "glxserver_nvidia"
[    20.656] (II) LoadModule: "glxserver_nvidia"
[    20.656] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    21.491] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    21.491] 	compiled for 1.6.99.901, module version = 1.0.0
[    21.491] 	Module class: X.Org Server Extension
[    21.491] (II) NVIDIA GLX Module  460.32.03  Sun Dec 27 18:53:34 UTC 2020
[    21.508] (II) NVIDIA: The X server supports PRIME Render Offload.
[    22.278] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    22.278] (--) NVIDIA(0):     DFP-0 (boot)
[    22.279] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1650 (TU117-A) at PCI:1:0:0 (GPU-0)
[    22.280] (--) NVIDIA(0): Memory: 4194304 kBytes
[    22.280] (--) NVIDIA(0): VideoBIOS: 90.17.4c.00.23
[    22.280] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    22.309] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): connected
[    22.309] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): Internal TMDS
[    22.309] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): 600.0 MHz maximum pixel clock
[    22.309] (--) NVIDIA(GPU-0):
[    22.353] (==) NVIDIA(0):
[    22.353] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    22.353] (==) NVIDIA(0):     will be used as the requested mode.
[    22.353] (==) NVIDIA(0):
[    22.355] (II) NVIDIA(0): Validated MetaModes:
[    22.355] (II) NVIDIA(0):     "DFP-0:nvidia-auto-select"
[    22.355] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[    22.420] (--) NVIDIA(0): DPI set to (90, 91); computed from "UseEdidDpi" X config
[    22.420] (--) NVIDIA(0):     option
[    22.421] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[    22.421] (II) NVIDIA:     access.
[    22.430] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    22.430] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    22.430] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    22.430] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    22.430] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    22.430] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    22.430] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    22.430] (II) NVIDIA(0):     Config Options in the README.
[    22.453] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[    22.582] (==) NVIDIA(0): Disabling shared memory pixmaps
[    22.582] (==) NVIDIA(0): Backing store enabled
[    22.582] (==) NVIDIA(0): Silken mouse disabled
[    22.582] (==) NVIDIA(0): DPMS enabled
[    22.594] (II) Loading sub module "dri2"
[    22.594] (II) LoadModule: "dri2"
[    22.594] (II) Module "dri2" already built-in
[    22.594] (II) NVIDIA(0): [DRI2] Setup complete
[    22.594] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    22.595] (II) Initializing extension Generic Event Extension
[    22.595] (II) Initializing extension SHAPE
[    22.596] (II) Initializing extension MIT-SHM
[    22.596] (II) Initializing extension XInputExtension
[    22.596] (II) Initializing extension XTEST
[    22.596] (II) Initializing extension BIG-REQUESTS
[    22.596] (II) Initializing extension SYNC
[    22.596] (II) Initializing extension XKEYBOARD
[    22.596] (II) Initializing extension XC-MISC
[    22.596] (II) Initializing extension SECURITY
[    22.596] (II) Initializing extension XFIXES
[    22.596] (II) Initializing extension RENDER
[    22.596] (II) Initializing extension RANDR
[    22.597] (II) Initializing extension COMPOSITE
[    22.597] (II) Initializing extension DAMAGE
[    22.597] (II) Initializing extension MIT-SCREEN-SAVER
[    22.597] (II) Initializing extension DOUBLE-BUFFER
[    22.597] (II) Initializing extension RECORD
[    22.597] (II) Initializing extension DPMS
[    22.597] (II) Initializing extension Present
[    22.597] (II) Initializing extension DRI3
[    22.597] (II) Initializing extension X-Resource
[    22.597] (II) Initializing extension XVideo
[    22.597] (II) Initializing extension XVideo-MotionCompensation
[    22.597] (II) Initializing extension GLX
[    22.598] (II) Initializing extension GLX
[    22.598] (II) Indirect GLX disabled.
[    22.598] (II) GLX: Another vendor is already registered for screen 0
[    22.598] (II) Initializing extension XFree86-VidModeExtension
[    22.598] (II) Initializing extension XFree86-DGA
[    22.598] (II) Initializing extension XFree86-DRI
[    22.598] (II) Initializing extension DRI2
[    22.598] (II) Initializing extension NV-GLX
[    22.598] (II) Initializing extension NV-CONTROL
[    22.598] (II) Initializing extension XINERAMA
[    23.192] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    23.193] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    23.193] (II) LoadModule: "libinput"
[    23.193] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    23.242] (II) Module libinput: vendor="X.Org Foundation"
[    23.242] 	compiled for 1.20.8, module version = 0.30.0
[    23.242] 	Module class: X.Org XInput Driver
[    23.242] 	ABI class: X.Org XInput driver, version 24.1
[    23.242] (II) Using input driver 'libinput' for 'Power Button'
[    23.242] (**) Power Button: always reports core events
[    23.242] (**) Option "Device" "/dev/input/event3"
[    23.242] (**) Option "_source" "server/udev"
[    23.266] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    23.266] (II) event3  - Power Button: device is a keyboard
[    23.266] (II) event3  - Power Button: device removed
[    23.286] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[    23.286] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    23.287] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    23.287] (II) event3  - Power Button: device is a keyboard
[    23.288] (II) config/udev: Adding input device Asus Wireless Radio Control (/dev/input/event8)
[    23.288] (**) Asus Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[    23.288] (II) Using input driver 'libinput' for 'Asus Wireless Radio Control'
[    23.288] (**) Asus Wireless Radio Control: always reports core events
[    23.288] (**) Option "Device" "/dev/input/event8"
[    23.288] (**) Option "_source" "server/udev"
[    23.290] (II) event8  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    23.290] (II) event8  - Asus Wireless Radio Control: device is a keyboard
[    23.290] (II) event8  - Asus Wireless Radio Control: device removed
[    23.578] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input9/event8"
[    23.578] (II) XINPUT: Adding extended input device "Asus Wireless Radio Control" (type: KEYBOARD, id 7)
[    23.580] (II) event8  - Asus Wireless Radio Control: is tagged by udev as: Keyboard
[    23.580] (II) event8  - Asus Wireless Radio Control: device is a keyboard
[    23.581] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[    23.581] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    23.581] (II) Using input driver 'libinput' for 'Video Bus'
[    23.581] (**) Video Bus: always reports core events
[    23.581] (**) Option "Device" "/dev/input/event9"
[    23.581] (**) Option "_source" "server/udev"
[    23.583] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    23.583] (II) event9  - Video Bus: device is a keyboard
[    23.583] (II) event9  - Video Bus: device removed
[    23.793] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1c/LNXVIDEO:01/input/input10/event9"
[    23.793] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    23.796] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    23.796] (II) event9  - Video Bus: device is a keyboard
[    23.797] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    23.797] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    23.797] (II) Using input driver 'libinput' for 'Power Button'
[    23.797] (**) Power Button: always reports core events
[    23.797] (**) Option "Device" "/dev/input/event0"
[    23.797] (**) Option "_source" "server/udev"
[    23.798] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    23.798] (II) event0  - Power Button: device is a keyboard
[    23.798] (II) event0  - Power Button: device removed
[    23.821] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    23.821] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[    23.823] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    23.823] (II) event0  - Power Button: device is a keyboard
[    23.824] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    23.824] (II) No input driver specified, ignoring this device.
[    23.824] (II) This device may have been added with another device file.
[    23.825] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[    23.825] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    23.825] (II) Using input driver 'libinput' for 'Sleep Button'
[    23.825] (**) Sleep Button: always reports core events
[    23.825] (**) Option "Device" "/dev/input/event2"
[    23.825] (**) Option "_source" "server/udev"
[    23.826] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    23.826] (II) event2  - Sleep Button: device is a keyboard
[    23.826] (II) event2  - Sleep Button: device removed
[    23.856] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[    23.856] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
[    23.858] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    23.858] (II) event2  - Sleep Button: device is a keyboard
[    23.859] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event15)
[    23.859] (II) No input driver specified, ignoring this device.
[    23.859] (II) This device may have been added with another device file.
[    23.859] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event16)
[    23.859] (II) No input driver specified, ignoring this device.
[    23.859] (II) This device may have been added with another device file.
[    23.860] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event17)
[    23.860] (II) No input driver specified, ignoring this device.
[    23.860] (II) This device may have been added with another device file.
[    23.860] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event18)
[    23.860] (II) No input driver specified, ignoring this device.
[    23.860] (II) This device may have been added with another device file.
[    23.862] (II) config/udev: Adding input device GAMDIAS Gaming Mouse (/dev/input/event5)
[    23.862] (**) GAMDIAS Gaming Mouse: Applying InputClass "libinput pointer catchall"
[    23.862] (II) Using input driver 'libinput' for 'GAMDIAS Gaming Mouse'
[    23.862] (**) GAMDIAS Gaming Mouse: always reports core events
[    23.862] (**) Option "Device" "/dev/input/event5"
[    23.862] (**) Option "_source" "server/udev"
[    23.921] (II) event5  - GAMDIAS Gaming Mouse: is tagged by udev as: Mouse
[    23.921] (II) event5  - GAMDIAS Gaming Mouse: device is a pointer
[    23.922] (II) event5  - GAMDIAS Gaming Mouse: device removed
[    24.483] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.0/0003:1B80:B503.0001/input/input5/event5"
[    24.483] (II) XINPUT: Adding extended input device "GAMDIAS Gaming Mouse" (type: MOUSE, id 11)
[    24.483] (**) Option "AccelerationScheme" "none"
[    24.483] (**) GAMDIAS Gaming Mouse: (accel) selected scheme none/0
[    24.483] (**) GAMDIAS Gaming Mouse: (accel) acceleration factor: 2.000
[    24.483] (**) GAMDIAS Gaming Mouse: (accel) acceleration threshold: 4
[    24.542] (II) event5  - GAMDIAS Gaming Mouse: is tagged by udev as: Mouse
[    24.542] (II) event5  - GAMDIAS Gaming Mouse: device is a pointer
[    24.543] (II) config/udev: Adding input device GAMDIAS Gaming Mouse (/dev/input/mouse0)
[    24.543] (II) No input driver specified, ignoring this device.
[    24.543] (II) This device may have been added with another device file.
[    24.544] (II) config/udev: Adding input device GAMDIAS Gaming Mouse Keyboard (/dev/input/event6)
[    24.544] (**) GAMDIAS Gaming Mouse Keyboard: Applying InputClass "libinput keyboard catchall"
[    24.544] (II) Using input driver 'libinput' for 'GAMDIAS Gaming Mouse Keyboard'
[    24.544] (**) GAMDIAS Gaming Mouse Keyboard: always reports core events
[    24.544] (**) Option "Device" "/dev/input/event6"
[    24.544] (**) Option "_source" "server/udev"
[    24.547] (II) event6  - GAMDIAS Gaming Mouse Keyboard: is tagged by udev as: Keyboard
[    24.547] (II) event6  - GAMDIAS Gaming Mouse Keyboard: device is a keyboard
[    24.547] (II) event6  - GAMDIAS Gaming Mouse Keyboard: device removed
[    24.571] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.1/0003:1B80:B503.0002/input/input7/event6"
[    24.571] (II) XINPUT: Adding extended input device "GAMDIAS Gaming Mouse Keyboard" (type: KEYBOARD, id 12)
[    24.574] (II) event6  - GAMDIAS Gaming Mouse Keyboard: is tagged by udev as: Keyboard
[    24.574] (II) event6  - GAMDIAS Gaming Mouse Keyboard: device is a keyboard
[    24.576] (II) config/udev: Adding input device GAMDIAS Gaming Mouse Consumer Control (/dev/input/event7)
[    24.576] (**) GAMDIAS Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    24.576] (II) Using input driver 'libinput' for 'GAMDIAS Gaming Mouse Consumer Control'
[    24.576] (**) GAMDIAS Gaming Mouse Consumer Control: always reports core events
[    24.576] (**) Option "Device" "/dev/input/event7"
[    24.576] (**) Option "_source" "server/udev"
[    24.578] (II) event7  - GAMDIAS Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[    24.578] (II) event7  - GAMDIAS Gaming Mouse Consumer Control: device is a keyboard
[    24.579] (II) event7  - GAMDIAS Gaming Mouse Consumer Control: device removed
[    24.598] (II) libinput: GAMDIAS Gaming Mouse Consumer Control: needs a virtual subdevice
[    24.599] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.1/0003:1B80:B503.0002/input/input8/event7"
[    24.599] (II) XINPUT: Adding extended input device "GAMDIAS Gaming Mouse Consumer Control" (type: MOUSE, id 13)
[    24.599] (**) Option "AccelerationScheme" "none"
[    24.599] (**) GAMDIAS Gaming Mouse Consumer Control: (accel) selected scheme none/0
[    24.599] (**) GAMDIAS Gaming Mouse Consumer Control: (accel) acceleration factor: 2.000
[    24.599] (**) GAMDIAS Gaming Mouse Consumer Control: (accel) acceleration threshold: 4
[    24.601] (II) event7  - GAMDIAS Gaming Mouse Consumer Control: is tagged by udev as: Keyboard
[    24.601] (II) event7  - GAMDIAS Gaming Mouse Consumer Control: device is a keyboard
[    24.603] (II) config/udev: Adding input device USB2.0 HD UVC WebCam: USB2.0 HD (/dev/input/event13)
[    24.603] (**) USB2.0 HD UVC WebCam: USB2.0 HD: Applying InputClass "libinput keyboard catchall"
[    24.603] (II) Using input driver 'libinput' for 'USB2.0 HD UVC WebCam: USB2.0 HD'
[    24.603] (**) USB2.0 HD UVC WebCam: USB2.0 HD: always reports core events
[    24.603] (**) Option "Device" "/dev/input/event13"
[    24.603] (**) Option "_source" "server/udev"
[    24.605] (II) event13 - USB2.0 HD UVC WebCam: USB2.0 HD: is tagged by udev as: Keyboard
[    24.605] (II) event13 - USB2.0 HD UVC WebCam: USB2.0 HD: device is a keyboard
[    24.605] (II) event13 - USB2.0 HD UVC WebCam: USB2.0 HD: device removed
[    24.807] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-1/3-1:1.0/input/input14/event13"
[    24.807] (II) XINPUT: Adding extended input device "USB2.0 HD UVC WebCam: USB2.0 HD" (type: KEYBOARD, id 14)
[    24.810] (II) event13 - USB2.0 HD UVC WebCam: USB2.0 HD: is tagged by udev as: Keyboard
[    24.810] (II) event13 - USB2.0 HD UVC WebCam: USB2.0 HD: device is a keyboard
[    24.811] (II) config/udev: Adding input device HD-Audio Generic Headset Mic (/dev/input/event19)
[    24.811] (II) No input driver specified, ignoring this device.
[    24.811] (II) This device may have been added with another device file.
[    24.811] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event20)
[    24.811] (II) No input driver specified, ignoring this device.
[    24.811] (II) This device may have been added with another device file.
[    24.812] (II) config/udev: Adding input device ELAN1200:00 04F3:30BA Mouse (/dev/input/event12)
[    24.812] (**) ELAN1200:00 04F3:30BA Mouse: Applying InputClass "libinput pointer catchall"
[    24.812] (II) Using input driver 'libinput' for 'ELAN1200:00 04F3:30BA Mouse'
[    24.812] (**) ELAN1200:00 04F3:30BA Mouse: always reports core events
[    24.812] (**) Option "Device" "/dev/input/event12"
[    24.812] (**) Option "_source" "server/udev"
[    24.814] (II) event12 - ELAN1200:00 04F3:30BA Mouse: is tagged by udev as: Mouse Pointingstick
[    24.815] (II) event12 - ELAN1200:00 04F3:30BA Mouse: device is a pointer
[    24.816] (II) event12 - ELAN1200:00 04F3:30BA Mouse: device removed
[    24.911] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input16/event12"
[    24.911] (II) XINPUT: Adding extended input device "ELAN1200:00 04F3:30BA Mouse" (type: MOUSE, id 15)
[    24.911] (**) Option "AccelerationScheme" "none"
[    24.911] (**) ELAN1200:00 04F3:30BA Mouse: (accel) selected scheme none/0
[    24.911] (**) ELAN1200:00 04F3:30BA Mouse: (accel) acceleration factor: 2.000
[    24.911] (**) ELAN1200:00 04F3:30BA Mouse: (accel) acceleration threshold: 4
[    24.914] (II) event12 - ELAN1200:00 04F3:30BA Mouse: is tagged by udev as: Mouse Pointingstick
[    24.914] (II) event12 - ELAN1200:00 04F3:30BA Mouse: device is a pointer
[    24.916] (II) config/udev: Adding input device ELAN1200:00 04F3:30BA Mouse (/dev/input/mouse1)
[    24.916] (II) No input driver specified, ignoring this device.
[    24.916] (II) This device may have been added with another device file.
[    24.917] (II) config/udev: Adding input device ELAN1200:00 04F3:30BA Touchpad (/dev/input/event14)
[    24.917] (**) ELAN1200:00 04F3:30BA Touchpad: Applying InputClass "libinput touchpad catchall"
[    24.917] (II) Using input driver 'libinput' for 'ELAN1200:00 04F3:30BA Touchpad'
[    24.917] (**) ELAN1200:00 04F3:30BA Touchpad: always reports core events
[    24.917] (**) Option "Device" "/dev/input/event14"
[    24.917] (**) Option "_source" "server/udev"
[    24.919] (II) event14 - ELAN1200:00 04F3:30BA Touchpad: is tagged by udev as: Touchpad
[    24.922] (II) event14 - ELAN1200:00 04F3:30BA Touchpad: device is a touchpad
[    24.922] (II) event14 - ELAN1200:00 04F3:30BA Touchpad: device removed
[    25.099] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input17/event14"
[    25.099] (II) XINPUT: Adding extended input device "ELAN1200:00 04F3:30BA Touchpad" (type: TOUCHPAD, id 16)
[    25.101] (**) Option "AccelerationScheme" "none"
[    25.101] (**) ELAN1200:00 04F3:30BA Touchpad: (accel) selected scheme none/0
[    25.101] (**) ELAN1200:00 04F3:30BA Touchpad: (accel) acceleration factor: 2.000
[    25.101] (**) ELAN1200:00 04F3:30BA Touchpad: (accel) acceleration threshold: 4
[    25.104] (II) event14 - ELAN1200:00 04F3:30BA Touchpad: is tagged by udev as: Touchpad
[    25.106] (II) event14 - ELAN1200:00 04F3:30BA Touchpad: device is a touchpad
[    25.107] (II) config/udev: Adding input device ELAN1200:00 04F3:30BA Touchpad (/dev/input/mouse2)
[    25.107] (II) No input driver specified, ignoring this device.
[    25.107] (II) This device may have been added with another device file.
[    25.108] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event11)
[    25.108] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    25.108] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[    25.108] (**) Asus WMI hotkeys: always reports core events
[    25.108] (**) Option "Device" "/dev/input/event11"
[    25.108] (**) Option "_source" "server/udev"
[    25.109] (II) event11 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    25.109] (II) event11 - Asus WMI hotkeys: device is a keyboard
[    25.110] (II) event11 - Asus WMI hotkeys: device removed
[    25.154] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input15/event11"
[    25.154] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 17)
[    25.155] (II) event11 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    25.156] (II) event11 - Asus WMI hotkeys: device is a keyboard
[    25.157] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    25.157] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    25.157] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    25.157] (**) AT Translated Set 2 keyboard: always reports core events
[    25.157] (**) Option "Device" "/dev/input/event4"
[    25.157] (**) Option "_source" "server/udev"
[    25.158] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    25.158] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    25.160] (II) event4  - AT Translated Set 2 keyboard: device removed
[    25.182] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    25.182] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 18)
[    25.184] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    25.184] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    25.186] (II) config/udev: Adding input device PC Speaker (/dev/input/event10)
[    25.186] (II) No input driver specified, ignoring this device.
[    25.186] (II) This device may have been added with another device file.
[    25.195] (**) GAMDIAS Gaming Mouse Consumer Control: Applying InputClass "libinput keyboard catchall"
[    25.195] (II) Using input driver 'libinput' for 'GAMDIAS Gaming Mouse Consumer Control'
[    25.195] (**) GAMDIAS Gaming Mouse Consumer Control: always reports core events
[    25.195] (**) Option "Device" "/dev/input/event7"
[    25.195] (**) Option "_source" "_driver/libinput"
[    25.195] (II) libinput: GAMDIAS Gaming Mouse Consumer Control: is a virtual subdevice
[    25.195] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.1/0003:1B80:B503.0002/input/input8/event7"
[    25.195] (II) XINPUT: Adding extended input device "GAMDIAS Gaming Mouse Consumer Control" (type: KEYBOARD, id 19)
[    38.856] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): connected
[    38.856] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): Internal TMDS
[    38.856] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): 600.0 MHz maximum pixel clock
[    38.856] (--) NVIDIA(GPU-0):
[    39.053] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): connected
[    39.053] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): Internal TMDS
[    39.053] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): 600.0 MHz maximum pixel clock
[    39.053] (--) NVIDIA(GPU-0):
[    39.357] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): connected
[    39.357] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): Internal TMDS
[    39.357] (--) NVIDIA(GPU-0): Idek Iiyama PL2530H (DFP-0): 600.0 MHz maximum pixel clock
[    39.357] (--) NVIDIA(GPU-0):
[    84.447] (EE) event5  - GAMDIAS Gaming Mouse: client bug: event processing lagging behind by 14ms, your system is too slow
[   109.998] (EE) event5  - GAMDIAS Gaming Mouse: client bug: event processing lagging behind by 13ms, your system is too slow

lspci output:

00:00.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Root Complex
00:00.2 IOMMU: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 IOMMU
00:01.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge
00:01.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 PCIe GPP Bridge [6:0]
00:01.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 PCIe GPP Bridge [6:0]
00:01.3 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 PCIe GPP Bridge [6:0]
00:01.7 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 PCIe GPP Bridge [6:0]
00:08.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 00h-1fh) PCIe Dummy Host Bridge
00:08.1 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus A
00:08.2 PCI bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Internal PCIe GPP Bridge 0 to Bus B
00:14.0 SMBus: Advanced Micro Devices, Inc. [AMD] FCH SMBus Controller (rev 61)
00:14.3 ISA bridge: Advanced Micro Devices, Inc. [AMD] FCH LPC Bridge (rev 51)
00:18.0 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 0
00:18.1 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 1
00:18.2 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 2
00:18.3 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 3
00:18.4 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 4
00:18.5 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 5
00:18.6 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 6
00:18.7 Host bridge: Advanced Micro Devices, Inc. [AMD] Raven/Raven2 Device 24: Function 7
01:00.0 VGA compatible controller: NVIDIA Corporation TU117M [GeForce GTX 1650 Mobile / Max-Q] (rev a1)
01:00.1 Audio device: NVIDIA Corporation Device 10fa (rev a1)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
03:00.0 Non-Volatile memory controller: SK hynix BC501 NVMe Solid State Drive 512GB
04:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter
05:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Picasso (rev c2)
05:00.2 Encryption controller: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) Platform Security Processor
05:00.3 USB controller: Advanced Micro Devices, Inc. [AMD] Raven USB 3.1
05:00.4 USB controller: Advanced Micro Devices, Inc. [AMD] Raven USB 3.1
05:00.6 Audio device: Advanced Micro Devices, Inc. [AMD] Family 17h (Models 10h-1fh) HD Audio Controller
06:00.0 SATA controller: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] (rev 61)

The system journal:

-- Journal begins at Mon 2021-01-25 18:06:47 EET, ends at Tue 2021-01-26 17:52:33 EET. --
Jan 26 17:41:02 carton kernel: Linux version 5.10.10-arch1-1 (linux@archlinux) (gcc (GCC) 10.2.0, GNU ld (GNU Binutils) 2.35.1) #1 SMP PREEMPT Sat, 23 Jan 2021 23:59:48 +0000
Jan 26 17:41:02 carton kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=538e8170-bd4a-4524-a4ff-877034cea63c rw loglevel=3 quiet acpi_backlight=vendor
Jan 26 17:41:02 carton kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jan 26 17:41:02 carton kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jan 26 17:41:02 carton kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jan 26 17:41:02 carton kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jan 26 17:41:02 carton kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Jan 26 17:41:02 carton kernel: BIOS-provided physical RAM map:
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009e01fff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x0000000009e02000-0x0000000009ffffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x000000000a20b000-0x00000000bc002fff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000bc003000-0x00000000bd4e8fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000bd4e9000-0x00000000bd511fff] ACPI data
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000bd512000-0x00000000bdab2fff] ACPI NVS
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000bdab3000-0x00000000be285fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000be286000-0x00000000be32cfff] type 20
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000be32d000-0x00000000beffffff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000bf000000-0x00000000bfffffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fdffffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000236ffffff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x0000000237000000-0x000000023effffff] reserved
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x000000023f000000-0x000000023f33ffff] usable
Jan 26 17:41:02 carton kernel: BIOS-e820: [mem 0x000000023f340000-0x000000023fffffff] reserved
Jan 26 17:41:02 carton kernel: NX (Execute Disable) protection: active
Jan 26 17:41:02 carton kernel: efi: EFI v2.70 by American Megatrends
Jan 26 17:41:02 carton kernel: efi: TPMFinalLog=0xbda4c000 ACPI 2.0=0xbd4f1000 ACPI=0xbd4f1000 SMBIOS=0xbe12c000 SMBIOS 3.0=0xbe12b000 MEMATTR=0xa9b40418 ESRT=0xbab1c318 
Jan 26 17:41:02 carton kernel: SMBIOS 3.2.1 present.
Jan 26 17:41:02 carton kernel: DMI: ASUSTeK COMPUTER INC. TUF Gaming FX505DT_FX505DT/FX505DT, BIOS FX505DT.310 12/24/2019
Jan 26 17:41:02 carton kernel: tsc: Fast TSC calibration using PIT
Jan 26 17:41:02 carton kernel: tsc: Detected 2096.155 MHz processor
Jan 26 17:41:02 carton kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jan 26 17:41:02 carton kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jan 26 17:41:02 carton kernel: last_pfn = 0x23f340 max_arch_pfn = 0x400000000
Jan 26 17:41:02 carton kernel: MTRR default type: uncachable
Jan 26 17:41:02 carton kernel: MTRR fixed ranges enabled:
Jan 26 17:41:02 carton kernel:   00000-9FFFF write-back
Jan 26 17:41:02 carton kernel:   A0000-BFFFF uncachable
Jan 26 17:41:02 carton kernel:   C0000-FFFFF write-protect
Jan 26 17:41:02 carton kernel: MTRR variable ranges enabled:
Jan 26 17:41:02 carton kernel:   0 base 000000000000 mask FFFF80000000 write-back
Jan 26 17:41:02 carton kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Jan 26 17:41:02 carton kernel:   2 disabled
Jan 26 17:41:02 carton kernel:   3 disabled
Jan 26 17:41:02 carton kernel:   4 disabled
Jan 26 17:41:02 carton kernel:   5 disabled
Jan 26 17:41:02 carton kernel:   6 disabled
Jan 26 17:41:02 carton kernel:   7 disabled
Jan 26 17:41:02 carton kernel: TOM2: 0000000240000000 aka 9216M
Jan 26 17:41:02 carton kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jan 26 17:41:02 carton kernel: e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
Jan 26 17:41:02 carton kernel: last_pfn = 0xbf000 max_arch_pfn = 0x400000000
Jan 26 17:41:02 carton kernel: esrt: Reserving ESRT space from 0x00000000bab1c318 to 0x00000000bab1c350.
Jan 26 17:41:02 carton kernel: e820: update [mem 0xbab1c000-0xbab1cfff] usable ==> reserved
Jan 26 17:41:02 carton kernel: check: Scanning 1 areas for low memory corruption
Jan 26 17:41:02 carton kernel: Using GB pages for direct mapping
Jan 26 17:41:02 carton kernel: Secure boot could not be determined
Jan 26 17:41:02 carton kernel: RAMDISK: [mem 0x34899000-0x36443fff]
Jan 26 17:41:02 carton kernel: ACPI: Early table checksum verification disabled
Jan 26 17:41:02 carton kernel: ACPI: RSDP 0x00000000BD4F1000 000024 (v02 _ASUS_)
Jan 26 17:41:02 carton kernel: ACPI: XSDT 0x00000000BD4F10A8 0000CC (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: FACP 0x00000000BD5050A8 000114 (v06 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: DSDT 0x00000000BD4F1200 013EA3 (v02 _ASUS_ Notebook 01072009 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: FACS 0x00000000BDA4BD80 000040
Jan 26 17:41:02 carton kernel: ACPI: APIC 0x00000000BD5051C0 0000DE (v03 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: FPDT 0x00000000BD5052A0 000044 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: FIDT 0x00000000BD5052E8 00009C (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD505388 005419 (v02 AMD    AmdTable 00000002 MSFT 02000002)
Jan 26 17:41:02 carton kernel: ACPI: MCFG 0x00000000BD50A7A8 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00010013)
Jan 26 17:41:02 carton kernel: ACPI: ECDT 0x00000000BD50A7E8 0000C1 (v01 ACRSYS ACRPRDCT 00000001 OEM. 00000003)
Jan 26 17:41:02 carton kernel: ACPI: HPET 0x00000000BD50A8B0 000038 (v01 _ASUS_ Notebook 01072009 AMI  00000005)
Jan 26 17:41:02 carton kernel: ACPI: UEFI 0x00000000BD50A8E8 000042 (v01 _ASUS_ Notebook 00000002      01000013)
Jan 26 17:41:02 carton kernel: ACPI: TPM2 0x00000000BD50A930 000038 (v04 _ASUS_ Notebook 00000001 AMI  00000000)
Jan 26 17:41:02 carton kernel: ACPI: IVRS 0x00000000BD50A968 00013E (v02 AMD    AMD IVRS 00000001 AMD  00000000)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50AAA8 00119C (v01 AMD    AMD CPU  00000001 AMD  00000001)
Jan 26 17:41:02 carton kernel: ACPI: CRAT 0x00000000BD50BC48 000810 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
Jan 26 17:41:02 carton kernel: ACPI: CDIT 0x00000000BD50C458 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
Jan 26 17:41:02 carton kernel: ACPI: BGRT 0x00000000BD50C488 000038 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50C4C0 000C33 (v01 AMD    AmdTable 00000001 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50D0F8 0010AC (v01 AMD    AmdTable 00000001 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50E1A8 001A11 (v01 AMD    CPMD3CLD 00000001 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50FBC0 0002AA (v01 AMD    AmdTable 00000001 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: SSDT 0x00000000BD50FE70 001C69 (v01 AMD    AmdTable 00000001 INTL 20120913)
Jan 26 17:41:02 carton kernel: ACPI: WSMT 0x00000000BD511AE0 000028 (v01 _ASUS_ Notebook 01072009 AMI  00010013)
Jan 26 17:41:02 carton kernel: ACPI: Local APIC address 0xfee00000
Jan 26 17:41:02 carton kernel: No NUMA configuration found
Jan 26 17:41:02 carton kernel: Faking a node at [mem 0x0000000000000000-0x000000023f33ffff]
Jan 26 17:41:02 carton kernel: NODE_DATA(0) allocated [mem 0x23f33c000-0x23f33ffff]
Jan 26 17:41:02 carton kernel: Zone ranges:
Jan 26 17:41:02 carton kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jan 26 17:41:02 carton kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jan 26 17:41:02 carton kernel:   Normal   [mem 0x0000000100000000-0x000000023f33ffff]
Jan 26 17:41:02 carton kernel:   Device   empty
Jan 26 17:41:02 carton kernel: Movable zone start for each node
Jan 26 17:41:02 carton kernel: Early memory node ranges
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x0000000000100000-0x0000000009e01fff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x000000000a20b000-0x00000000bc002fff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x00000000be32d000-0x00000000beffffff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x0000000100000000-0x0000000236ffffff]
Jan 26 17:41:02 carton kernel:   node   0: [mem 0x000000023f000000-0x000000023f33ffff]
Jan 26 17:41:02 carton kernel: Zeroed struct page in unavailable ranges: 49748 pages
Jan 26 17:41:02 carton kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023f33ffff]
Jan 26 17:41:02 carton kernel: On node 0 totalpages: 2047404
Jan 26 17:41:02 carton kernel:   DMA zone: 64 pages used for memmap
Jan 26 17:41:02 carton kernel:   DMA zone: 35 pages reserved
Jan 26 17:41:02 carton kernel:   DMA zone: 3999 pages, LIFO batch:0
Jan 26 17:41:02 carton kernel:   DMA32 zone: 12012 pages used for memmap
Jan 26 17:41:02 carton kernel:   DMA32 zone: 768717 pages, LIFO batch:63
Jan 26 17:41:02 carton kernel:   Normal zone: 20429 pages used for memmap
Jan 26 17:41:02 carton kernel:   Normal zone: 1274688 pages, LIFO batch:63
Jan 26 17:41:02 carton kernel: ACPI: PM-Timer IO Port: 0x808
Jan 26 17:41:02 carton kernel: ACPI: Local APIC address 0xfee00000
Jan 26 17:41:02 carton kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Jan 26 17:41:02 carton kernel: IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
Jan 26 17:41:02 carton kernel: IOAPIC[1]: apic_id 10, version 33, address 0xfec01000, GSI 24-55
Jan 26 17:41:02 carton kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 26 17:41:02 carton kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Jan 26 17:41:02 carton kernel: ACPI: IRQ0 used by override.
Jan 26 17:41:02 carton kernel: ACPI: IRQ9 used by override.
Jan 26 17:41:02 carton kernel: Using ACPI (MADT) for SMP configuration information
Jan 26 17:41:02 carton kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
Jan 26 17:41:02 carton kernel: e820: update [mem 0xb7fae000-0xb7fdcfff] usable ==> reserved
Jan 26 17:41:02 carton kernel: smpboot: Allowing 16 CPUs, 8 hotplug CPUs
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0x09e02000-0x09ffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xb7fae000-0xb7fdcfff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbab1c000-0xbab1cfff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbc003000-0xbd4e8fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbd4e9000-0xbd511fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbd512000-0xbdab2fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbdab3000-0xbe285fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbe286000-0xbe32cfff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xbf000000-0xbfffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xf7ffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xfdffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfeb7ffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfecfffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Jan 26 17:41:02 carton kernel: PM: hibernation: Registered nosave memory: [mem 0x237000000-0x23effffff]
Jan 26 17:41:02 carton kernel: [mem 0xc0000000-0xf7ffffff] available for PCI devices
Jan 26 17:41:02 carton kernel: Booting paravirtualized kernel on bare hardware
Jan 26 17:41:02 carton kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jan 26 17:41:02 carton kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
Jan 26 17:41:02 carton kernel: percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
Jan 26 17:41:02 carton kernel: pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
Jan 26 17:41:02 carton kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Jan 26 17:41:02 carton kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2014864
Jan 26 17:41:02 carton kernel: Policy zone: Normal
Jan 26 17:41:02 carton kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=538e8170-bd4a-4524-a4ff-877034cea63c rw loglevel=3 quiet acpi_backlight=vendor
Jan 26 17:41:02 carton kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jan 26 17:41:02 carton kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jan 26 17:41:02 carton kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Jan 26 17:41:02 carton kernel: Memory: 7800288K/8189616K available (14344K kernel code, 2040K rwdata, 8856K rodata, 1716K init, 4288K bss, 389068K reserved, 0K cma-reserved)
Jan 26 17:41:02 carton kernel: random: get_random_u64 called from __kmem_cache_create+0x26/0x520 with crng_init=0
Jan 26 17:41:02 carton kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Jan 26 17:41:02 carton kernel: ftrace: allocating 41847 entries in 164 pages
Jan 26 17:41:02 carton kernel: ftrace: allocated 164 pages with 3 groups
Jan 26 17:41:02 carton kernel: rcu: Preemptible hierarchical RCU implementation.
Jan 26 17:41:02 carton kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Jan 26 17:41:02 carton kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
Jan 26 17:41:02 carton kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jan 26 17:41:02 carton kernel:         Trampoline variant of Tasks RCU enabled.
Jan 26 17:41:02 carton kernel:         Rude variant of Tasks RCU enabled.
Jan 26 17:41:02 carton kernel:         Tracing variant of Tasks RCU enabled.
Jan 26 17:41:02 carton kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jan 26 17:41:02 carton kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Jan 26 17:41:02 carton kernel: NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
Jan 26 17:41:02 carton kernel: Console: colour dummy device 80x25
Jan 26 17:41:02 carton kernel: printk: console [tty0] enabled
Jan 26 17:41:02 carton kernel: ACPI: Core revision 20200925
Jan 26 17:41:02 carton kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Jan 26 17:41:02 carton kernel: APIC: Switch to symmetric I/O mode setup
Jan 26 17:41:02 carton kernel: AMD-Vi: ivrs, add hid:PNPD0040, uid:, rdevid:152
Jan 26 17:41:02 carton kernel: Switched APIC routing to physical flat.
Jan 26 17:41:02 carton kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 26 17:41:02 carton kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e37005745f, max_idle_ns: 440795263448 ns
Jan 26 17:41:02 carton kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4193.98 BogoMIPS (lpj=6987183)
Jan 26 17:41:02 carton kernel: pid_max: default: 32768 minimum: 301
Jan 26 17:41:02 carton kernel: LSM: Security Framework initializing
Jan 26 17:41:02 carton kernel: Yama: becoming mindful.
Jan 26 17:41:02 carton kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jan 26 17:41:02 carton kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jan 26 17:41:02 carton kernel: LVT offset 1 assigned for vector 0xf9
Jan 26 17:41:02 carton kernel: LVT offset 2 assigned for vector 0xf4
Jan 26 17:41:02 carton kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Jan 26 17:41:02 carton kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
Jan 26 17:41:02 carton kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jan 26 17:41:02 carton kernel: Spectre V2 : Mitigation: Full AMD retpoline
Jan 26 17:41:02 carton kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jan 26 17:41:02 carton kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jan 26 17:41:02 carton kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jan 26 17:41:02 carton kernel: Freeing SMP alternatives memory: 36K
Jan 26 17:41:02 carton kernel: smpboot: CPU0: AMD Ryzen 5 3550H with Radeon Vega Mobile Gfx (family: 0x17, model: 0x18, stepping: 0x1)
Jan 26 17:41:02 carton kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Jan 26 17:41:02 carton kernel: ... version:                0
Jan 26 17:41:02 carton kernel: ... bit width:              48
Jan 26 17:41:02 carton kernel: ... generic registers:      6
Jan 26 17:41:02 carton kernel: ... value mask:             0000ffffffffffff
Jan 26 17:41:02 carton kernel: ... max period:             00007fffffffffff
Jan 26 17:41:02 carton kernel: ... fixed-purpose events:   0
Jan 26 17:41:02 carton kernel: ... event mask:             000000000000003f
Jan 26 17:41:02 carton kernel: rcu: Hierarchical SRCU implementation.
Jan 26 17:41:02 carton kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jan 26 17:41:02 carton kernel: smp: Bringing up secondary CPUs ...
Jan 26 17:41:02 carton kernel: x86: Booting SMP configuration:
Jan 26 17:41:02 carton kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
Jan 26 17:41:02 carton kernel: smp: Brought up 1 node, 8 CPUs
Jan 26 17:41:02 carton kernel: smpboot: Max logical packages: 2
Jan 26 17:41:02 carton kernel: smpboot: Total of 8 processors activated (33551.91 BogoMIPS)
Jan 26 17:41:02 carton kernel: devtmpfs: initialized
Jan 26 17:41:02 carton kernel: x86/mm: Memory block size: 128MB
Jan 26 17:41:02 carton kernel: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
Jan 26 17:41:02 carton kernel: PM: Registering ACPI NVS region [mem 0xbd512000-0xbdab2fff] (5902336 bytes)
Jan 26 17:41:02 carton kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jan 26 17:41:02 carton kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Jan 26 17:41:02 carton kernel: pinctrl core: initialized pinctrl subsystem
Jan 26 17:41:02 carton kernel: PM: RTC time: 15:40:56, date: 2021-01-26
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 16
Jan 26 17:41:02 carton kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Jan 26 17:41:02 carton kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jan 26 17:41:02 carton kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jan 26 17:41:02 carton kernel: audit: initializing netlink subsys (disabled)
Jan 26 17:41:02 carton kernel: audit: type=2000 audit(1611675655.153:1): state=initialized audit_enabled=0 res=1
Jan 26 17:41:02 carton kernel: thermal_sys: Registered thermal governor 'fair_share'
Jan 26 17:41:02 carton kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 26 17:41:02 carton kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 26 17:41:02 carton kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 26 17:41:02 carton kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jan 26 17:41:02 carton kernel: cpuidle: using governor ladder
Jan 26 17:41:02 carton kernel: cpuidle: using governor menu
Jan 26 17:41:02 carton kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jan 26 17:41:02 carton kernel: ACPI: bus type PCI registered
Jan 26 17:41:02 carton kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 26 17:41:02 carton kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jan 26 17:41:02 carton kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jan 26 17:41:02 carton kernel: PCI: Using configuration type 1 for base access
Jan 26 17:41:02 carton kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jan 26 17:41:02 carton kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Module Device)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Processor Device)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jan 26 17:41:02 carton kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jan 26 17:41:02 carton kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP0.SWUS], AE_NOT_FOUND (20200925/dswload2-162)
Jan 26 17:41:02 carton kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20200925/psobject-220)
Jan 26 17:41:02 carton kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Jan 26 17:41:02 carton kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP0.SWUS.SWDS], AE_NOT_FOUND (20200925/dswload2-162)
Jan 26 17:41:02 carton kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20200925/psobject-220)
Jan 26 17:41:02 carton kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Jan 26 17:41:02 carton kernel: ACPI: 8 ACPI AML tables successfully acquired and loaded
Jan 26 17:41:02 carton kernel: ACPI: EC: EC started
Jan 26 17:41:02 carton kernel: ACPI: EC: interrupt blocked
Jan 26 17:41:02 carton kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 26 17:41:02 carton kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jan 26 17:41:02 carton kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jan 26 17:41:02 carton kernel: ACPI: Interpreter enabled
Jan 26 17:41:02 carton kernel: ACPI: (supports S0 S3 S4 S5)
Jan 26 17:41:02 carton kernel: ACPI: Using IOAPIC for interrupt routing
Jan 26 17:41:02 carton kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 26 17:41:02 carton kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
Jan 26 17:41:02 carton kernel: ACPI: Power Resource [PG00] (on)
Jan 26 17:41:02 carton kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jan 26 17:41:02 carton kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jan 26 17:41:02 carton kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jan 26 17:41:02 carton kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jan 26 17:41:02 carton kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jan 26 17:41:02 carton kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Jan 26 17:41:02 carton kernel: PCI host bridge to bus 0000:00
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jan 26 17:41:02 carton kernel: pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: [1022:15d1] type 00 class 0x080600
Jan 26 17:41:02 carton kernel: pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1: [1022:15d3] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: [1022:15d3] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: [1022:15d3] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: [1022:15dc] type 01 class 0x060400
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Jan 26 17:41:02 carton kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Jan 26 17:41:02 carton kernel: pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: [10de:1f91] type 00 class 0x030000
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: reg 0x24: [io  0xf000-0xf07f]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Jan 26 17:41:02 carton kernel: pci 0000:01:00.1: [10de:10fa] type 00 class 0x040300
Jan 26 17:41:02 carton kernel: pci 0000:01:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [mem 0xf6000000-0xf70fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: reg 0x10: [io  0xe000-0xe0ff]
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: reg 0x18: [mem 0xf7904000-0xf7904fff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: reg 0x20: [mem 0xf7900000-0xf7903fff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: supports D1 D2
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: PCI bridge to [bus 02]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2:   bridge window [io  0xe000-0xefff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2:   bridge window [mem 0xf7900000-0xf79fffff]
Jan 26 17:41:02 carton kernel: pci 0000:03:00.0: [1c5c:1327] type 00 class 0x010802
Jan 26 17:41:02 carton kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf7800000-0xf7803fff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:03:00.0: supports D1
Jan 26 17:41:02 carton kernel: pci 0000:03:00.0: PME# supported from D0 D1 D3hot
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: PCI bridge to [bus 03]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3:   bridge window [mem 0xf7800000-0xf78fffff]
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: [10ec:c821] type 00 class 0x028000
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: reg 0x10: [io  0xd000-0xd0ff]
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: reg 0x18: [mem 0xf7700000-0xf770ffff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: supports D1 D2
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: PCI bridge to [bus 04]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7:   bridge window [io  0xd000-0xdfff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7:   bridge window [mem 0xf7700000-0xf77fffff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: [1002:15d8] type 00 class 0x030000
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: reg 0x20: [io  0xc000-0xc0ff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: reg 0x24: [mem 0xf7500000-0xf757ffff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: BAR 0: assigned to efifb
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: PME# supported from D1 D2 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:05:00.2: [1022:15df] type 00 class 0x108000
Jan 26 17:41:02 carton kernel: pci 0000:05:00.2: reg 0x18: [mem 0xf7400000-0xf74fffff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.2: reg 0x24: [mem 0xf7588000-0xf7589fff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.2: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: [1022:15e0] type 00 class 0x0c0330
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: reg 0x10: [mem 0xf7300000-0xf73fffff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: [1022:15e1] type 00 class 0x0c0330
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: reg 0x10: [mem 0xf7200000-0xf72fffff 64bit]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:05:00.6: [1022:15e3] type 00 class 0x040300
Jan 26 17:41:02 carton kernel: pci 0000:05:00.6: reg 0x10: [mem 0xf7580000-0xf7587fff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.6: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:05:00.6: PME# supported from D0 D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: PCI bridge to [bus 05]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [io  0xc000-0xcfff]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [mem 0xf7200000-0xf75fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:06:00.0: [1022:7901] type 00 class 0x010601
Jan 26 17:41:02 carton kernel: pci 0000:06:00.0: reg 0x24: [mem 0xf7600000-0xf76007ff]
Jan 26 17:41:02 carton kernel: pci 0000:06:00.0: enabling Extended Tags
Jan 26 17:41:02 carton kernel: pci 0000:06:00.0: PME# supported from D3hot D3cold
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: PCI bridge to [bus 06]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2:   bridge window [mem 0xf7600000-0xf76fffff]
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
Jan 26 17:41:02 carton kernel: ACPI: EC: interrupt unblocked
Jan 26 17:41:02 carton kernel: ACPI: EC: event unblocked
Jan 26 17:41:02 carton kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 26 17:41:02 carton kernel: ACPI: EC: GPE=0x3
Jan 26 17:41:02 carton kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot ECDT EC initialization complete
Jan 26 17:41:02 carton kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
Jan 26 17:41:02 carton kernel: iommu: Default domain type: Translated 
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: vgaarb: setting as boot VGA device
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: vgaarb: bridge control possible
Jan 26 17:41:02 carton kernel: vgaarb: loaded
Jan 26 17:41:02 carton kernel: SCSI subsystem initialized
Jan 26 17:41:02 carton kernel: libata version 3.00 loaded.
Jan 26 17:41:02 carton kernel: ACPI: bus type USB registered
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver usbfs
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver hub
Jan 26 17:41:02 carton kernel: usbcore: registered new device driver usb
Jan 26 17:41:02 carton kernel: pps_core: LinuxPPS API ver. 1 registered
Jan 26 17:41:02 carton kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jan 26 17:41:02 carton kernel: PTP clock support registered
Jan 26 17:41:02 carton kernel: EDAC MC: Ver: 3.0.0
Jan 26 17:41:02 carton kernel: Registered efivars operations
Jan 26 17:41:02 carton kernel: NetLabel: Initializing
Jan 26 17:41:02 carton kernel: NetLabel:  domain hash size = 128
Jan 26 17:41:02 carton kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jan 26 17:41:02 carton kernel: NetLabel:  unlabeled traffic allowed by default
Jan 26 17:41:02 carton kernel: PCI: Using ACPI for IRQ routing
Jan 26 17:41:02 carton kernel: PCI: pci_cache_line_size set to 64 bytes
Jan 26 17:41:02 carton kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0x09e02000-0x0bffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0xb7fae000-0xb7ffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0xbab1c000-0xbbffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0xbc003000-0xbfffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0xbf000000-0xbfffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0x237000000-0x237ffffff]
Jan 26 17:41:02 carton kernel: e820: reserve RAM buffer [mem 0x23f340000-0x23fffffff]
Jan 26 17:41:02 carton kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jan 26 17:41:02 carton kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Jan 26 17:41:02 carton kernel: clocksource: Switched to clocksource tsc-early
Jan 26 17:41:02 carton kernel: VFS: Disk quotas dquot_6.6.0
Jan 26 17:41:02 carton kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 26 17:41:02 carton kernel: pnp: PnP ACPI init
Jan 26 17:41:02 carton kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
Jan 26 17:41:02 carton kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Jan 26 17:41:02 carton kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x04d0-0x04d1] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x040b] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x04d6] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c00-0x0c01] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c14] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c50-0x0c51] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c52] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c6c] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0c6f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0cd0-0x0cd1] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0cd2-0x0cd3] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0cd4-0x0cd5] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0cd6-0x0cd7] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0cd8-0x0cdf] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0800-0x089f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0b00-0x0b0f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0b20-0x0b3f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0900-0x090f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [io  0x0910-0x091f] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfec01000-0xfec01fff] could not be reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfedc0000-0xfedc0fff] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfed80000-0xfed8ffff] could not be reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: [mem 0xff000000-0xffffffff] has been reserved
Jan 26 17:41:02 carton kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 26 17:41:02 carton kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
Jan 26 17:41:02 carton kernel: pnp: PnP ACPI: found 4 devices
Jan 26 17:41:02 carton kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 2
Jan 26 17:41:02 carton kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jan 26 17:41:02 carton kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jan 26 17:41:02 carton kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Jan 26 17:41:02 carton kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jan 26 17:41:02 carton kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Jan 26 17:41:02 carton kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 26 17:41:02 carton kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 1
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 44
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [io  0xf000-0xffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [mem 0xf6000000-0xf70fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: PCI bridge to [bus 02]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2:   bridge window [io  0xe000-0xefff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2:   bridge window [mem 0xf7900000-0xf79fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: PCI bridge to [bus 03]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3:   bridge window [mem 0xf7800000-0xf78fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: PCI bridge to [bus 04]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7:   bridge window [io  0xd000-0xdfff]
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7:   bridge window [mem 0xf7700000-0xf77fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: PCI bridge to [bus 05]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [io  0xc000-0xcfff]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [mem 0xf7200000-0xf75fffff]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: PCI bridge to [bus 06]
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2:   bridge window [mem 0xf7600000-0xf76fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
Jan 26 17:41:02 carton kernel: pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:02: resource 1 [mem 0xf7900000-0xf79fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:03: resource 1 [mem 0xf7800000-0xf78fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:04: resource 1 [mem 0xf7700000-0xf77fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:05: resource 1 [mem 0xf7200000-0xf75fffff]
Jan 26 17:41:02 carton kernel: pci_bus 0000:05: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
Jan 26 17:41:02 carton kernel: pci_bus 0000:06: resource 1 [mem 0xf7600000-0xf76fffff]
Jan 26 17:41:02 carton kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: extending delay after power-on from D3hot to 20 msec
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: extending delay after power-on from D3hot to 20 msec
Jan 26 17:41:02 carton kernel: PCI: CLS 64 bytes, default 64
Jan 26 17:41:02 carton kernel: Trying to unpack rootfs image as initramfs...
Jan 26 17:41:02 carton kernel: Freeing initrd memory: 28332K
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: AMD-Vi: Unable to read/write to IOMMU perf counter.
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: can't derive routing for PCI INT A
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: PCI INT A: not connected
Jan 26 17:41:02 carton kernel: pci 0000:00:01.0: Adding to iommu group 0
Jan 26 17:41:02 carton kernel: pci 0000:00:01.1: Adding to iommu group 1
Jan 26 17:41:02 carton kernel: pci 0000:00:01.2: Adding to iommu group 2
Jan 26 17:41:02 carton kernel: pci 0000:00:01.3: Adding to iommu group 3
Jan 26 17:41:02 carton kernel: pci 0000:00:01.7: Adding to iommu group 4
Jan 26 17:41:02 carton kernel: pci 0000:00:08.0: Adding to iommu group 5
Jan 26 17:41:02 carton kernel: pci 0000:00:08.1: Adding to iommu group 6
Jan 26 17:41:02 carton kernel: pci 0000:00:08.2: Adding to iommu group 5
Jan 26 17:41:02 carton kernel: pci 0000:00:14.0: Adding to iommu group 7
Jan 26 17:41:02 carton kernel: pci 0000:00:14.3: Adding to iommu group 7
Jan 26 17:41:02 carton kernel: pci 0000:00:18.0: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.1: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.2: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.3: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.4: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.5: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.6: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:00:18.7: Adding to iommu group 8
Jan 26 17:41:02 carton kernel: pci 0000:01:00.0: Adding to iommu group 9
Jan 26 17:41:02 carton kernel: pci 0000:01:00.1: Adding to iommu group 9
Jan 26 17:41:02 carton kernel: pci 0000:02:00.0: Adding to iommu group 10
Jan 26 17:41:02 carton kernel: pci 0000:03:00.0: Adding to iommu group 11
Jan 26 17:41:02 carton kernel: pci 0000:04:00.0: Adding to iommu group 12
Jan 26 17:41:02 carton kernel: pci 0000:05:00.0: Adding to iommu group 13
Jan 26 17:41:02 carton kernel: pci 0000:05:00.2: Adding to iommu group 14
Jan 26 17:41:02 carton kernel: pci 0000:05:00.3: Adding to iommu group 14
Jan 26 17:41:02 carton kernel: pci 0000:05:00.4: Adding to iommu group 14
Jan 26 17:41:02 carton kernel: pci 0000:05:00.6: Adding to iommu group 14
Jan 26 17:41:02 carton kernel: pci 0000:06:00.0: Adding to iommu group 5
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Jan 26 17:41:02 carton kernel: pci 0000:00:00.2: AMD-Vi: Extended features (0x4f77ef22294ada):
Jan 26 17:41:02 carton kernel:  PPR NX GT IA GA PC GA_vAPIC
Jan 26 17:41:02 carton kernel: AMD-Vi: Interrupt remapping enabled
Jan 26 17:41:02 carton kernel: AMD-Vi: Virtual APIC enabled
Jan 26 17:41:02 carton kernel: AMD-Vi: Lazy IO/TLB flushing enabled
Jan 26 17:41:02 carton kernel: amd_uncore: 4  amd_df counters detected
Jan 26 17:41:02 carton kernel: amd_uncore: 6  amd_l3 counters detected
Jan 26 17:41:02 carton kernel: check: Scanning for low memory corruption every 60 seconds
Jan 26 17:41:02 carton kernel: Initialise system trusted keyrings
Jan 26 17:41:02 carton kernel: Key type blacklist registered
Jan 26 17:41:02 carton kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Jan 26 17:41:02 carton kernel: zbud: loaded
Jan 26 17:41:02 carton kernel: Key type asymmetric registered
Jan 26 17:41:02 carton kernel: Asymmetric key parser 'x509' registered
Jan 26 17:41:02 carton kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Jan 26 17:41:02 carton kernel: io scheduler mq-deadline registered
Jan 26 17:41:02 carton kernel: io scheduler kyber registered
Jan 26 17:41:02 carton kernel: io scheduler bfq registered
Jan 26 17:41:02 carton kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 26
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 26
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.2: PME: Signaling with IRQ 27
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.2: AER: enabled with IRQ 27
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.3: PME: Signaling with IRQ 28
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 28
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.7: PME: Signaling with IRQ 29
Jan 26 17:41:02 carton kernel: pcieport 0000:00:01.7: AER: enabled with IRQ 29
Jan 26 17:41:02 carton kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 30
Jan 26 17:41:02 carton kernel: pcieport 0000:00:08.2: PME: Signaling with IRQ 31
Jan 26 17:41:02 carton kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jan 26 17:41:02 carton kernel: efifb: probing for efifb
Jan 26 17:41:02 carton kernel: efifb: showing boot graphics
Jan 26 17:41:02 carton kernel: efifb: framebuffer at 0xe0000000, using 8128k, total 8128k
Jan 26 17:41:02 carton kernel: efifb: mode is 1920x1080x32, linelength=7680, pages=1
Jan 26 17:41:02 carton kernel: efifb: scrolling: redraw
Jan 26 17:41:02 carton kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jan 26 17:41:02 carton kernel: fbcon: Deferring console take-over
Jan 26 17:41:02 carton kernel: fb0: EFI VGA frame buffer device
Jan 26 17:41:02 carton kernel: ACPI: AC Adapter [AC0] (on-line)
Jan 26 17:41:02 carton kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jan 26 17:41:02 carton kernel: ACPI: Power Button [PWRB]
Jan 26 17:41:02 carton kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Jan 26 17:41:02 carton kernel: ACPI: Lid Switch [LID]
Jan 26 17:41:02 carton kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Jan 26 17:41:02 carton kernel: ACPI: Sleep Button [SLPB]
Jan 26 17:41:02 carton kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Jan 26 17:41:02 carton kernel: ACPI: Power Button [PWRF]
Jan 26 17:41:02 carton kernel: Monitor-Mwait will be used to enter C-1 state
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P000: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P001: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P002: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P003: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P004: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P005: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P006: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI: \_PR_.P007: Found 2 idle states
Jan 26 17:41:02 carton kernel: ACPI Warning: \_TZ.THRM._PSL: Return Package type mismatch at index 0 - found Integer, expected Reference (20200925/nspredef-258)
Jan 26 17:41:02 carton kernel: ACPI: Invalid passive threshold
Jan 26 17:41:02 carton kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jan 26 17:41:02 carton kernel: ACPI: Thermal Zone [THRM] (49 C)
Jan 26 17:41:02 carton kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 26 17:41:02 carton kernel: Non-volatile memory driver v1.3
Jan 26 17:41:02 carton kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Jan 26 17:41:02 carton kernel: nvme nvme0: pci function 0000:03:00.0
Jan 26 17:41:02 carton kernel: ahci 0000:06:00.0: version 3.0
Jan 26 17:41:02 carton kernel: nvme nvme0: 16/0/0 default/read/poll queues
Jan 26 17:41:02 carton kernel: ahci 0000:06:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x2 impl SATA mode
Jan 26 17:41:02 carton kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part ems 
Jan 26 17:41:02 carton kernel: scsi host0: ahci
Jan 26 17:41:02 carton kernel: scsi host1: ahci
Jan 26 17:41:02 carton kernel: ata1: DUMMY
Jan 26 17:41:02 carton kernel: ata2: SATA max UDMA/133 abar m2048@0xf7600000 port 0xf7600180 irq 34
Jan 26 17:41:02 carton kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 26 17:41:02 carton kernel: ehci-pci: EHCI PCI platform driver
Jan 26 17:41:02 carton kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 26 17:41:02 carton kernel: ohci-pci: OHCI PCI platform driver
Jan 26 17:41:02 carton kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver usbserial_generic
Jan 26 17:41:02 carton kernel: usbserial: USB Serial support registered for generic
Jan 26 17:41:02 carton kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Jan 26 17:41:02 carton kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Jan 26 17:41:02 carton kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 26 17:41:02 carton kernel: rtc_cmos 00:01: RTC can wake from S4
Jan 26 17:41:02 carton kernel: rtc_cmos 00:01: registered as rtc0
Jan 26 17:41:02 carton kernel: rtc_cmos 00:01: setting system clock to 2021-01-26T15:40:56 UTC (1611675656)
Jan 26 17:41:02 carton kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jan 26 17:41:02 carton kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jan 26 17:41:02 carton kernel:  nvme0n1: p1 p2 p3 p4
Jan 26 17:41:02 carton kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Jan 26 17:41:02 carton kernel: pstore: Registered efi as persistent store backend
Jan 26 17:41:02 carton kernel: hid: raw HID events driver (C) Jiri Kosina
Jan 26 17:41:02 carton kernel: drop_monitor: Initializing network drop monitor service
Jan 26 17:41:02 carton kernel: Initializing XFRM netlink socket
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 10
Jan 26 17:41:02 carton kernel: Segment Routing with IPv6
Jan 26 17:41:02 carton kernel: RPL Segment Routing with IPv6
Jan 26 17:41:02 carton kernel: NET: Registered protocol family 17
Jan 26 17:41:02 carton kernel: microcode: CPU0: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU1: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU2: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU3: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU4: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU5: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU6: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: CPU7: patch_level=0x08108102
Jan 26 17:41:02 carton kernel: microcode: Microcode Update Driver: v2.2.
Jan 26 17:41:02 carton kernel: IPI shorthand broadcast: enabled
Jan 26 17:41:02 carton kernel: sched_clock: Marking stable (1154423256, 167035964)->(1352792008, -31332788)
Jan 26 17:41:02 carton kernel: registered taskstats version 1
Jan 26 17:41:02 carton kernel: Loading compiled-in X.509 certificates
Jan 26 17:41:02 carton kernel: Loaded X.509 cert 'Build time autogenerated kernel key: aed923ec1b071e17c3821b20e4e656453b59199b'
Jan 26 17:41:02 carton kernel: zswap: loaded using pool lz4/z3fold
Jan 26 17:41:02 carton kernel: Key type ._fscrypt registered
Jan 26 17:41:02 carton kernel: Key type .fscrypt registered
Jan 26 17:41:02 carton kernel: Key type fscrypt-provisioning registered
Jan 26 17:41:02 carton kernel: pstore: Using crash dump compression: zstd
Jan 26 17:41:02 carton kernel: PM:   Magic number: 5:646:690
Jan 26 17:41:02 carton kernel: mem mem: hash matches
Jan 26 17:41:02 carton kernel: RAS: Correctable Errors collector initialized.
Jan 26 17:41:02 carton kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Jan 26 17:41:02 carton kernel: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jan 26 17:41:02 carton kernel: ata2.00: ATA-10: ST1000LM035-1RK172, SDM4, max UDMA/133
Jan 26 17:41:02 carton kernel: ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Jan 26 17:41:02 carton kernel: ata2.00: configured for UDMA/133
Jan 26 17:41:02 carton kernel: scsi 1:0:0:0: Direct-Access     ATA      ST1000LM035-1RK1 SDM4 PQ: 0 ANSI: 5
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] 4096-byte physical blocks
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] Write Protect is off
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jan 26 17:41:02 carton kernel:  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
Jan 26 17:41:02 carton kernel: sd 1:0:0:0: [sda] Attached SCSI disk
Jan 26 17:41:02 carton kernel: Freeing unused decrypted memory: 2036K
Jan 26 17:41:02 carton kernel: Freeing unused kernel image (initmem) memory: 1716K
Jan 26 17:41:02 carton kernel: Write protecting the kernel read-only data: 26624k
Jan 26 17:41:02 carton kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Jan 26 17:41:02 carton kernel: Freeing unused kernel image (rodata/data gap) memory: 1384K
Jan 26 17:41:02 carton kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 26 17:41:02 carton kernel: rodata_test: all tests were successful
Jan 26 17:41:02 carton kernel: Run /init as init process
Jan 26 17:41:02 carton kernel:   with arguments:
Jan 26 17:41:02 carton kernel:     /init
Jan 26 17:41:02 carton kernel:   with environment:
Jan 26 17:41:02 carton kernel:     HOME=/
Jan 26 17:41:02 carton kernel:     TERM=linux
Jan 26 17:41:02 carton kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
Jan 26 17:41:02 carton kernel: fbcon: Taking over console
Jan 26 17:41:02 carton kernel: Console: switching to colour frame buffer device 240x67
Jan 26 17:41:02 carton kernel: ACPI: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
Jan 26 17:41:02 carton kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1c/LNXVIDEO:01/input/input5
Jan 26 17:41:02 carton kernel: acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: xHCI Host Controller
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 1
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
Jan 26 17:41:02 carton kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jan 26 17:41:02 carton kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 26 17:41:02 carton kernel: usb usb1: Product: xHCI Host Controller
Jan 26 17:41:02 carton kernel: usb usb1: Manufacturer: Linux 5.10.10-arch1-1 xhci-hcd
Jan 26 17:41:02 carton kernel: usb usb1: SerialNumber: 0000:05:00.3
Jan 26 17:41:02 carton kernel: hub 1-0:1.0: USB hub found
Jan 26 17:41:02 carton kernel: hub 1-0:1.0: 4 ports detected
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: xHCI Host Controller
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: new USB bus registered, assigned bus number 2
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Jan 26 17:41:02 carton kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Jan 26 17:41:02 carton kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jan 26 17:41:02 carton kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 26 17:41:02 carton kernel: usb usb2: Product: xHCI Host Controller
Jan 26 17:41:02 carton kernel: usb usb2: Manufacturer: Linux 5.10.10-arch1-1 xhci-hcd
Jan 26 17:41:02 carton kernel: usb usb2: SerialNumber: 0000:05:00.3
Jan 26 17:41:02 carton kernel: hub 2-0:1.0: USB hub found
Jan 26 17:41:02 carton kernel: hub 2-0:1.0: 4 ports detected
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: xHCI Host Controller
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 3
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
Jan 26 17:41:02 carton kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
Jan 26 17:41:02 carton kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 26 17:41:02 carton kernel: usb usb3: Product: xHCI Host Controller
Jan 26 17:41:02 carton kernel: usb usb3: Manufacturer: Linux 5.10.10-arch1-1 xhci-hcd
Jan 26 17:41:02 carton kernel: usb usb3: SerialNumber: 0000:05:00.4
Jan 26 17:41:02 carton kernel: hub 3-0:1.0: USB hub found
Jan 26 17:41:02 carton kernel: hub 3-0:1.0: 2 ports detected
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: xHCI Host Controller
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: new USB bus registered, assigned bus number 4
Jan 26 17:41:02 carton kernel: xhci_hcd 0000:05:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Jan 26 17:41:02 carton kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Jan 26 17:41:02 carton kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
Jan 26 17:41:02 carton kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 26 17:41:02 carton kernel: usb usb4: Product: xHCI Host Controller
Jan 26 17:41:02 carton kernel: usb usb4: Manufacturer: Linux 5.10.10-arch1-1 xhci-hcd
Jan 26 17:41:02 carton kernel: usb usb4: SerialNumber: 0000:05:00.4
Jan 26 17:41:02 carton kernel: hub 4-0:1.0: USB hub found
Jan 26 17:41:02 carton kernel: hub 4-0:1.0: 1 port detected
Jan 26 17:41:02 carton kernel: cryptd: max_cpu_qlen set to 1000
Jan 26 17:41:02 carton kernel: AVX2 version of gcm_enc/dec engaged.
Jan 26 17:41:02 carton kernel: AES CTR mode by8 optimization enabled
Jan 26 17:41:02 carton kernel: tsc: Refined TSC clocksource calibration: 2096.062 MHz
Jan 26 17:41:02 carton kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e36a88731c, max_idle_ns: 440795269020 ns
Jan 26 17:41:02 carton kernel: clocksource: Switched to clocksource tsc
Jan 26 17:41:02 carton kernel: random: fast init done
Jan 26 17:41:02 carton kernel: usb 1-2: new full-speed USB device number 2 using xhci_hcd
Jan 26 17:41:02 carton kernel: usb 3-1: new high-speed USB device number 2 using xhci_hcd
Jan 26 17:41:02 carton kernel: usb 1-2: New USB device found, idVendor=1b80, idProduct=b503, bcdDevice= 1.00
Jan 26 17:41:02 carton kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 26 17:41:02 carton kernel: usb 1-2: Product: Gaming Mouse
Jan 26 17:41:02 carton kernel: usb 1-2: Manufacturer: GAMDIAS
Jan 26 17:41:02 carton kernel: input: GAMDIAS Gaming Mouse as /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.0/0003:1B80:B503.0001/input/input6
Jan 26 17:41:02 carton kernel: hid-generic 0003:1B80:B503.0001: input,hidraw0: USB HID v1.11 Mouse [GAMDIAS Gaming Mouse] on usb-0000:05:00.3-2/input0
Jan 26 17:41:02 carton kernel: usb 3-1: New USB device found, idVendor=13d3, idProduct=56a2, bcdDevice=19.02
Jan 26 17:41:02 carton kernel: usb 3-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
Jan 26 17:41:02 carton kernel: usb 3-1: Product: USB2.0 HD UVC WebCam
Jan 26 17:41:02 carton kernel: usb 3-1: Manufacturer: Azurewave
Jan 26 17:41:02 carton kernel: usb 3-1: SerialNumber: 0x0001
Jan 26 17:41:02 carton kernel: input: GAMDIAS Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.1/0003:1B80:B503.0002/input/input8
Jan 26 17:41:02 carton kernel: input: GAMDIAS Gaming Mouse Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:05:00.3/usb1/1-2/1-2:1.1/0003:1B80:B503.0002/input/input9
Jan 26 17:41:02 carton kernel: hid-generic 0003:1B80:B503.0002: input,hiddev96,hidraw1: USB HID v1.11 Keyboard [GAMDIAS Gaming Mouse] on usb-0000:05:00.3-2/input1
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver usbhid
Jan 26 17:41:02 carton kernel: usbhid: USB HID core driver
Jan 26 17:41:02 carton kernel: usb 1-4: new full-speed USB device number 3 using xhci_hcd
Jan 26 17:41:02 carton kernel: usb 3-2: new high-speed USB device number 3 using xhci_hcd
Jan 26 17:41:02 carton kernel: usb 3-2: New USB device found, idVendor=125f, idProduct=c82a, bcdDevice= 1.00
Jan 26 17:41:02 carton kernel: usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 26 17:41:02 carton kernel: usb 3-2: Product: ADATA USB Flash Drive
Jan 26 17:41:02 carton kernel: usb 3-2: Manufacturer: ADATA
Jan 26 17:41:02 carton kernel: usb 3-2: SerialNumber: 5ee6fc6679a131
Jan 26 17:41:02 carton kernel: usb 1-4: New USB device found, idVendor=13d3, idProduct=3530, bcdDevice= 1.10
Jan 26 17:41:02 carton kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jan 26 17:41:02 carton kernel: usb 1-4: Product: Bluetooth Radio 
Jan 26 17:41:02 carton kernel: usb 1-4: Manufacturer: Realtek 
Jan 26 17:41:02 carton kernel: usb 1-4: SerialNumber: 00e04c000001
Jan 26 17:41:02 carton kernel: usb-storage 3-2:1.0: USB Mass Storage device detected
Jan 26 17:41:02 carton kernel: scsi host2: usb-storage 3-2:1.0
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver usb-storage
Jan 26 17:41:02 carton kernel: usbcore: registered new interface driver uas
Jan 26 17:41:02 carton kernel: EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
Jan 26 17:41:02 carton kernel: scsi 2:0:0:0: Direct-Access     ADATA    USB Flash Drive  0.00 PQ: 0 ANSI: 2
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] 3947079 512-byte logical blocks: (2.02 GB/1.88 GiB)
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] Write Protect is off
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 00 00 00
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] Asking for cache data failed
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] Assuming drive cache: write through
Jan 26 17:41:02 carton kernel:  sdb: sdb1
Jan 26 17:41:02 carton kernel: sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jan 26 17:41:02 carton kernel: random: crng init done
Jan 26 17:41:02 carton systemd[1]: systemd 247.2-1-arch running in system mode. (+PAM +AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Jan 26 17:41:02 carton systemd[1]: Detected architecture x86-64.
Jan 26 17:41:02 carton systemd[1]: Set hostname to <carton>.
Jan 26 17:41:02 carton systemd[1]: Queued start job for default target Graphical Interface.
Jan 26 17:41:02 carton systemd[1]: Created slice system-getty.slice.
Jan 26 17:41:02 carton systemd[1]: Created slice system-modprobe.slice.
Jan 26 17:41:02 carton systemd[1]: Created slice User and Session Slice.
Jan 26 17:41:02 carton systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jan 26 17:41:02 carton systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jan 26 17:41:02 carton systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jan 26 17:41:02 carton systemd[1]: Reached target Local Encrypted Volumes.
Jan 26 17:41:02 carton systemd[1]: Reached target Login Prompts.
Jan 26 17:41:02 carton systemd[1]: Reached target Remote File Systems.
Jan 26 17:41:02 carton systemd[1]: Reached target Slices.
Jan 26 17:41:02 carton systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jan 26 17:41:02 carton systemd[1]: Listening on Process Core Dump Socket.
Jan 26 17:41:02 carton systemd[1]: Listening on Journal Audit Socket.
Jan 26 17:41:02 carton systemd[1]: Listening on Journal Socket (/dev/log).
Jan 26 17:41:02 carton systemd[1]: Listening on Journal Socket.
Jan 26 17:41:02 carton systemd[1]: Listening on udev Control Socket.
Jan 26 17:41:02 carton systemd[1]: Listening on udev Kernel Socket.
Jan 26 17:41:02 carton systemd[1]: Mounting Huge Pages File System...
Jan 26 17:41:02 carton systemd[1]: Mounting POSIX Message Queue File System...
Jan 26 17:41:02 carton systemd[1]: Mounting Kernel Debug File System...
Jan 26 17:41:02 carton systemd[1]: Mounting Kernel Trace File System...
Jan 26 17:41:02 carton systemd[1]: Starting Create list of static device nodes for the current kernel...
Jan 26 17:41:02 carton systemd[1]: Starting Load Kernel Module configfs...
Jan 26 17:41:02 carton systemd[1]: Starting Load Kernel Module drm...
Jan 26 17:41:02 carton systemd[1]: Starting Load Kernel Module fuse...
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jan 26 17:41:02 carton systemd[1]: Starting Journal Service...
Jan 26 17:41:02 carton systemd[1]: Starting Load Kernel Modules...
Jan 26 17:41:02 carton systemd[1]: Starting Remount Root and Kernel File Systems...
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Jan 26 17:41:02 carton systemd[1]: Starting Coldplug All udev Devices...
Jan 26 17:41:02 carton systemd[1]: Finished Create list of static device nodes for the current kernel.
Jan 26 17:41:02 carton systemd[1]: Mounted Kernel Debug File System.
Jan 26 17:41:02 carton kernel: EXT4-fs (sda7): re-mounted. Opts: (null)
Jan 26 17:41:02 carton systemd[1]: Finished Remount Root and Kernel File Systems.
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Jan 26 17:41:02 carton kernel: fuse: init (API version 7.32)
Jan 26 17:41:02 carton kernel: Linux agpgart interface v0.103
Jan 26 17:41:02 carton systemd-journald[252]: Journal started
Jan 26 17:41:02 carton systemd-journald[252]: Runtime Journal (/run/log/journal/96d4ca5675644baea29f08e8ba3a8b4f) is 8.0M, max 391.1M, 383.1M free.
Jan 26 17:41:02 carton systemd-modules-load[253]: Inserted module 'crypto_user'
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jan 26 17:41:02 carton 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'
Jan 26 17:41:02 carton systemd[1]: Starting Load/Save Random Seed...
Jan 26 17:41:02 carton systemd[1]: Condition check resulted in Create System Users being skipped.
Jan 26 17:41:02 carton systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 26 17:41:02 carton systemd[1]: Started Journal Service.
Jan 26 17:41:02 carton kernel: audit: type=1130 audit(1611675662.827: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'
Jan 26 17:41:02 carton systemd[1]: Mounted Huge Pages File System.
Jan 26 17:41:02 carton systemd[1]: Mounted POSIX Message Queue File System.
Jan 26 17:41:02 carton systemd[1]: Mounted Kernel Trace File System.
Jan 26 17:41:02 carton systemd[1]: modprobe@configfs.service: Succeeded.
Jan 26 17:41:02 carton systemd[1]: Finished Load Kernel Module configfs.
Jan 26 17:41:02 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton systemd[1]: modprobe@fuse.service: Succeeded.
Jan 26 17:41:02 carton systemd[1]: Finished Load Kernel Module fuse.
Jan 26 17:41:02 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton systemd[1]: Finished Load Kernel Modules.
Jan 26 17:41:02 carton 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'
Jan 26 17:41:02 carton systemd[1]: Mounting FUSE Control File System...
Jan 26 17:41:02 carton kernel: audit: type=1130 audit(1611675662.830:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1131 audit(1611675662.830:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1130 audit(1611675662.830:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1131 audit(1611675662.830:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1130 audit(1611675662.830:7): 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'
Jan 26 17:41:02 carton systemd[1]: Mounting Kernel Configuration File System...
Jan 26 17:41:02 carton systemd[1]: Starting Flush Journal to Persistent Storage...
Jan 26 17:41:02 carton systemd[1]: Starting Apply Kernel Variables...
Jan 26 17:41:02 carton systemd[1]: Mounted FUSE Control File System.
Jan 26 17:41:02 carton systemd[1]: Mounted Kernel Configuration File System.
Jan 26 17:41:02 carton systemd[1]: modprobe@drm.service: Succeeded.
Jan 26 17:41:02 carton systemd[1]: Finished Load Kernel Module drm.
Jan 26 17:41:02 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1130 audit(1611675662.880:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton kernel: audit: type=1131 audit(1611675662.880:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton systemd-journald[252]: Time spent on flushing to /var/log/journal/96d4ca5675644baea29f08e8ba3a8b4f is 17.032ms for 916 entries.
Jan 26 17:41:02 carton systemd-journald[252]: System Journal (/var/log/journal/96d4ca5675644baea29f08e8ba3a8b4f) is 296.1M, max 4.0G, 3.7G free.
Jan 26 17:41:08 carton kernel: audit: type=1130 audit(1611675662.894:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:08 carton kernel: audit: type=1130 audit(1611675662.897:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:08 carton kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Jan 26 17:41:08 carton kernel: input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input10
Jan 26 17:41:08 carton kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xbd4bd000-0xbd4bdfff flags 0x200] vs bd4bd000 4000
Jan 26 17:41:08 carton kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xbd4c1000-0xbd4c1fff flags 0x200] vs bd4c1000 4000
Jan 26 17:41:08 carton kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Jan 26 17:41:08 carton kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Jan 26 17:41:08 carton kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Jan 26 17:41:08 carton kernel: i2c_hid i2c-ELAN1200:00: supply vdd not found, using dummy regulator
Jan 26 17:41:08 carton kernel: i2c_hid i2c-ELAN1200:00: supply vddl not found, using dummy regulator
Jan 26 17:41:08 carton kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Jan 26 17:41:08 carton kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
Jan 26 17:41:08 carton kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
Jan 26 17:41:08 carton kernel: ccp 0000:05:00.2: ccp enabled
Jan 26 17:41:08 carton kernel: ccp 0000:05:00.2: psp: unable to access the device: you might be running a broken BIOS.
Jan 26 17:41:08 carton kernel: input: ELAN1200:00 04F3:30BA Mouse as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input11
Jan 26 17:41:08 carton kernel: input: ELAN1200:00 04F3:30BA Touchpad as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input12
Jan 26 17:41:08 carton kernel: hid-generic 0018:04F3:30BA.0003: input,hidraw2: I2C HID v1.00 Mouse [ELAN1200:00 04F3:30BA] on i2c-ELAN1200:00
Jan 26 17:41:08 carton kernel: mousedev: PS/2 mouse device common for all mice
Jan 26 17:41:08 carton kernel: r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
Jan 26 17:41:08 carton kernel: asus_wmi: ASUS WMI generic driver loaded
Jan 26 17:41:08 carton kernel: libphy: r8169: probed
Jan 26 17:41:08 carton kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, d4:5d:64:62:f3:09, XID 541, IRQ 74
Jan 26 17:41:08 carton kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Jan 26 17:41:08 carton kernel: asus_wmi: Initialization: 0x1
Jan 26 17:41:08 carton kernel: asus_wmi: BIOS WMI version: 8.1
Jan 26 17:41:08 carton kernel: asus_wmi: SFUN value: 0x4a0061
Jan 26 17:41:08 carton kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
Jan 26 17:41:08 carton kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
Jan 26 17:41:08 carton kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jan 26 17:41:08 carton kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input13
Jan 26 17:41:08 carton kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jan 26 17:41:08 carton kernel: battery: new extension: ASUS Battery Extension
Jan 26 17:41:08 carton kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jan 26 17:41:08 carton kernel: cfg80211: failed to load regulatory.db
Jan 26 17:41:08 carton kernel: input: PC Speaker as /devices/platform/pcspkr/input/input14
Jan 26 17:41:08 carton kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
Jan 26 17:41:08 carton kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Jan 26 17:41:08 carton kernel: mc: Linux media interface: v0.10
Jan 26 17:41:08 carton kernel: Bluetooth: Core ver 2.22
Jan 26 17:41:08 carton kernel: NET: Registered protocol family 31
Jan 26 17:41:08 carton kernel: Bluetooth: HCI device and connection manager initialized
Jan 26 17:41:08 carton kernel: Bluetooth: HCI socket layer initialized
Jan 26 17:41:08 carton kernel: Bluetooth: L2CAP socket layer initialized
Jan 26 17:41:08 carton kernel: Bluetooth: SCO socket layer initialized
Jan 26 17:41:08 carton kernel: usbcore: registered new interface driver btusb
Jan 26 17:41:08 carton kernel: rtw_8821ce 0000:04:00.0: enabling device (0000 -> 0003)
Jan 26 17:41:08 carton kernel: videodev: Linux video capture interface: v2.00
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Jan 26 17:41:08 carton kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Jan 26 17:41:08 carton kernel: rtw_8821ce 0000:04:00.0: Firmware version 24.5.0, H2C version 12
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: uvcvideo: Found UVC 1.00 device USB2.0 HD UVC WebCam (13d3:56a2)
Jan 26 17:41:08 carton kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input15
Jan 26 17:41:08 carton kernel: input: USB2.0 HD UVC WebCam: USB2.0 HD as /devices/pci0000:00/0000:00:08.1/0000:05:00.4/usb3/3-1/3-1:1.0/input/input19
Jan 26 17:41:08 carton kernel: MCE: In-kernel MCE decoding enabled.
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
Jan 26 17:41:08 carton kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input16
Jan 26 17:41:08 carton kernel: rtw_8821ce 0000:04:00.0 wlp4s0: renamed from wlan0
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:      Headset Mic=0x19
Jan 26 17:41:08 carton kernel: snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
Jan 26 17:41:08 carton kernel: usbcore: registered new interface driver uvcvideo
Jan 26 17:41:08 carton kernel: USB Video Class driver (1.1.1)
Jan 26 17:41:08 carton kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input17
Jan 26 17:41:08 carton kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input18
Jan 26 17:41:08 carton kernel: input: ELAN1200:00 04F3:30BA Mouse as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input22
Jan 26 17:41:08 carton kernel: input: ELAN1200:00 04F3:30BA Touchpad as /devices/platform/AMDI0010:01/i2c-0/i2c-ELAN1200:00/0018:04F3:30BA.0003/input/input23
Jan 26 17:41:08 carton kernel: hid-multitouch 0018:04F3:30BA.0003: input,hidraw2: I2C HID v1.00 Mouse [ELAN1200:00 04F3:30BA] on i2c-ELAN1200:00
Jan 26 17:41:08 carton kernel: input: HD-Audio Generic Headset Mic as /devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1/input20
Jan 26 17:41:08 carton kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:05:00.6/sound/card1/input21
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: [drm] amdgpu kernel modesetting enabled.
Jan 26 17:41:08 carton kernel: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: ATPX version 1, functions 0x00000001
Jan 26 17:41:08 carton kernel: ATPX Hybrid Graphics
Jan 26 17:41:08 carton kernel: amdgpu: Topology: Add APU node [0x0:0x0]
Jan 26 17:41:08 carton kernel: checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
Jan 26 17:41:08 carton kernel: fb0: switching to amdgpudrmfb from EFI VGA
Jan 26 17:41:08 carton kernel: Console: switching to colour dummy device 80x25
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: vgaarb: deactivate vga console
Jan 26 17:41:08 carton kernel: [drm] initializing kernel modesetting (RAVEN 0x1002:0x15D8 0x1043:0x18F1 0xC2).
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
Jan 26 17:41:08 carton kernel: [drm] register mmio base: 0xF7500000
Jan 26 17:41:08 carton kernel: [drm] register mmio size: 524288
Jan 26 17:41:08 carton kernel: [drm] add ip block number 0 <soc15_common>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 1 <gmc_v9_0>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 2 <vega10_ih>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 3 <psp>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 4 <gfx_v9_0>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 5 <sdma_v4_0>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 6 <powerplay>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 7 <dm>
Jan 26 17:41:08 carton kernel: [drm] add ip block number 8 <vcn_v1_0>
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: kvm: disabled by bios
Jan 26 17:41:08 carton kernel: [drm] BIOS signature incorrect 0 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: Fetched VBIOS from ROM BAR
Jan 26 17:41:08 carton kernel: amdgpu: ATOM BIOS: 113-PICASSO-114
Jan 26 17:41:08 carton kernel: Adding 2097148k swap on /dev/sda6.  Priority:-2 extents:1 across:2097148k FS
Jan 26 17:41:08 carton kernel: EDAC amd64: F17h_M10h detected (node 0).
Jan 26 17:41:08 carton kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Jan 26 17:41:08 carton kernel: [drm] VCN decode is enabled in VM mode
Jan 26 17:41:08 carton kernel: [drm] VCN encode is enabled in VM mode
Jan 26 17:41:08 carton kernel: [drm] JPEG decode is enabled in VM mode
Jan 26 17:41:08 carton kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: VRAM: 128M 0x000000F400000000 - 0x000000F407FFFFFF (128M used)
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
Jan 26 17:41:08 carton kernel: [drm] Detected VRAM RAM=128M, BAR=128M
Jan 26 17:41:08 carton kernel: [drm] RAM width 64bits DDR4
Jan 26 17:41:08 carton kernel: [TTM] Zone  kernel: Available graphics memory: 4005262 KiB
Jan 26 17:41:08 carton kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
Jan 26 17:41:08 carton kernel: [TTM] Initializing pool allocator
Jan 26 17:41:08 carton kernel: [TTM] Initializing DMA pool allocator
Jan 26 17:41:08 carton kernel: [drm] amdgpu: 128M of VRAM memory ready
Jan 26 17:41:08 carton kernel: [drm] amdgpu: 3072M of GTT memory ready.
Jan 26 17:41:08 carton kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Jan 26 17:41:08 carton kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
Jan 26 17:41:08 carton kernel: amdgpu: hwmgr_sw_init smu backed is smu10_smu
Jan 26 17:41:08 carton kernel: [drm] Found VCN firmware Version ENC: 1.12 DEC: 2 VEP: 0 Revision: 1
Jan 26 17:41:08 carton kernel: [drm] PSP loading VCN firmware
Jan 26 17:41:08 carton kernel: [drm] reserve 0x400000 from 0xf407c00000 for PSP TMR
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: RAS: optional ras ta ucode is not available
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: RAP: optional rap ta ucode is not available
Jan 26 17:41:08 carton kernel: [drm] kiq ring mec 2 pipe 1 q 0
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB: values for F clock
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         400000 in kHz, 2874 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         933000 in kHz, 3224 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         1067000 in kHz, 3924 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         1200000 in kHz, 4074 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB: values for DCF clock
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         300000 in kHz, 2874 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         600000 in kHz, 3224 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         626000 in kHz, 3924 in mV
Jan 26 17:41:08 carton kernel: [drm] DM_PPLIB:         654000 in kHz, 4074 in mV
Jan 26 17:41:08 carton kernel: [drm] Display Core initialized with v3.2.104!
Jan 26 17:41:08 carton kernel: [drm] VCN decode and encode initialized successfully(under SPG Mode).
Jan 26 17:41:08 carton kernel: kfd kfd: Allocated 3969056 bytes on gart
Jan 26 17:41:08 carton kernel: amdgpu: Topology: Add APU node [0x15d8:0x1002]
Jan 26 17:41:08 carton kernel: kfd kfd: added device 1002:15d8
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
Jan 26 17:41:08 carton kernel: [drm] fb mappable at 0x237BCA000
Jan 26 17:41:08 carton kernel: [drm] vram apper at 0x237000000
Jan 26 17:41:08 carton kernel: [drm] size 8294400
Jan 26 17:41:08 carton kernel: [drm] fb depth is 24
Jan 26 17:41:08 carton kernel: [drm]    pitch is 7680
Jan 26 17:41:08 carton kernel: fbcon: amdgpudrmfb (fb0) is primary device
Jan 26 17:41:08 carton kernel: Console: switching to colour frame buffer device 240x67
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: [drm] fb0: amdgpudrmfb frame buffer device
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
Jan 26 17:41:08 carton kernel: amdgpu 0000:05:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
Jan 26 17:41:08 carton kernel: [drm] Initialized amdgpu 3.40.0 20150101 for 0000:05:00.0 on minor 0
Jan 26 17:41:02 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton 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'
Jan 26 17:41:03 carton 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'
Jan 26 17:41:03 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:03 carton audit: BPF prog-id=13 op=LOAD
Jan 26 17:41:03 carton audit: BPF prog-id=14 op=LOAD
Jan 26 17:41:04 carton 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'
Jan 26 17:41:06 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:06 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:asus-nb-wmi comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:06 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@leds:asus::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:07 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:amdgpu_bl0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:02 carton systemd[1]: Finished Coldplug All udev Devices.
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jan 26 17:41:02 carton systemd-sysctl[263]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jan 26 17:41:02 carton systemd[1]: Finished Apply Kernel Variables.
Jan 26 17:41:03 carton systemd[1]: Finished Load/Save Random Seed.
Jan 26 17:41:03 carton systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 26 17:41:03 carton systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 26 17:41:03 carton systemd[1]: Reached target Local File Systems (Pre).
Jan 26 17:41:03 carton systemd[1]: Condition check resulted in Virtual Machine and Container Storage (Compatibility) being skipped.
Jan 26 17:41:03 carton systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jan 26 17:41:04 carton systemd[1]: Started Rule-based Manager for Device Events and Files.
Jan 26 17:41:05 carton systemd-udevd[278]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 26 17:41:06 carton systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jan 26 17:41:06 carton systemd[1]: Starting Load/Save RF Kill Switch Status...
Jan 26 17:41:06 carton systemd-udevd[276]: Using default interface naming scheme 'v247'.
Jan 26 17:41:08 carton 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'
Jan 26 17:41:06 carton systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Jan 26 17:41:06 carton systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:asus-nb-wmi...
Jan 26 17:41:06 carton systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight...
Jan 26 17:41:06 carton systemd-udevd[276]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 26 17:41:06 carton systemd-udevd[271]: Using default interface naming scheme 'v247'.
Jan 26 17:41:06 carton systemd-udevd[291]: Using default interface naming scheme 'v247'.
Jan 26 17:41:06 carton systemd-udevd[291]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Create System Users being skipped.
Jan 26 17:41:06 carton systemd-udevd[271]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 26 17:41:06 carton systemd-udevd[271]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 26 17:41:06 carton systemd[1]: Started Load/Save RF Kill Switch Status.
Jan 26 17:41:06 carton systemd[1]: Found device ST1000LM035-1RK172 6.
Jan 26 17:41:06 carton systemd[1]: Activating swap /dev/disk/by-uuid/810bfcca-f381-43de-bc56-39f61aea773e...
Jan 26 17:41:06 carton systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:asus-nb-wmi.
Jan 26 17:41:06 carton systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight.
Jan 26 17:41:06 carton systemd[1]: Activated swap /dev/disk/by-uuid/810bfcca-f381-43de-bc56-39f61aea773e.
Jan 26 17:41:06 carton systemd[1]: Reached target Swap.
Jan 26 17:41:06 carton systemd[1]: Mounting Temporary Directory (/tmp)...
Jan 26 17:41:06 carton systemd[1]: Mounted Temporary Directory (/tmp).
Jan 26 17:41:06 carton systemd[1]: Reached target Local File Systems.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jan 26 17:41:06 carton systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jan 26 17:41:07 carton systemd-udevd[269]: controlC1: Process '/usr/bin/alsactl restore 1' failed with exit code 99.
Jan 26 17:41:08 carton kernel: kauditd_printk_skb: 9 callbacks suppressed
Jan 26 17:41:08 carton kernel: audit: type=1130 audit(1611675668.840:21): 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'
Jan 26 17:41:07 carton systemd-udevd[289]: controlC0: Process '/usr/bin/alsactl restore 0' failed with exit code 99.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Rebuild Dynamic Linker Cache being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in First Boot Wizard being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
Jan 26 17:41:07 carton systemd[1]: Condition check resulted in Create System Users being skipped.
Jan 26 17:41:07 carton systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0...
Jan 26 17:41:07 carton systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0.
Jan 26 17:41:08 carton systemd[1]: Finished Flush Journal to Persistent Storage.
Jan 26 17:41:08 carton systemd[1]: Starting Create Volatile Files and Directories...
Jan 26 17:41:09 carton kernel: nvidia: loading out-of-tree module taints kernel.
Jan 26 17:41:09 carton kernel: nvidia: module license 'NVIDIA' taints kernel.
Jan 26 17:41:09 carton kernel: Disabling lock debugging due to kernel taint
Jan 26 17:41:09 carton kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Jan 26 17:41:09 carton kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 234
Jan 26 17:41:09 carton kernel: 
Jan 26 17:41:09 carton kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Jan 26 17:41:09 carton kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
Jan 26 17:41:09 carton kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  460.32.03  Sun Dec 27 19:00:34 UTC 2020
Jan 26 17:41:09 carton systemd[1]: Finished Create Volatile Files and Directories.
Jan 26 17:41:09 carton 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'
Jan 26 17:41:09 carton systemd[1]: Condition check resulted in Rebuild Journal Catalog being skipped.
Jan 26 17:41:09 carton kernel: audit: type=1130 audit(1611675669.524:22): 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'
Jan 26 17:41:09 carton systemd[1]: Starting Network Time Synchronization...
Jan 26 17:41:09 carton systemd[1]: Condition check resulted in Update is Completed being skipped.
Jan 26 17:41:09 carton systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jan 26 17:41:09 carton kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  460.32.03  Sun Dec 27 18:51:11 UTC 2020
Jan 26 17:41:09 carton audit[393]: SYSTEM_BOOT pid=393 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton kernel: audit: type=1127 audit(1611675669.547:23): pid=393 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Jan 26 17:41:09 carton kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
Jan 26 17:41:09 carton systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Jan 26 17:41:09 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton kernel: audit: type=1130 audit(1611675669.617:24): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton systemd[1]: Started Network Time Synchronization.
Jan 26 17:41:09 carton systemd[1]: Reached target System Initialization.
Jan 26 17:41:09 carton systemd[1]: Started CUPS Scheduler.
Jan 26 17:41:09 carton systemd[1]: Started Daily Cleanup of Temporary Directories.
Jan 26 17:41:09 carton systemd[1]: Reached target Paths.
Jan 26 17:41:09 carton systemd[1]: Reached target System Time Set.
Jan 26 17:41:09 carton systemd[1]: Reached target System Time Synchronized.
Jan 26 17:41:09 carton kernel: audit: type=1130 audit(1611675669.764:25): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton systemd[1]: Started Daily man-db regeneration.
Jan 26 17:41:09 carton systemd[1]: Started Daily verification of password and group files.
Jan 26 17:41:09 carton systemd[1]: Reached target Timers.
Jan 26 17:41:09 carton systemd[1]: Listening on CUPS Scheduler.
Jan 26 17:41:09 carton systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 26 17:41:09 carton systemd[1]: Reached target Sockets.
Jan 26 17:41:09 carton systemd[1]: Reached target Basic System.
Jan 26 17:41:09 carton systemd[1]: Condition check resulted in Save/Restore Sound Card State being skipped.
Jan 26 17:41:09 carton systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Jan 26 17:41:09 carton systemd[1]: Reached target Sound Card.
Jan 26 17:41:09 carton systemd[1]: Starting Bluetooth service...
Jan 26 17:41:09 carton systemd[1]: Started D-Bus System Message Bus.
Jan 26 17:41:09 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton kernel: audit: type=1130 audit(1611675669.784:26): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:09 carton systemd[1]: Starting Network Manager...
Jan 26 17:41:09 carton audit: BPF prog-id=15 op=LOAD
Jan 26 17:41:09 carton audit: BPF prog-id=16 op=LOAD
Jan 26 17:41:09 carton kernel: audit: type=1334 audit(1611675669.787:27): prog-id=15 op=LOAD
Jan 26 17:41:09 carton kernel: audit: type=1334 audit(1611675669.787:28): prog-id=16 op=LOAD
Jan 26 17:41:09 carton systemd[1]: Starting User Login Management...
Jan 26 17:41:09 carton systemd-logind[399]: New seat seat0.
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event3 (Power Button)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event0 (Power Button)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event1 (Lid Switch)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event2 (Sleep Button)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event7 (GAMDIAS Gaming Mouse Keyboard)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event8 (GAMDIAS Gaming Mouse Consumer Control)
Jan 26 17:41:09 carton systemd-logind[399]: Watching system buttons on /dev/input/event4 (AT Translated Set 2 keyboard)
Jan 26 17:41:10 carton bluetoothd[396]: Bluetooth daemon 5.55
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRPageScanType” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRPageScanInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRPageScanWindow” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanType” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRInquiryScanWindow” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRLinkSupervisionTimeout” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRPageTimeout” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRMinSniffInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “BRMaxSniffInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEMinAdvertisementInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEMaxAdvertisementInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEMultiAdvertisementRotationInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalAutoConnect” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanWindowAutoConnect” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalSuspend” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanWindowSuspend” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalDiscovery” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanWindowDiscovery” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalAdvMonitor” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanWindowAdvMonitor” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanIntervalConnect” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEScanWindowConnect” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEMinConnectionInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEMaxConnectionInterval” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEConnectionLatency” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEConnectionSupervisionTimeout” in group “Controller”
Jan 26 17:41:10 carton bluetoothd[396]: src/main.c:parse_controller_config() Key file does not have key “LEAutoconnecttimeout” in group “Controller”
Jan 26 17:41:10 carton systemd[1]: Started User Login Management.
Jan 26 17:41:10 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:10 carton systemd[1]: Started Bluetooth service.
Jan 26 17:41:10 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:10 carton systemd[1]: Reached target Bluetooth.
Jan 26 17:41:10 carton kernel: audit: type=1130 audit(1611675670.537:29): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:10 carton kernel: audit: type=1130 audit(1611675670.537:30): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:10 carton bluetoothd[396]: Starting SDP server
Jan 26 17:41:10 carton kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jan 26 17:41:10 carton kernel: Bluetooth: BNEP filters: protocol multicast
Jan 26 17:41:10 carton kernel: Bluetooth: BNEP socket layer initialized
Jan 26 17:41:10 carton bluetoothd[396]: Bluetooth management interface 1.18 initialized
Jan 26 17:41:10 carton dbus-daemon[397]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.3' (uid=0 pid=396 comm="/usr/lib/bluetooth/bluetoothd ")
Jan 26 17:41:10 carton audit: BPF prog-id=17 op=LOAD
Jan 26 17:41:10 carton audit: BPF prog-id=18 op=LOAD
Jan 26 17:41:10 carton systemd[1]: Starting Hostname Service...
Jan 26 17:41:10 carton kernel: NET: Registered protocol family 38
Jan 26 17:41:10 carton dbus-daemon[397]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jan 26 17:41:10 carton systemd[1]: Started Hostname Service.
Jan 26 17:41:10 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:11 carton systemd[1]: systemd-rfkill.service: Succeeded.
Jan 26 17:41:11 carton audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.3426] NetworkManager (version 1.28.1dev+7+g3f5df3cdc6-1) is starting... (for the first time)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.3427] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Jan 26 17:41:11 carton systemd[1]: Started Network Manager.
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.3863] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jan 26 17:41:11 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:11 carton systemd[1]: Reached target Network.
Jan 26 17:41:11 carton systemd[1]: Starting Permit User Sessions...
Jan 26 17:41:11 carton systemd[1]: Finished Permit User Sessions.
Jan 26 17:41:11 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:11 carton systemd[1]: Reached target Multi-User System.
Jan 26 17:41:11 carton systemd[1]: Starting Light Display Manager...
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4694] manager[0x562a432f0030]: monitoring kernel firmware directory '/lib/firmware'.
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4722] hostname: hostname: using hostnamed
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4723] hostname: hostname changed from (none) to "carton"
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4753] dns-mgr[0x562a432b0220]: init: dns=default,systemd-resolved rc-manager=symlink (auto)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4766] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:01.7/0000:04:00.0/ieee80211/phy0/rfkill1) (driver rtw_8821ce)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4770] manager[0x562a432f0030]: rfkill: Wi-Fi hardware radio set enabled
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.4770] manager[0x562a432f0030]: rfkill: WWAN hardware radio set enabled
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.7397] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-wwan.so)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.8162] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-bluetooth.so)
Jan 26 17:41:11 carton systemd[1]: Started Light Display Manager.
Jan 26 17:41:11 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:11 carton systemd[1]: Reached target Graphical Interface.
Jan 26 17:41:11 carton systemd[1]: Startup finished in 14.229s (firmware) + 8.944s (loader) + 4.830s (kernel) + 11.667s (userspace) = 39.672s.
Jan 26 17:41:11 carton lightdm[428]: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.9772] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-team.so)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.9830] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-wifi.so)
Jan 26 17:41:11 carton NetworkManager[398]: <info>  [1611675671.9845] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-ovs.so)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.0025] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.28.1dev+7+g3f5df3cdc6-1/libnm-device-plugin-adsl.so)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.0031] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.0032] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.0033] manager: Networking is enabled by state file
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.0046] dhcp-init: Using DHCP client 'internal'
Jan 26 17:41:12 carton dbus-daemon[397]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.5' (uid=0 pid=398 comm="/usr/bin/NetworkManager --no-daemon ")
Jan 26 17:41:12 carton systemd[1]: Starting Network Manager Script Dispatcher Service...
Jan 26 17:41:12 carton dbus-daemon[397]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jan 26 17:41:12 carton systemd[1]: Started Network Manager Script Dispatcher Service.
Jan 26 17:41:12 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2094] settings: Loaded settings plugin: keyfile (internal)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2526] device (lo): carrier: link connected
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2530] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2545] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2570] settings: (enp2s0): created default wired connection 'Wired connection 1'
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.2579] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jan 26 17:41:12 carton kernel: Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.4406] device (wlp4s0): driver supports Access Point (AP) mode
Jan 26 17:41:12 carton kernel: r8169 0000:02:00.0 enp2s0: Link is Down
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.4416] manager: (wlp4s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.4429] device (wlp4s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jan 26 17:41:12 carton kernel: rtw_8821ce 0000:04:00.0: start vif 70:66:55:a5:07:d5 on port 0
Jan 26 17:41:12 carton kernel: rtw_8821ce 0000:04:00.0: stop vif 70:66:55:a5:07:d5 on port 0
Jan 26 17:41:12 carton NetworkManager[398]: <info>  [1611675672.9246] device (wlp4s0): set-hw-addr: set MAC address to 9A:4B:13:C0:DF:80 (scanning)
Jan 26 17:41:13 carton kernel: rtw_8821ce 0000:04:00.0: start vif 9a:4b:13:c0:df:80 on port 0
Jan 26 17:41:13 carton dbus-daemon[397]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.5' (uid=0 pid=398 comm="/usr/bin/NetworkManager --no-daemon ")
Jan 26 17:41:13 carton systemd[1]: Starting WPA supplicant...
Jan 26 17:41:13 carton NetworkManager[398]: <info>  [1611675673.5237] ovsdb: Could not connect: No such file or directory
Jan 26 17:41:13 carton dbus-daemon[397]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jan 26 17:41:13 carton wpa_supplicant[438]: Successfully initialized wpa_supplicant
Jan 26 17:41:13 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:13 carton systemd[1]: Started WPA supplicant.
Jan 26 17:41:13 carton wpa_supplicant[438]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jan 26 17:41:13 carton NetworkManager[398]: <info>  [1611675673.9212] device (wlp4s0): supplicant interface state: internal-starting -> disconnected
Jan 26 17:41:13 carton NetworkManager[398]: <info>  [1611675673.9213] device (wlp4s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jan 26 17:41:15 carton wpa_supplicant[438]: wlp4s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Jan 26 17:41:18 carton kernel: ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20200925/nsarguments-61)
Jan 26 17:41:20 carton kernel: kauditd_printk_skb: 9 callbacks suppressed
Jan 26 17:41:20 carton kernel: audit: type=1701 audit(1611675680.910:40): auid=4294967295 uid=0 gid=0 ses=4294967295 pid=434 comm="Xorg" exe="/usr/lib/Xorg" sig=6 res=1
Jan 26 17:41:20 carton audit[434]: ANOM_ABEND auid=4294967295 uid=0 gid=0 ses=4294967295 pid=434 comm="Xorg" exe="/usr/lib/Xorg" sig=6 res=1
Jan 26 17:41:20 carton systemd[1]: Created slice system-systemd\x2dcoredump.slice.
Jan 26 17:41:20 carton audit: BPF prog-id=19 op=LOAD
Jan 26 17:41:20 carton audit: BPF prog-id=20 op=LOAD
Jan 26 17:41:20 carton systemd[1]: Started Process Core Dump (PID 457/UID 0).
Jan 26 17:41:20 carton audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-457-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:20 carton kernel: audit: type=1334 audit(1611675680.970:41): prog-id=19 op=LOAD
Jan 26 17:41:20 carton kernel: audit: type=1334 audit(1611675680.970:42): prog-id=20 op=LOAD
Jan 26 17:41:20 carton kernel: audit: type=1130 audit(1611675680.970:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-457-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 26 17:41:21 carton systemd-coredump[458]: Process 434 (Xorg) of user 0 dumped core.
                                              
                                              Stack trace of thread 434:
                                              #0  0x00007fd109ae1615 raise (libc.so.6 + 0x3d615)
                                              #1  0x00007fd109aca862 abort (libc.so.6 + 0x26862)
                                              #2  0x0000556d23d326ea OsAbort (Xorg + 0x14a6ea)
                                              #3  0x0000556d23d341b1 FatalError (Xorg + 0x14c1b1)
                                              #4  0x0000556d23d39e09 n/a (Xorg + 0x151e09)
                                              #5  0x00007fd109ae16a0 __restore_rt (libc.so.6 + 0x3d6a0)
                                              #6  0x00007fd108dbbe86 amdgpu_bo_export (libdrm_amdgpu.so.1 + 0x3e86)
                                              #7  0x00007fd0ba1dc11a n/a (amdgpu_dri.so + 0x184511a)
                                              #8  0x00007fd0b9f275f3 n/a (amdgpu_dri.so + 0x15905f3)
                                              #9  0x00007fd0b9f396dd n/a (amdgpu_dri.so + 0x15a26dd)
                                              #10 0x00007fd0b9d168df n/a (amdgpu_dri.so + 0x137f8df)
                                              #11 0x00007fd0b9de01f3 eglCreateImageKHR (amdgpu_dri.so + 0x14491f3)
                                              #12 0x00007fd0fc259ae6 glamor_egl_create_textured_pixmap_from_gbm_bo (libglamoregl.so + 0xaae6)
                                              #13 0x00007fd108dd26b0 n/a (amdgpu_drv.so + 0xe6b0)
                                              #14 0x0000556d23d7bbfb n/a (Xorg + 0x193bfb)
                                              #15 0x0000556d23c21541 n/a (Xorg + 0x39541)
                                              #16 0x00007fd109acc152 __libc_start_main (libc.so.6 + 0x28152)
                                              #17 0x0000556d23c225de _start (Xorg + 0x3a5de)
                                              
                                              Stack trace of thread 442:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 446:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 449:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 448:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 452:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 444:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 439:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 445:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 451:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 441:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 447:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 450:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 453:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 443:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)
                                              
                                              Stack trace of thread 440:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)

Offline

#10 2021-01-26 16:18:12

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,613

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

After I removed xorg.conf, the xorg log was empty.

Jan 26 17:41:21 carton systemd-coredump[458]: Process 434 (Xorg) of user 0 dumped core.
                                              
                                              Stack trace of thread 434:
                                              #0  0x00007fd109ae1615 raise (libc.so.6 + 0x3d615)
                                              #1  0x00007fd109aca862 abort (libc.so.6 + 0x26862)
                                              #2  0x0000556d23d326ea OsAbort (Xorg + 0x14a6ea)
                                              #3  0x0000556d23d341b1 FatalError (Xorg + 0x14c1b1)
                                              #4  0x0000556d23d39e09 n/a (Xorg + 0x151e09)
                                              #5  0x00007fd109ae16a0 __restore_rt (libc.so.6 + 0x3d6a0)
                                              #6  0x00007fd108dbbe86 amdgpu_bo_export (libdrm_amdgpu.so.1 + 0x3e86)
                                              #7  0x00007fd0ba1dc11a n/a (amdgpu_dri.so + 0x184511a)
                                              #8  0x00007fd0b9f275f3 n/a (amdgpu_dri.so + 0x15905f3)
                                              #9  0x00007fd0b9f396dd n/a (amdgpu_dri.so + 0x15a26dd)
                                              #10 0x00007fd0b9d168df n/a (amdgpu_dri.so + 0x137f8df)
                                              #11 0x00007fd0b9de01f3 eglCreateImageKHR (amdgpu_dri.so + 0x14491f3)
                                              #12 0x00007fd0fc259ae6 glamor_egl_create_textured_pixmap_from_gbm_bo (libglamoregl.so + 0xaae6)
                                              #13 0x00007fd108dd26b0 n/a (amdgpu_drv.so + 0xe6b0)
                                              #14 0x0000556d23d7bbfb n/a (Xorg + 0x193bfb)
                                              #15 0x0000556d23c21541 n/a (Xorg + 0x39541)
                                              #16 0x00007fd109acc152 __libc_start_main (libc.so.6 + 0x28152)
                                              #17 0x0000556d23c225de _start (Xorg + 0x3a5de)
                                              
                                              Stack trace of thread 442:
                                              #0  0x00007fd1099996a2 pthread_cond_wait@@GLIBC_2.3.2 (libpthread.so.0 + 0xf6a2)
                                              #1  0x00007fd1070f6c4c n/a (radeonsi_dri.so + 0x4edc4c)
                                              #2  0x00007fd1070f5418 n/a (radeonsi_dri.so + 0x4ec418)
                                              #3  0x00007fd1099933e9 start_thread (libpthread.so.0 + 0x93e9)
                                              #4  0x00007fd109ba4293 __clone (libc.so.6 + 0x100293)

The X11 server crashed in the amdgpu driver.
https://bbs.archlinux.org/viewtopic.php … 9#p1917699 (amdgpu-pro-libgl interference) ?

Online

#11 2021-01-26 17:27:31

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

I see. Should I remove amdgpu-pro?

Offline

#12 2021-01-26 20:43:45

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,613

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

Yes. Idk. whether it's compatible w/ a hybrid stack at all, but you should certainly get the system to work w/o it first.

Online

#13 2021-01-26 21:42:15

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

That certainly did something. Now, with the generated xorg conf, both displays turn on. The integrated one works.
On the other hand, the monitor is active, i can take my mouse there and it changes to an 'X'. Xrandr doesn't to detect it, the only thing detecting it is nvidia-settings, but it isn't helpful.

Offline

#14 2021-01-26 21:47:46

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,613

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

You created this: https://wiki.archlinux.org/index.php/Mu … te_screens
Remove the xorg config and follow the previously linked PRIME wiki page.

Online

#15 2021-01-26 22:17:10

wawawiwo
Member
Registered: 2021-01-25
Posts: 8

Re: [SOLVED]Problem setting up multihead, only one display opens properly.

Indeed, it worked. Thank you so much. Guess i should read the wiki more before overly complicating my life : ^).

Offline

Board footer

Powered by FluxBB