You are not logged in.
I'm trying to do something convoluted, I'm not sure which bits are relevant, so here's a bit of an info dump to get started:
I'm trying to create a remote desktop connecting to xrdp using xorgxrdp for the backend via Microsoft Remote Desktop Connection. I'm trying to use xfce as the desktop environment, but I'm not tied to this - I just figured it'd be a good lightweight environment to figure out a proof of concept.
I'm using xorgxrdp-nvidia since I have a NVIDIA gpu, I think this is the issue, but I think I want the hardware acceleration, more on this later.
0. I'm using an ssh tunnel to connect to he server, seems to be working find, I don't think it's relevant.
1. I'm able to connect to the xrdp server on the client, I can get to the login screen and select between xorg, xvnc, etc. I also see the connection reflected in journalctl on the server.
2. I'm able to run xfce on the server (it's also a desktop) and it works normally.
3. I am not able to connect to the xorg server from the client.
- The xrdp GUI shows the error "X server could not be started"
- journalctl shows an error "SSL_read ... error:0A000126:SSL... unexpected eof while reading ... xrdp_sec_incoming: xrdp_mcs_incoming failed"
- the .xorgrdp.10.log has the error message "systemd-logind: failed to take device /dev/dri/card1: operation not permitted
Those are the most relevant errors I could pick out, but full logs are below.
A simple google search brings up similar results for posts https://bbs.archlinux.org/viewtopic.php?id=249230 andhttps://bbs.archlinux.org/viewtopic.php?id=264539, but I don't think they're related - at least from what I can tell.
I think this is either an xorg server config issue in which case I ask: How can I set different configs for the same user if I'm using different machines? How do I know how to configure the xorg.conf file for the remote desktop given I can't connect to it - I had to edit the server desktop's xorg.conf anyway since it detected a second monitor that I don't have anyway.
Otherwise it might be some kind of issue with my NVIDIA drivers and xorgxrdp-nvidia??? I don't know how I would tell.
I've been banging my head against this one for a few days, any help would be much appreciated.
CONFIGS:
xorg.conf
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
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 "Device"
Identifier "Card0"
Driver "nvidia"
BusID "PCI:1:0:0"
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 "SWcursor" # [<bool>]
#Option "kmsdev" # <str>
#Option "ShadowFB" # [<bool>]
#Option "AccelMethod" # <str>
#Option "PageFlip" # [<bool>]
#Option "ZaphodHeads" # <str>
#Option "DoubleShadow" # [<bool>]
#Option "Atomic" # [<bool>]
#Option "VariableRefresh" # [<bool>]
#Option "UseGammaLUT" # [<bool>]
#Option "AsyncFlipSecondaries" # [<bool>]
Identifier "Card1"
Driver "modesetting"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card1"
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
EndSectionxrdp.ini
[Globals]
; xrdp.ini file version number
ini_version=1
; fork a new process for each incoming connection
fork=true
; ports to listen on, number alone means listen on all interfaces
; 0.0.0.0 or :: if ipv6 is configured
; space between multiple occurrences
; ALL specified interfaces must be UP when xrdp starts, otherwise xrdp will fail to start
;
; Examples:
; port=3389
; port=unix://./tmp/xrdp.socket
; port=tcp://.:3389 127.0.0.1:3389
; port=tcp://:3389 *:3389
; port=tcp://<any ipv4 format addr>:3389 192.168.1.1:3389
; port=tcp6://.:3389 ::1:3389
; port=tcp6://:3389 *:3389
; port=tcp6://{<any ipv6 format addr>}:3389 {FC00:0:0:0:0:0:0:1}:3389
; port=vsock://<cid>:<port>
port=3389
; 'port' above should be connected to with vsock instead of tcp
; use this only with number alone in port above
; prefer use vsock://<cid>:<port> above
use_vsock=false
; regulate if the listening socket use socket option tcp_nodelay
; no buffering will be performed in the TCP stack
tcp_nodelay=true
; regulate if the listening socket use socket option keepalive
; if the network connection disappear without close messages the connection will be closed
tcp_keepalive=true
; set tcp send/recv buffer
; These parameters are largely historic. On systems with dynamic TCP
; buffer sizes, setting them manually will either impact performance or
; waste memory
#tcp_send_buffer_bytes=32768
#tcp_recv_buffer_bytes=32768
; security layer can be 'tls', 'rdp' or 'negotiate'
; for client compatible layer
security_layer=negotiate
; minimum security level allowed for client for classic RDP encryption
; use tls_ciphers to configure TLS encryption
; can be 'none', 'low', 'medium', 'high', 'fips'
crypt_level=high
; X.509 certificate and private key
; openssl req -x509 -newkey rsa:2048 -nodes -keyout key.pem -out cert.pem -days 365
certificate=
key_file=
; set SSL protocols
; can be comma separated list of 'SSLv3', 'TLSv1', 'TLSv1.1', 'TLSv1.2', 'TLSv1.3'
ssl_protocols=TLSv1.2, TLSv1.3
; set TLS cipher suites
#tls_ciphers=HIGH
; concats the domain name to the user if set for authentication with the separator
; for example when the server is multi homed with SSSd
#domain_user_separator=@
; The following options will override the keyboard layout settings.
; These options are for DEBUG and are not recommended for regular use.
#xrdp.override_keyboard_type=0x04
#xrdp.override_keyboard_subtype=0x01
#xrdp.override_keylayout=0x00000409
; Section name to use for automatic login if the client sends username
; and password. If empty, the domain name sent by the client is used.
; If empty and no domain name is given, the first suitable section in
; this file will be used.
autorun=
allow_channels=true
allow_multimon=true
bitmap_cache=true
bitmap_compression=true
bulk_compression=true
#hidelogwindow=true
max_bpp=32
new_cursors=true
; fastpath - can be 'input', 'output', 'both', 'none'
use_fastpath=both
; when true, userid/password *must* be passed on cmd line
#require_credentials=true
; when true, the userid will be used to try to authenticate
#enable_token_login=true
; You can set the PAM error text in a gateway setup (MAX 256 chars)
#pamerrortxt=change your password according to policy at http://url
;
; colors used by windows in RGB format
;
#black=000000
grey=e1e1e1
dark_grey=b4b4b4
blue=0078d7
dark_blue=0078d7
#white=ffffff
#red=ff0000
#green=00ff00
#background=626c72
;
; Select a default fv1 font
;
; This parameter is a comma-separated list of DPI:name pairs.
; The list is scanned from left-to-right. The font used is the first
; font whose DPI value is less-than-or-equal to the vertical DPI of
; the monitor used for the login screen.
#fv1_select=130:sans-18.fv1,0:sans-10.fv1
; Default DPI used for a monitor when that information is unknown
#default_dpi=96
;
; configure login screen
;
; Login Screen Window Title
#ls_title=My Login Title
; top level window background color in RGB format
ls_top_window_bg_color=003057
; width and height of login screen
;
; When the sans-10.fv1 font is selected, these values are in pixels.
; For other fonts, these values (and other size values) will be scaled
; appropriately to preserve the proportions of the login screen.
;
; The default height allows for about 5 fields to be comfortably displayed
; above the buttons at the bottom. To display more fields, make <ls_height>
; larger, and also increase <ls_btn_ok_y_pos> and <ls_btn_cancel_y_pos>
; below
;
ls_width=350
ls_height=360
; login screen background color in RGB format
ls_bg_color=f0f0f0
; optional background image filename. BMP format is always supported,
; but other formats will be supported if xrdp is build with imlib2
; The transform can be one of the following:-
; none : No transformation. Image is placed in bottom-right corner
; of the screen.
; scale : Image is scaled to the screen size. The image aspect
; ratio is not preserved.
; zoom : Image is scaled to the screen size. The image aspect
; ratio is preserved by clipping the image.
#ls_background_image=
#ls_background_transform=none
; logo
; full path to file or file in shared folder. BMP format is always supported,
; but other formats will be supported if xrdp is build with imlib2
; For transform values, see 'ls_background_transform'. The logo width and
; logo height are ignored for a transform of 'none'.
ls_logo_filename=
ls_logo_transform=scale
ls_logo_width=250
ls_logo_height=110
ls_logo_x_pos=55
ls_logo_y_pos=35
; for positioning labels such as username, password etc
ls_label_x_pos=30
ls_label_width=68
; for positioning text and combo boxes next to above labels
ls_input_x_pos=110
ls_input_width=210
; y pos for first label and combo box
ls_input_y_pos=158
; OK button
ls_btn_ok_x_pos=142
ls_btn_ok_y_pos=308
ls_btn_ok_width=85
ls_btn_ok_height=30
; Cancel button
ls_btn_cancel_x_pos=237
ls_btn_cancel_y_pos=308
ls_btn_cancel_width=85
ls_btn_cancel_height=30
[Logging]
; Note: Log levels can be any of: core, error, warning, info, debug, or trace
LogFile=xrdp.log
LogLevel=INFO
EnableSyslog=true
#SyslogLevel=INFO
#EnableConsole=false
#ConsoleLevel=INFO
#EnableProcessId=false
[LoggingPerLogger]
; Note: per logger configuration is only used if xrdp is built with
; --enable-devel-logging
#xrdp.c=INFO
#main()=INFO
[Channels]
; Channel names not listed here will be blocked by XRDP.
; You can block any channel by setting its value to false.
; IMPORTANT! All channels are not supported in all use
; cases even if you set all values to true.
; You can override these settings on each session type
; These settings are only used if allow_channels=true
rdpdr=true
rdpsnd=true
drdynvc=true
cliprdr=true
rail=true
xrdpvr=true
; for debugging xrdp, in section xrdp1, change port=-1 to this:
#port=/tmp/.xrdp/xrdp_display_10
;
; Session types
;
; Some session types such as Xorg and Xvnc start a display server.
; Startup command-line parameters for the display server are configured
; in sesman.ini. See and configure also sesman.ini.
[Xorg]
name=Xorg
lib=libxup.so
username=ask
password=ask
port=-1
code=20
[Xvnc]
name=Xvnc
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
port=-1
#xserverbpp=24
#delay_ms=2000
; Disable requested encodings to support buggy VNC servers
; (1 = ExtendedDesktopSize)
#disabled_encodings_mask=0
; Use this to connect to a chansrv instance created outside of sesman
; (e.g. as part of an x11vnc console session). Replace '0' with the
; display number of the session
#chansrvport=DISPLAY(0)
; Generic VNC Proxy
; Tailor this to specific hosts and VNC instances by specifying an ip
; and port and setting a suitable name.
[vnc-any]
name=vnc-any
lib=libvnc.so
ip=ask
port=ask5900
username=na
password=ask
#pamusername=asksame
#pampassword=asksame
#delay_ms=2000
; Generic RDP proxy using NeutrinoRDP
; Tailor this to specific hosts by specifying an ip and port and setting
; a suitable name.
[neutrinordp-any]
name=neutrinordp-any
; To use this section, you should build xrdp with configure option
; --enable-neutrinordp.
lib=libxrdpneutrinordp.so
ip=ask
port=ask3389
username=ask
password=ask
; Uncomment the following lines to enable PAM authentication for proxy
; connections.
#pamusername=ask
#pampassword=ask
; Currently NeutrinoRDP doesn't support dynamic resizing. Uncomment
; this line if you're using a client which does.
#enable_dynamic_resizing=false
; By default, performance settings requested by the RDP client are ignored
; and chosen by NeutrinoRDP. Uncomment this line to allow the user to
; select performance settings in the RDP client.
#perf.allow_client_experiencesettings=true
; Override any experience setting by uncommenting one or more of the
; following lines.
#perf.wallpaper=false
#perf.font_smoothing=false
#perf.desktop_composition=false
#perf.full_window_drag=false
#perf.menu_anims=false
#perf.themes=false
#perf.cursor_blink=false
; By default NeutrinoRDP supports cursor shadows. If this is giving
; you problems (e.g. cursor is a black rectangle) try disabling cursor
; shadows by uncommenting the following line.
#perf.cursor_shadow=false
; By default, NeutrinoRDP uses the keyboard layout of the remote RDP Server.
; If you want to tell the remote the keyboard layout of the RDP Client,
; by uncommenting the following line.
#neutrinordp.allow_client_keyboardLayout=true
; The following options will override the remote keyboard layout settings.
; These options are for DEBUG and are not recommended for regular use.
#neutrinordp.override_keyboardLayout_mask=0x0000FFFF
#neutrinordp.override_kbd_type=0x04
#neutrinordp.override_kbd_subtype=0x01
#neutrinordp.override_kbd_fn_keys=12
#neutrinordp.override_kbd_layout=0x00000409
; You can override the common channel settings for each session type
#channel.rdpdr=true
#channel.rdpsnd=true
#channel.drdynvc=true
#channel.cliprdr=true
#channel.rail=true
#channel.xrdpvr=truesesman.ini
;; See `man 5 sesman.ini` for details
[Globals]
; listening port
#ListenPort=sesman.socket
EnableUserWindowManager=true
; Give in relative path to user's home directory
UserWindowManager=startwm.sh
; Give in full path or relative path to /etc/xrdp
DefaultWindowManager=startwm.sh
; Give in full path or relative path to /etc/xrdp
ReconnectScript=reconnectwm.sh
[Security]
AllowRootLogin=true
MaxLoginRetry=4
TerminalServerUsers=tsusers
TerminalServerAdmins=tsadmins
; When AlwaysGroupCheck=false access will be permitted
; if the group TerminalServerUsers is not defined.
AlwaysGroupCheck=false
; When RestrictOutboundClipboard=all clipboard from the
; server is not pushed to the client.
; In addition, you can control text/file/image transfer restrictions
; respectively. It also accepts comma separated list such as text,file,image.
; To keep compatibility, some aliases are also available:
; true: an alias of all
; false: an alias of none
; yes: an alias of all
RestrictOutboundClipboard=none
; When RestrictInboundClipboard=all clipboard from the
; client is not pushed to the server.
; In addition, you can control text/file/image transfer restrictions
; respectively. It also accepts comma separated list such as text,file,image.
; To keep compatibility, some aliases are also available:
; true: an alias of all
; false: an alias of none
; yes: an alias of all
RestrictInboundClipboard=none
; Set to 'no' to prevent users from logging in with alternate shells
#AllowAlternateShell=true
; On Linux systems, the Xorg X11 server is normally invoked using
; no_new_privs to avoid problems if the executable is suid. This may,
; however, interfere with the use of security modules such as AppArmor.
; Leave this unset unless you need to disable it.
#XorgNoNewPrivileges=true
; Specify the group which is to have read access to the directory where
; local sockets for the session are created. This is normally the GID
; which the xrdp process runs as.
; Default is 'root'
#SessionSockdirGroup=root
[Sessions]
;; X11DisplayOffset - x11 display number offset
; Type: integer
; Default: 10
X11DisplayOffset=10
;; MaxSessions - maximum number of connections to an xrdp server
; Type: integer
; Default: 0
MaxSessions=50
;; MaxDisplayNumer - maximum number considered for an X display
; Type: integer
; Default: 63
;
; IANA only allocates TCP ports up to 6063 for X servers. If you are not
; allowing TCP connections to your X servers you may safely increase this
; number.
#MaxDisplayNumber=63
;; KillDisconnected - kill disconnected sessions
; Type: boolean
; Default: false
; if 1, true, or yes, every session will be killed within DisconnectedTimeLimit
; seconds after the user disconnects
KillDisconnected=false
;; DisconnectedTimeLimit (seconds) - wait before kill disconnected sessions
; Type: integer
; Default: 0
; if KillDisconnected is set to false, this value is ignored
DisconnectedTimeLimit=0
;; IdleTimeLimit (seconds) - wait before disconnect idle sessions
; Type: integer
; Default: 0
; Set to 0 to disable idle disconnection.
IdleTimeLimit=0
;; Policy - session allocation policy
;
; Type: enum [ "Default" | "Separate" | Combination from {UBDI} ]
; "Default" Currently same as "UB"
; "Separate" All sessions are separate. Sessions can never be rejoined,
; and will need to be cleaned up manually, or automatically
; by setting other sesman options.
;
; Combination options:-
; U Sessions are separated per user
; B Sessions are separated by bits-per-pixel
; D Sessions are separated by initial display size
; I Sessions are separated by IP address
;
; The options U and B are always active, and cannot be de-selected.
Policy=Default
[Logging]
; Note: Log levels can be any of: core, error, warning, info, debug, or trace
LogFile=xrdp-sesman.log
LogLevel=INFO
EnableSyslog=true
#SyslogLevel=INFO
#EnableConsole=false
#ConsoleLevel=INFO
#EnableProcessId=false
[LoggingPerLogger]
; Note: per logger configuration is only used if xrdp is built with
; --enable-devel-logging
#sesman.c=INFO
#main()=INFO
;
; Session definitions - startup command-line parameters for each session type
;
[Sessions]
KillDisconnected=true
DisconnectedTimeLimit=60
[Xorg]
; Specify the path of non-suid Xorg executable. It might differ depending
; on your distribution and version. Find out the appropriate path for your
; environment. The typical path is known as follows:
;
; Fedora 26 or later : param=/usr/libexec/Xorg
; Debian 9 or later : param=/usr/lib/xorg/Xorg
; Ubuntu 16.04 or later : param=/usr/lib/xorg/Xorg
; Arch Linux : param=/usr/lib/Xorg
; CentOS 7 : param=/usr/bin/Xorg or param=/usr/lib/Xorg
; CentOS 8 : param=/usr/libexec/Xorg
; FreeBSD (from 2022Q4) : param=/usr/local/libexec/Xorg
;
param=/usr/lib/Xorg
; Leave the rest parameters as-is unless you understand what will happen.
param=-config
param=xrdp/xorg_nvidia.conf
param=-noreset
param=-nolisten
param=tcp
param=-logfile
param=.xorgxrdp.%s.log
[Xvnc]
param=Xvnc
param=-bs
param=-nolisten
param=tcp
param=-localhost
param=-dpi
param=96
[Chansrv]
; drive redirection
; See sesman.ini(5) for the format of this parameter
#FuseMountName=/run/user/%u/thinclient_drives
#FuseMountName=/media/thinclient_drives/%U/thinclient_drives
FuseMountName=thinclient_drives
; this value allows only the user to access their own mapped drives.
; Make this more permissive (e.g. 022) if required.
FileUmask=077
; Can be used to disable FUSE functionality - see sesman.ini(5)
#EnableFuseMount=false
; Uncomment this line only if you are using GNOME 3 versions 3.29.92
; and up, and you wish to cut-paste files between Nautilus and Windows. Do
; not use this setting for GNOME 4, or other file managers
#UseNautilus3FlistFormat=true
; sound redirection
; workaround for Microsoft mstsc.exe to suppress noise.
; SoundNumSilentFramesAAC | SoundNumSilentFramesMP3 silent frames are sent before SNDC_CLOSE is sent.
; during SoundMsecDoNotSend mS after SNDC_CLOSE is sent, sound data is not send.
; depending on the environment, it might be necessary to increase values.
; Defaults: SoundNumSilentFramesAAC=4, SoundNumSilentFramesMP3=2, SoundMsecDoNotSend=1000
; If set to 0, this workaround is not applied.
#SoundNumSilentFramesAAC=4
#SoundNumSilentFramesMP3=2
#SoundMsecDoNotSend=1000
[ChansrvLogging]
; Note: one log file is created per display and the LogFile config value
; is ignored. The channel server log file names follow the naming convention:
; xrdp-chansrv.${DISPLAY}.log
;
; Note: Log levels can be any of: core, error, warning, info, debug, or trace
LogLevel=INFO
EnableSyslog=true
#SyslogLevel=INFO
#EnableConsole=false
#ConsoleLevel=INFO
#EnableProcessId=false
[ChansrvLoggingPerLogger]
; Note: per logger configuration is only used if xrdp is built with
; --enable-devel-logging
#chansrv.c=INFO
#main()=INFO
[SessionVariables]
PULSE_SCRIPT=/etc/xrdp/pulse/default.paLOGS:
journalctl:
May 16 21:41:38 hermes kernel: Linux version 6.8.9-arch1-2 (linux@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000
May 16 21:41:38 hermes kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
May 16 21:41:38 hermes kernel: BIOS-provided physical RAM map:
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000001011fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000000101b000-0x000000002bfb3fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002bfb4000-0x000000002cacdfff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002cace000-0x000000002cb4afff] ACPI data
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002cb4b000-0x000000002d044fff] ACPI NVS
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002d045000-0x000000002dc15fff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002dc16000-0x000000002dc16fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000002dc20000-0x000000003fffffff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000040400000-0x0000000048bc2fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000048bcc000-0x0000000065536fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000065537000-0x0000000065537fff] ACPI NVS
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000065538000-0x0000000065538fff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000065539000-0x0000000068552fff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000006855c000-0x000000007acfffff] usable
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x000000007ad00000-0x000000007f7fffff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
May 16 21:41:38 hermes kernel: BIOS-e820: [mem 0x0000000100000000-0x000000087c7fffff] usable
May 16 21:41:38 hermes kernel: NX (Execute Disable) protection: active
May 16 21:41:38 hermes kernel: APIC: Static calls initialized
May 16 21:41:38 hermes kernel: e820: update [mem 0x0725d018-0x07266a57] usable ==> usable
May 16 21:41:38 hermes kernel: e820: update [mem 0x0725d018-0x07266a57] usable ==> usable
May 16 21:41:38 hermes kernel: extended physical RAM map:
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000001011fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000000101b000-0x000000000725d017] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000000725d018-0x0000000007266a57] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000007266a58-0x000000002bfb3fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002bfb4000-0x000000002cacdfff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002cace000-0x000000002cb4afff] ACPI data
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002cb4b000-0x000000002d044fff] ACPI NVS
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002d045000-0x000000002dc15fff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002dc16000-0x000000002dc16fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000002dc20000-0x000000003fffffff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000040400000-0x0000000048bc2fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000048bcc000-0x0000000065536fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000065537000-0x0000000065537fff] ACPI NVS
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000065538000-0x0000000065538fff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000065539000-0x0000000068552fff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000006855c000-0x000000007acfffff] usable
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x000000007ad00000-0x000000007f7fffff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
May 16 21:41:38 hermes kernel: reserve setup_data: [mem 0x0000000100000000-0x000000087c7fffff] usable
May 16 21:41:38 hermes kernel: efi: EFI v2.7 by American Megatrends
May 16 21:41:38 hermes kernel: efi: ACPI 2.0=0x2cae7000 ACPI=0x2cae7000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 TPMFinalLog=0x2cf85000 ESRT=0x2d751498 MEMATTR=0x29f97018 INITRD=0x1855e718 RNG=0x2cae6018 TPMEventLog=0x7267018
May 16 21:41:38 hermes kernel: random: crng init done
May 16 21:41:38 hermes kernel: efi: Remove mem63: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
May 16 21:41:38 hermes kernel: e820: remove [mem 0xf0000000-0xf7ffffff] reserved
May 16 21:41:38 hermes kernel: efi: Not removing mem64: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
May 16 21:41:38 hermes kernel: efi: Not removing mem65: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
May 16 21:41:38 hermes kernel: efi: Not removing mem66: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
May 16 21:41:38 hermes kernel: efi: Remove mem67: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
May 16 21:41:38 hermes kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
May 16 21:41:38 hermes kernel: SMBIOS 3.1.1 present.
May 16 21:41:38 hermes kernel: DMI: Dell Inc. Precision 3630 Tower/0NNNCT, BIOS 2.27.0 02/29/2024
May 16 21:41:38 hermes kernel: tsc: Detected 3800.000 MHz processor
May 16 21:41:38 hermes kernel: tsc: Detected 3799.900 MHz TSC
May 16 21:41:38 hermes kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 16 21:41:38 hermes kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 16 21:41:38 hermes kernel: last_pfn = 0x87c800 max_arch_pfn = 0x400000000
May 16 21:41:38 hermes kernel: MTRR map: 7 entries (3 fixed + 4 variable; max 23), built from 10 variable MTRRs
May 16 21:41:38 hermes kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
May 16 21:41:38 hermes kernel: last_pfn = 0x7ad00 max_arch_pfn = 0x400000000
May 16 21:41:38 hermes kernel: esrt: Reserving ESRT space from 0x000000002d751498 to 0x000000002d7514d0.
May 16 21:41:38 hermes kernel: Using GB pages for direct mapping
May 16 21:41:38 hermes kernel: Secure boot enabled
May 16 21:41:38 hermes kernel: RAMDISK: [mem 0x0726f000-0x0dce0fff]
May 16 21:41:38 hermes kernel: ACPI: Early table checksum verification disabled
May 16 21:41:38 hermes kernel: ACPI: RSDP 0x000000002CAE7000 000024 (v02 DELL )
May 16 21:41:38 hermes kernel: ACPI: XSDT 0x000000002CAE70C8 00010C (v01 DELL CBX3 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: FACP 0x000000002CB29F88 000114 (v06 DELL CBX3 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: DSDT 0x000000002CAE7260 042D25 (v02 DELL CBX3 01072009 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: FACS 0x000000002D043F80 000040
May 16 21:41:38 hermes kernel: ACPI: APIC 0x000000002CB2A0A0 0000F4 (v04 DELL CBX3 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: FPDT 0x000000002CB2A198 000044 (v01 DELL CBX3 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: FIDT 0x000000002CB2A1E0 00009C (v01 DELL CBX3 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: MCFG 0x000000002CB2A280 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB2A2C0 001B26 (v02 CpuRef CpuSsdt 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB2BDE8 0033EC (v02 SaSsdt SaSsdt 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB2F1D8 002497 (v02 PegSsd PegSsdt 00001000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: HPET 0x000000002CB31670 000038 (v01 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB316A8 000FD3 (v02 DELL\x Ther_Rvp 00001000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB32680 000ADD (v02 INTEL DELL__TB 00000000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: UEFI 0x000000002CB33160 000042 (v01 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: LPIT 0x000000002CB331A8 000094 (v01 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB33240 0027DE (v02 DELL\x PtidDevc 00001000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB35A20 0014E2 (v02 DELL\x TbtTypeC 00000000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: DBGP 0x000000002CB36F08 000034 (v01 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: DBG2 0x000000002CB36F40 000054 (v00 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB36F98 001B67 (v02 DELL\x UsbCTabl 00001000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: SLIC 0x000000002CB38B00 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
May 16 21:41:38 hermes kernel: ACPI: MSDM 0x000000002CB38C78 000055 (v03 DELL CBX3 06222004 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: DMAR 0x000000002CB38CD0 0000C8 (v01 INTEL EDK2 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: SSDT 0x000000002CB38D98 000144 (v02 Intel ADebTabl 00001000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: BGRT 0x000000002CB38EE0 000038 (v00 01072009 AMI 00010013)
May 16 21:41:38 hermes kernel: ACPI: TPM2 0x000000002CB38F18 000034 (v04 DELL\x CBX3 00000001 AMI 00000000)
May 16 21:41:38 hermes kernel: ACPI: ASF! 0x000000002CB38F50 0000A0 (v32 DELL\x CBX3 00000002 01000013)
May 16 21:41:38 hermes kernel: ACPI: EINJ 0x000000002CB38FF0 000130 (v01 AMI AMI.EINJ 00000000 AMI. 00000000)
May 16 21:41:38 hermes kernel: ACPI: ERST 0x000000002CB39120 000230 (v01 AMIER AMI.ERST 00000000 AMI. 00000000)
May 16 21:41:38 hermes kernel: ACPI: BERT 0x000000002CB39350 000030 (v01 AMI AMI.BERT 00000000 AMI. 00000000)
May 16 21:41:38 hermes kernel: ACPI: HEST 0x000000002CB39380 0000A8 (v01 AMI AMI.HEST 00000000 AMI. 00000000)
May 16 21:41:38 hermes kernel: ACPI: Reserving FACP table memory at [mem 0x2cb29f88-0x2cb2a09b]
May 16 21:41:38 hermes kernel: ACPI: Reserving DSDT table memory at [mem 0x2cae7260-0x2cb29f84]
May 16 21:41:38 hermes kernel: ACPI: Reserving FACS table memory at [mem 0x2d043f80-0x2d043fbf]
May 16 21:41:38 hermes kernel: ACPI: Reserving APIC table memory at [mem 0x2cb2a0a0-0x2cb2a193]
May 16 21:41:38 hermes kernel: ACPI: Reserving FPDT table memory at [mem 0x2cb2a198-0x2cb2a1db]
May 16 21:41:38 hermes kernel: ACPI: Reserving FIDT table memory at [mem 0x2cb2a1e0-0x2cb2a27b]
May 16 21:41:38 hermes kernel: ACPI: Reserving MCFG table memory at [mem 0x2cb2a280-0x2cb2a2bb]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb2a2c0-0x2cb2bde5]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb2bde8-0x2cb2f1d3]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb2f1d8-0x2cb3166e]
May 16 21:41:38 hermes kernel: ACPI: Reserving HPET table memory at [mem 0x2cb31670-0x2cb316a7]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb316a8-0x2cb3267a]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb32680-0x2cb3315c]
May 16 21:41:38 hermes kernel: ACPI: Reserving UEFI table memory at [mem 0x2cb33160-0x2cb331a1]
May 16 21:41:38 hermes kernel: ACPI: Reserving LPIT table memory at [mem 0x2cb331a8-0x2cb3323b]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb33240-0x2cb35a1d]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb35a20-0x2cb36f01]
May 16 21:41:38 hermes kernel: ACPI: Reserving DBGP table memory at [mem 0x2cb36f08-0x2cb36f3b]
May 16 21:41:38 hermes kernel: ACPI: Reserving DBG2 table memory at [mem 0x2cb36f40-0x2cb36f93]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb36f98-0x2cb38afe]
May 16 21:41:38 hermes kernel: ACPI: Reserving SLIC table memory at [mem 0x2cb38b00-0x2cb38c75]
May 16 21:41:38 hermes kernel: ACPI: Reserving MSDM table memory at [mem 0x2cb38c78-0x2cb38ccc]
May 16 21:41:38 hermes kernel: ACPI: Reserving DMAR table memory at [mem 0x2cb38cd0-0x2cb38d97]
May 16 21:41:38 hermes kernel: ACPI: Reserving SSDT table memory at [mem 0x2cb38d98-0x2cb38edb]
May 16 21:41:38 hermes kernel: ACPI: Reserving BGRT table memory at [mem 0x2cb38ee0-0x2cb38f17]
May 16 21:41:38 hermes kernel: ACPI: Reserving TPM2 table memory at [mem 0x2cb38f18-0x2cb38f4b]
May 16 21:41:38 hermes kernel: ACPI: Reserving ASF! table memory at [mem 0x2cb38f50-0x2cb38fef]
May 16 21:41:38 hermes kernel: ACPI: Reserving EINJ table memory at [mem 0x2cb38ff0-0x2cb3911f]
May 16 21:41:38 hermes kernel: ACPI: Reserving ERST table memory at [mem 0x2cb39120-0x2cb3934f]
May 16 21:41:38 hermes kernel: ACPI: Reserving BERT table memory at [mem 0x2cb39350-0x2cb3937f]
May 16 21:41:38 hermes kernel: ACPI: Reserving HEST table memory at [mem 0x2cb39380-0x2cb39427]
May 16 21:41:38 hermes kernel: No NUMA configuration found
May 16 21:41:38 hermes kernel: Faking a node at [mem 0x0000000000000000-0x000000087c7fffff]
May 16 21:41:38 hermes kernel: NODE_DATA(0) allocated [mem 0x87c7fb000-0x87c7fffff]
May 16 21:41:38 hermes kernel: Zone ranges:
May 16 21:41:38 hermes kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
May 16 21:41:38 hermes kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
May 16 21:41:38 hermes kernel: Normal [mem 0x0000000100000000-0x000000087c7fffff]
May 16 21:41:38 hermes kernel: Device empty
May 16 21:41:38 hermes kernel: Movable zone start for each node
May 16 21:41:38 hermes kernel: Early memory node ranges
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000000100000-0x0000000001011fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x000000000101b000-0x000000002bfb3fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x000000002dc16000-0x000000002dc16fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x000000002dc20000-0x000000003fffffff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000040400000-0x0000000048bc2fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000048bcc000-0x0000000065536fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000065539000-0x0000000068552fff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x000000006855c000-0x000000007acfffff]
May 16 21:41:38 hermes kernel: node 0: [mem 0x0000000100000000-0x000000087c7fffff]
May 16 21:41:38 hermes kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000087c7fffff]
May 16 21:41:38 hermes kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 9 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 7266 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 9 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 1024 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 9 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 2 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone DMA32: 9 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone Normal: 21248 pages in unavailable ranges
May 16 21:41:38 hermes kernel: On node 0, zone Normal: 14336 pages in unavailable ranges
May 16 21:41:38 hermes kernel: Reserving Intel graphics memory at [mem 0x7d800000-0x7f7fffff]
May 16 21:41:38 hermes kernel: ACPI: PM-Timer IO Port: 0x1808
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
May 16 21:41:38 hermes kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
May 16 21:41:38 hermes kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
May 16 21:41:38 hermes kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 16 21:41:38 hermes kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 16 21:41:38 hermes kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 16 21:41:38 hermes kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
May 16 21:41:38 hermes kernel: e820: update [mem 0x27923000-0x279a9fff] usable ==> reserved
May 16 21:41:38 hermes kernel: TSC deadline timer available
May 16 21:41:38 hermes kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x01012000-0x0101afff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x0725d000-0x0725dfff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x07266000-0x07266fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x27923000-0x279a9fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x2bfb4000-0x2cacdfff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x2cace000-0x2cb4afff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x2cb4b000-0x2d044fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x2d045000-0x2dc15fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x2dc17000-0x2dc1ffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x48bc3000-0x48bcbfff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x65537000-0x65537fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x65538000-0x65538fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x68553000-0x6855bfff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x7ad00000-0x7f7fffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0x7f800000-0xfdffffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 16 21:41:38 hermes kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
May 16 21:41:38 hermes kernel: [mem 0x7f800000-0xfdffffff] available for PCI devices
May 16 21:41:38 hermes kernel: Booting paravirtualized kernel on bare hardware
May 16 21:41:38 hermes kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 16 21:41:38 hermes kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
May 16 21:41:38 hermes kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
May 16 21:41:38 hermes kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
May 16 21:41:38 hermes kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
May 16 21:41:38 hermes kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
May 16 21:41:38 hermes kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
May 16 21:41:38 hermes kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
May 16 21:41:38 hermes kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
May 16 21:41:38 hermes kernel: Fallback order for Node 0: 0
May 16 21:41:38 hermes kernel: Built 1 zonelists, mobility grouping on. Total pages: 8214054
May 16 21:41:38 hermes kernel: Policy zone: Normal
May 16 21:41:38 hermes kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 16 21:41:38 hermes kernel: software IO TLB: area num 16.
May 16 21:41:38 hermes kernel: Memory: 32530740K/33378392K available (16384K kernel code, 2121K rwdata, 12976K rodata, 3456K init, 3732K bss, 847392K reserved, 0K cma-reserved)
May 16 21:41:38 hermes kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
May 16 21:41:38 hermes kernel: Kernel/User page tables isolation: enabled
May 16 21:41:38 hermes kernel: ftrace: allocating 49113 entries in 192 pages
May 16 21:41:38 hermes kernel: ftrace: allocated 192 pages with 2 groups
May 16 21:41:38 hermes kernel: Dynamic Preempt: full
May 16 21:41:38 hermes kernel: rcu: Preemptible hierarchical RCU implementation.
May 16 21:41:38 hermes kernel: rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
May 16 21:41:38 hermes kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
May 16 21:41:38 hermes kernel: Trampoline variant of Tasks RCU enabled.
May 16 21:41:38 hermes kernel: Rude variant of Tasks RCU enabled.
May 16 21:41:38 hermes kernel: Tracing variant of Tasks RCU enabled.
May 16 21:41:38 hermes kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 16 21:41:38 hermes kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
May 16 21:41:38 hermes kernel: NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
May 16 21:41:38 hermes kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 16 21:41:38 hermes kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 16 21:41:38 hermes kernel: Console: colour dummy device 80x25
May 16 21:41:38 hermes kernel: printk: legacy console [tty0] enabled
May 16 21:41:38 hermes kernel: ACPI: Core revision 20230628
May 16 21:41:38 hermes kernel: hpet: HPET dysfunctional in PC10. Force disabled.
May 16 21:41:38 hermes kernel: APIC: Switch to symmetric I/O mode setup
May 16 21:41:38 hermes kernel: DMAR: Host address width 39
May 16 21:41:38 hermes kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
May 16 21:41:38 hermes kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
May 16 21:41:38 hermes kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
May 16 21:41:38 hermes kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
May 16 21:41:38 hermes kernel: DMAR: RMRR base: 0x0000002c99c000 end: 0x0000002c9bbfff
May 16 21:41:38 hermes kernel: DMAR: RMRR base: 0x0000007d000000 end: 0x0000007f7fffff
May 16 21:41:38 hermes kernel: DMAR: RMRR base: 0x0000002ca4e000 end: 0x0000002cacdfff
May 16 21:41:38 hermes kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
May 16 21:41:38 hermes kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
May 16 21:41:38 hermes kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
May 16 21:41:38 hermes kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
May 16 21:41:38 hermes kernel: x2apic enabled
May 16 21:41:38 hermes kernel: APIC: Switched APIC routing to: cluster x2apic
May 16 21:41:38 hermes kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6d8bf270d8d, max_idle_ns: 881590865083 ns
May 16 21:41:38 hermes kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7602.45 BogoMIPS (lpj=12666333)
May 16 21:41:38 hermes kernel: x86/cpu: SGX disabled by BIOS.
May 16 21:41:38 hermes kernel: CPU0: Thermal monitoring enabled (TM1)
May 16 21:41:38 hermes kernel: process: using mwait in idle threads
May 16 21:41:38 hermes kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
May 16 21:41:38 hermes kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
May 16 21:41:38 hermes kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 16 21:41:38 hermes kernel: Spectre V2 : Mitigation: IBRS
May 16 21:41:38 hermes kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 16 21:41:38 hermes kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 16 21:41:38 hermes kernel: RETBleed: Mitigation: IBRS
May 16 21:41:38 hermes kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 16 21:41:38 hermes kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
May 16 21:41:38 hermes kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 16 21:41:38 hermes kernel: MDS: Mitigation: Clear CPU buffers
May 16 21:41:38 hermes kernel: TAA: Mitigation: TSX disabled
May 16 21:41:38 hermes kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
May 16 21:41:38 hermes kernel: SRBDS: Mitigation: Microcode
May 16 21:41:38 hermes kernel: GDS: Mitigation: Microcode
May 16 21:41:38 hermes kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 16 21:41:38 hermes kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 16 21:41:38 hermes kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 16 21:41:38 hermes kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
May 16 21:41:38 hermes kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
May 16 21:41:38 hermes kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
May 16 21:41:38 hermes kernel: x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
May 16 21:41:38 hermes kernel: x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
May 16 21:41:38 hermes kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
May 16 21:41:38 hermes kernel: Freeing SMP alternatives memory: 40K
May 16 21:41:38 hermes kernel: pid_max: default: 32768 minimum: 301
May 16 21:41:38 hermes kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
May 16 21:41:38 hermes kernel: landlock: Up and running.
May 16 21:41:38 hermes kernel: Yama: becoming mindful.
May 16 21:41:38 hermes kernel: LSM support for eBPF active
May 16 21:41:38 hermes kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 16 21:41:38 hermes kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 16 21:41:38 hermes kernel: smpboot: CPU0: Intel(R) Xeon(R) E-2186G CPU @ 3.80GHz (family: 0x6, model: 0x9e, stepping: 0xa)
May 16 21:41:38 hermes kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
May 16 21:41:38 hermes kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
May 16 21:41:38 hermes kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
May 16 21:41:38 hermes kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
May 16 21:41:38 hermes kernel: ... version: 4
May 16 21:41:38 hermes kernel: ... bit width: 48
May 16 21:41:38 hermes kernel: ... generic registers: 4
May 16 21:41:38 hermes kernel: ... value mask: 0000ffffffffffff
May 16 21:41:38 hermes kernel: ... max period: 00007fffffffffff
May 16 21:41:38 hermes kernel: ... fixed-purpose events: 3
May 16 21:41:38 hermes kernel: ... event mask: 000000070000000f
May 16 21:41:38 hermes kernel: signal: max sigframe size: 2032
May 16 21:41:38 hermes kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1212
May 16 21:41:38 hermes kernel: rcu: Hierarchical SRCU implementation.
May 16 21:41:38 hermes kernel: rcu: Max phase no-delay instances is 1000.
May 16 21:41:38 hermes kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 16 21:41:38 hermes kernel: smp: Bringing up secondary CPUs ...
May 16 21:41:38 hermes kernel: smpboot: x86: Booting SMP configuration:
May 16 21:41:38 hermes kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11
May 16 21:41:38 hermes kernel: MDS CPU bug present and SMT on, data leak possible. See [url]https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html[/url] for more details.
May 16 21:41:38 hermes kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See [url]https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html[/url] for more details.
May 16 21:41:38 hermes kernel: smp: Brought up 1 node, 12 CPUs
May 16 21:41:38 hermes kernel: smpboot: Max logical packages: 1
May 16 21:41:38 hermes kernel: smpboot: Total of 12 processors activated (91234.49 BogoMIPS)
May 16 21:41:38 hermes kernel: devtmpfs: initialized
May 16 21:41:38 hermes kernel: x86/mm: Memory block size: 128MB
May 16 21:41:38 hermes kernel: ACPI: PM: Registering ACPI NVS region [mem 0x2cb4b000-0x2d044fff] (5218304 bytes)
May 16 21:41:38 hermes kernel: ACPI: PM: Registering ACPI NVS region [mem 0x65537000-0x65537fff] (4096 bytes)
May 16 21:41:38 hermes kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 16 21:41:38 hermes kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
May 16 21:41:38 hermes kernel: pinctrl core: initialized pinctrl subsystem
May 16 21:41:38 hermes kernel: PM: RTC time: 01:41:33, date: 2024-05-17
May 16 21:41:38 hermes kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 16 21:41:38 hermes kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
May 16 21:41:38 hermes kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 16 21:41:38 hermes kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 16 21:41:38 hermes kernel: audit: initializing netlink subsys (disabled)
May 16 21:41:38 hermes kernel: audit: type=2000 audit(1715910093.013:1): state=initialized audit_enabled=0 res=1
May 16 21:41:38 hermes kernel: thermal_sys: Registered thermal governor 'fair_share'
May 16 21:41:38 hermes kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 16 21:41:38 hermes kernel: thermal_sys: Registered thermal governor 'step_wise'
May 16 21:41:38 hermes kernel: thermal_sys: Registered thermal governor 'user_space'
May 16 21:41:38 hermes kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 16 21:41:38 hermes kernel: cpuidle: using governor ladder
May 16 21:41:38 hermes kernel: cpuidle: using governor menu
May 16 21:41:38 hermes kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
May 16 21:41:38 hermes kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 16 21:41:38 hermes kernel: PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
May 16 21:41:38 hermes kernel: PCI: not using ECAM ([mem 0xf0000000-0xf7ffffff] not reserved)
May 16 21:41:38 hermes kernel: PCI: Using configuration type 1 for base access
May 16 21:41:38 hermes kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 16 21:41:38 hermes kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
May 16 21:41:38 hermes kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
May 16 21:41:38 hermes kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 16 21:41:38 hermes kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 16 21:41:38 hermes kernel: ACPI: Added _OSI(Module Device)
May 16 21:41:38 hermes kernel: ACPI: Added _OSI(Processor Device)
May 16 21:41:38 hermes kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 16 21:41:38 hermes kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 16 21:41:38 hermes kernel: ACPI: 10 ACPI AML tables successfully acquired and loaded
May 16 21:41:38 hermes kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814E6800 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814DD800 00070D (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814C3600 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814DF800 0005FC (v02 PmRef ApIst 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814E2400 000317 (v02 PmRef ApHwp 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814ED000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: Dynamic OEM Table Load:
May 16 21:41:38 hermes kernel: ACPI: SSDT 0xFFFF97FB814E3400 00030A (v02 PmRef ApCst 00003000 INTL 20160527)
May 16 21:41:38 hermes kernel: ACPI: _OSC evaluated successfully for all CPUs
May 16 21:41:38 hermes kernel: ACPI: Interpreter enabled
May 16 21:41:38 hermes kernel: ACPI: PM: (supports S0 S3 S4 S5)
May 16 21:41:38 hermes kernel: ACPI: Using IOAPIC for interrupt routing
May 16 21:41:38 hermes kernel: PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
May 16 21:41:38 hermes kernel: PCI: ECAM [mem 0xf0000000-0xf7ffffff] reserved as ACPI motherboard resource
May 16 21:41:38 hermes kernel: HEST: Table parsing has been initialized.
May 16 21:41:38 hermes kernel: GHES: APEI firmware first mode is enabled by APEI bit.
May 16 21:41:38 hermes kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 16 21:41:38 hermes kernel: PCI: Ignoring E820 reservations for host bridge windows
May 16 21:41:38 hermes kernel: ACPI: Enabled 11 GPEs in block 00 to 7F
May 16 21:41:38 hermes kernel: ACPI Error: No handler for Region [WST1] ((____ptrval____)) [GenericSerialBus] (20230628/evregion-130)
May 16 21:41:38 hermes kernel: ACPI Error: Region GenericSerialBus (ID=9) has no handler (20230628/exfldio-261)
May 16 21:41:38 hermes kernel: ACPI Error: Aborting method \_SB.PCI0.I2C0.PAS1 due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
May 16 21:41:38 hermes kernel: ACPI Error: Aborting method \_GPE._L20 due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
May 16 21:41:38 hermes kernel: ACPI Error: AE_NOT_EXIST, while evaluating GPE method [_L20] (20230628/evgpe-511)
May 16 21:41:38 hermes kernel: ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_TZ_.FN00: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_TZ_.FN01: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_TZ_.FN02: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_TZ_.FN03: New power resource
May 16 21:41:38 hermes kernel: ACPI: \_TZ_.FN04: New power resource
May 16 21:41:38 hermes kernel: ACPI: \PIN_: New power resource
May 16 21:41:38 hermes kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
May 16 21:41:38 hermes kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 16 21:41:38 hermes kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
May 16 21:41:38 hermes kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
May 16 21:41:38 hermes kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
May 16 21:41:38 hermes kernel: PCI host bridge to bus 0000:00
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000effff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [mem 0x7f800000-0xefffffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
May 16 21:41:38 hermes kernel: pci 0000:00:00.0: [8086:3ec6] type 00 class 0x060000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: [8086:3e96] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: BAR 0 [mem 0xa2000000-0xa2ffffff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: BAR 2 [mem 0x80000000-0x8fffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 16 21:41:38 hermes kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:08.0: BAR 0 [mem 0x400011b000-0x400011bfff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:12.0: BAR 0 [mem 0x400011a000-0x400011afff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:14.0: BAR 0 [mem 0x4000100000-0x400010ffff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:14.2: BAR 0 [mem 0x4000114000-0x4000115fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:14.2: BAR 2 [mem 0x4000119000-0x4000119fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:16.0: BAR 0 [mem 0x4000117000-0x4000117fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:16.0: PME# supported from D3hot
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 0 [mem 0xa4320000-0xa4321fff]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 1 [mem 0xa4323000-0xa43230ff]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 2 [io 0x4090-0x4097]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 3 [io 0x4080-0x4083]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 4 [io 0x4060-0x407f]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: BAR 5 [mem 0xa4322000-0xa43227ff]
May 16 21:41:38 hermes kernel: pci 0000:00:17.0: PME# supported from D3hot
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: [8086:a340] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: PCI bridge to [bus 02]
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: bridge window [mem 0xa4200000-0xa42fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
May 16 21:41:38 hermes kernel: pci 0000:00:1c.0: [8086:a338] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: [8086:a33c] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: PCI bridge to [bus 04]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: bridge window [mem 0xa4100000-0xa41fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: PTM enabled (root), 4ns granularity
May 16 21:41:38 hermes kernel: pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:1d.0: PCI bridge to [bus 05]
May 16 21:41:38 hermes kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: [8086:a332] type 01 class 0x060400 PCIe Root Port
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: PCI bridge to [bus 06-07]
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: PTM enabled (root), 4ns granularity
May 16 21:41:38 hermes kernel: pci 0000:00:1f.0: [8086:a309] type 00 class 0x060100 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:1f.3: BAR 0 [mem 0x4000110000-0x4000113fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.3: BAR 4 [mem 0x4000000000-0x40000fffff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:1f.4: BAR 0 [mem 0x4000116000-0x40001160ff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.6: [8086:15bb] type 00 class 0x020000 conventional PCI endpoint
May 16 21:41:38 hermes kernel: pci 0000:00:1f.6: BAR 0 [mem 0xa4300000-0xa431ffff]
May 16 21:41:38 hermes kernel: pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: [10de:1f82] type 00 class 0x030000 PCIe Legacy Endpoint
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: BAR 0 [mem 0xa3000000-0xa3ffffff]
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: BAR 1 [mem 0x90000000-0x9fffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: BAR 3 [mem 0xa0000000-0xa1ffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: BAR 5 [io 0x3000-0x307f]
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: ROM [mem 0xa4000000-0xa407ffff pref]
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:01:00.1: [10de:10fa] type 00 class 0x040300 PCIe Endpoint
May 16 21:41:38 hermes kernel: pci 0000:01:00.1: BAR 0 [mem 0xa4080000-0xa4083fff]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
May 16 21:41:38 hermes kernel: pci 0000:02:00.0: [1179:011a] type 00 class 0x010802 PCIe Endpoint
May 16 21:41:38 hermes kernel: pci 0000:02:00.0: BAR 0 [mem 0xa4200000-0xa4203fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: PCI bridge to [bus 02]
May 16 21:41:38 hermes kernel: acpiphp: Slot [1] registered
May 16 21:41:38 hermes kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
May 16 21:41:38 hermes kernel: pci 0000:04:00.0: [8086:2725] type 00 class 0x028000 PCIe Endpoint
May 16 21:41:38 hermes kernel: pci 0000:04:00.0: BAR 0 [mem 0xa4100000-0xa4103fff 64bit]
May 16 21:41:38 hermes kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: PCI bridge to [bus 04]
May 16 21:41:38 hermes kernel: acpiphp: Slot [1-1] registered
May 16 21:41:38 hermes kernel: pci 0000:00:1d.0: PCI bridge to [bus 05]
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: [1b21:1080] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: supports D1 D2
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: PCI bridge to [bus 06-07]
May 16 21:41:38 hermes kernel: pci_bus 0000:07: extended config space not accessible
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 1
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 1
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 1
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 1
May 16 21:41:38 hermes kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 1
May 16 21:41:38 hermes kernel: iommu: Default domain type: Translated
May 16 21:41:38 hermes kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 16 21:41:38 hermes kernel: SCSI subsystem initialized
May 16 21:41:38 hermes kernel: libata version 3.00 loaded.
May 16 21:41:38 hermes kernel: ACPI: bus type USB registered
May 16 21:41:38 hermes kernel: usbcore: registered new interface driver usbfs
May 16 21:41:38 hermes kernel: usbcore: registered new interface driver hub
May 16 21:41:38 hermes kernel: usbcore: registered new device driver usb
May 16 21:41:38 hermes kernel: EDAC MC: Ver: 3.0.0
May 16 21:41:38 hermes kernel: efivars: Registered efivars operations
May 16 21:41:38 hermes kernel: NetLabel: Initializing
May 16 21:41:38 hermes kernel: NetLabel: domain hash size = 128
May 16 21:41:38 hermes kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
May 16 21:41:38 hermes kernel: NetLabel: unlabeled traffic allowed by default
May 16 21:41:38 hermes kernel: mctp: management component transport protocol core
May 16 21:41:38 hermes kernel: NET: Registered PF_MCTP protocol family
May 16 21:41:38 hermes kernel: PCI: Using ACPI for IRQ routing
May 16 21:41:38 hermes kernel: PCI: pci_cache_line_size set to 64 bytes
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x01012000-0x03ffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x0725d018-0x07ffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x27923000-0x27ffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x2bfb4000-0x2bffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x2dc17000-0x2fffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x48bc3000-0x4bffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x65537000-0x67ffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x68553000-0x6bffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x7ad00000-0x7bffffff]
May 16 21:41:38 hermes kernel: e820: reserve RAM buffer [mem 0x87c800000-0x87fffffff]
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 16 21:41:38 hermes kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: vgaarb: bridge control possible
May 16 21:41:38 hermes kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
May 16 21:41:38 hermes kernel: vgaarb: loaded
May 16 21:41:38 hermes kernel: clocksource: Switched to clocksource tsc-early
May 16 21:41:38 hermes kernel: VFS: Disk quotas dquot_6.6.0
May 16 21:41:38 hermes kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 16 21:41:38 hermes kernel: pnp: PnP ACPI init
May 16 21:41:38 hermes kernel: system 00:00: [mem 0x40000000-0x403fffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:01: [io 0x0a00-0x0a3f] has been reserved
May 16 21:41:38 hermes kernel: system 00:01: [io 0x0a40-0x0a7f] has been reserved
May 16 21:41:38 hermes kernel: pnp 00:02: [dma 0 disabled]
May 16 21:41:38 hermes kernel: system 00:03: [io 0x0680-0x069f] has been reserved
May 16 21:41:38 hermes kernel: system 00:03: [io 0x164e-0x164f] has been reserved
May 16 21:41:38 hermes kernel: system 00:05: [io 0x1854-0x1857] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
May 16 21:41:38 hermes kernel: system 00:07: [io 0x1800-0x18fe] could not be reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xfd000000-0xfd69ffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xfd6c0000-0xfd6cffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xfd6f0000-0xfdffffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xfe200000-0xfe7fffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved
May 16 21:41:38 hermes kernel: system 00:08: [io 0x2000-0x20fe] has been reserved
May 16 21:41:38 hermes kernel: pnp: PnP ACPI: found 10 devices
May 16 21:41:38 hermes kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 16 21:41:38 hermes kernel: NET: Registered PF_INET protocol family
May 16 21:41:38 hermes kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 16 21:41:38 hermes kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
May 16 21:41:38 hermes kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 16 21:41:38 hermes kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 16 21:41:38 hermes kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
May 16 21:41:38 hermes kernel: TCP: Hash tables configured (established 262144 bind 65536)
May 16 21:41:38 hermes kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
May 16 21:41:38 hermes kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
May 16 21:41:38 hermes kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
May 16 21:41:38 hermes kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 16 21:41:38 hermes kernel: NET: Registered PF_XDP protocol family
May 16 21:41:38 hermes kernel: pci 0000:00:15.0: BAR 0 [mem 0x4000118000-0x4000118fff 64bit]: assigned
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: PCI bridge to [bus 02]
May 16 21:41:38 hermes kernel: pci 0000:00:1b.0: bridge window [mem 0xa4200000-0xa42fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: PCI bridge to [bus 04]
May 16 21:41:38 hermes kernel: pci 0000:00:1c.4: bridge window [mem 0xa4100000-0xa41fffff]
May 16 21:41:38 hermes kernel: pci 0000:00:1d.0: PCI bridge to [bus 05]
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
May 16 21:41:38 hermes kernel: pci 0000:00:1d.2: PCI bridge to [bus 06-07]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 7 [mem 0x000e4000-0x000effff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 8 [mem 0x7f800000-0xefffffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:00: resource 10 [mem 0xfc800000-0xfe7fffff window]
May 16 21:41:38 hermes kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
May 16 21:41:38 hermes kernel: pci_bus 0000:01: resource 1 [mem 0xa3000000-0xa40fffff]
May 16 21:41:38 hermes kernel: pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
May 16 21:41:38 hermes kernel: pci_bus 0000:02: resource 1 [mem 0xa4200000-0xa42fffff]
May 16 21:41:38 hermes kernel: pci_bus 0000:04: resource 1 [mem 0xa4100000-0xa41fffff]
May 16 21:41:38 hermes kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
May 16 21:41:38 hermes kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: Disabling ASPM L0s/L1
May 16 21:41:38 hermes kernel: pci 0000:06:00.0: can't disable ASPM; OS doesn't have ASPM control
May 16 21:41:38 hermes kernel: PCI: CLS 64 bytes, default 64
May 16 21:41:38 hermes kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 16 21:41:38 hermes kernel: software IO TLB: mapped [mem 0x0000000076d00000-0x000000007ad00000] (64MB)
May 16 21:41:38 hermes kernel: Trying to unpack rootfs image as initramfs...
May 16 21:41:38 hermes kernel: Initialise system trusted keyrings
May 16 21:41:38 hermes kernel: Key type blacklist registered
May 16 21:41:38 hermes kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
May 16 21:41:38 hermes kernel: zbud: loaded
May 16 21:41:38 hermes kernel: fuse: init (API version 7.39)
May 16 21:41:38 hermes kernel: integrity: Platform Keyring initialized
May 16 21:41:38 hermes kernel: integrity: Machine keyring initialized
May 16 21:41:38 hermes kernel: Key type asymmetric registered
May 16 21:41:38 hermes kernel: Asymmetric key parser 'x509' registered
May 16 21:41:38 hermes kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 16 21:41:38 hermes kernel: io scheduler mq-deadline registered
May 16 21:41:38 hermes kernel: io scheduler kyber registered
May 16 21:41:38 hermes kernel: io scheduler bfq registered
May 16 21:41:38 hermes kernel: pcieport 0000:00:01.0: AER: enabled with IRQ 122
May 16 21:41:38 hermes kernel: pcieport 0000:00:1b.0: AER: enabled with IRQ 123
May 16 21:41:38 hermes kernel: pcieport 0000:00:1b.0: DPC: enabled with IRQ 123
May 16 21:41:38 hermes kernel: pcieport 0000:00:1b.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
May 16 21:41:38 hermes kernel: pcieport 0000:00:1c.4: AER: enabled with IRQ 125
May 16 21:41:38 hermes kernel: pcieport 0000:00:1c.4: DPC: enabled with IRQ 125
May 16 21:41:38 hermes kernel: pcieport 0000:00:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
May 16 21:41:38 hermes kernel: pcieport 0000:00:1d.2: AER: enabled with IRQ 127
May 16 21:41:38 hermes kernel: pcieport 0000:00:1d.2: DPC: enabled with IRQ 127
May 16 21:41:38 hermes kernel: pcieport 0000:00:1d.2: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
May 16 21:41:38 hermes kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 16 21:41:38 hermes kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
May 16 21:41:38 hermes kernel: ACPI: button: Sleep Button [SLPB]
May 16 21:41:38 hermes kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
May 16 21:41:38 hermes kernel: ACPI: button: Power Button [PWRB]
May 16 21:41:38 hermes kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
May 16 21:41:38 hermes kernel: ACPI: button: Power Button [PWRF]
May 16 21:41:38 hermes kernel: thermal LNXTHERM:00: registered as thermal_zone0
May 16 21:41:38 hermes kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
May 16 21:41:38 hermes kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
May 16 21:41:38 hermes kernel: pstore: Using crash dump compression: deflate
May 16 21:41:38 hermes kernel: pstore: Registered erst as persistent store backend
May 16 21:41:38 hermes kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 16 21:41:38 hermes kernel: 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
May 16 21:41:38 hermes kernel: hpet_acpi_add: no address or irqs in _CRS
May 16 21:41:38 hermes kernel: Non-volatile memory driver v1.3
May 16 21:41:38 hermes kernel: Linux agpgart interface v0.103
May 16 21:41:38 hermes kernel: tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFC, rev-id 1)
May 16 21:41:38 hermes kernel: ACPI: bus type drm_connector registered
May 16 21:41:38 hermes kernel: ahci 0000:00:17.0: version 3.0
May 16 21:41:38 hermes kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf impl SATA mode
May 16 21:41:38 hermes kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
May 16 21:41:38 hermes kernel: Freeing initrd memory: 109000K
May 16 21:41:38 hermes kernel: scsi host0: ahci
May 16 21:41:38 hermes kernel: scsi host1: ahci
May 16 21:41:38 hermes kernel: scsi host2: ahci
May 16 21:41:38 hermes kernel: scsi host3: ahci
May 16 21:41:38 hermes kernel: ata1: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322100 irq 128 lpm-pol 0
May 16 21:41:38 hermes kernel: ata2: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322180 irq 128 lpm-pol 0
May 16 21:41:38 hermes kernel: ata3: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322200 irq 128 lpm-pol 0
May 16 21:41:38 hermes kernel: ata4: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322280 irq 128 lpm-pol 0
May 16 21:41:38 hermes kernel: usbcore: registered new interface driver usbserial_generic
May 16 21:41:38 hermes kernel: usbserial: USB Serial support registered for generic
May 16 21:41:38 hermes kernel: rtc_cmos 00:04: RTC can wake from S4
May 16 21:41:38 hermes kernel: rtc_cmos 00:04: registered as rtc0
May 16 21:41:38 hermes kernel: rtc_cmos 00:04: setting system clock to 2024-05-17T01:41:33 UTC (1715910093)
May 16 21:41:38 hermes kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
May 16 21:41:38 hermes kernel: intel_pstate: Intel P-state driver initializing
May 16 21:41:38 hermes kernel: intel_pstate: Disabling energy efficiency optimization
May 16 21:41:38 hermes kernel: intel_pstate: HWP enabled
May 16 21:41:38 hermes kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 16 21:41:38 hermes kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 16 21:41:38 hermes kernel: fbcon: Deferring console take-over
May 16 21:41:38 hermes kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 16 21:41:38 hermes kernel: hid: raw HID events driver (C) Jiri Kosina
May 16 21:41:38 hermes kernel: drop_monitor: Initializing network drop monitor service
May 16 21:41:38 hermes kernel: NET: Registered PF_INET6 protocol family
May 16 21:41:38 hermes kernel: Segment Routing with IPv6
May 16 21:41:38 hermes kernel: RPL Segment Routing with IPv6
May 16 21:41:38 hermes kernel: In-situ OAM (IOAM) with IPv6
May 16 21:41:38 hermes kernel: NET: Registered PF_PACKET protocol family
May 16 21:41:38 hermes kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
May 16 21:41:38 hermes kernel: microcode: Current revision: 0x000000f6
May 16 21:41:38 hermes kernel: microcode: Updated early from: 0x000000f4
May 16 21:41:38 hermes kernel: IPI shorthand broadcast: enabled
May 16 21:41:38 hermes kernel: sched_clock: Marking stable (518672225, 12662871)->(564917864, -33582768)
May 16 21:41:38 hermes kernel: registered taskstats version 1
May 16 21:41:38 hermes kernel: Loading compiled-in X.509 certificates
May 16 21:41:38 hermes kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 4183282d70f116b65f2696270db916493ab86dc2'
May 16 21:41:38 hermes kernel: zswap: loaded using pool zstd/zsmalloc
May 16 21:41:38 hermes kernel: Key type .fscrypt registered
May 16 21:41:38 hermes kernel: Key type fscrypt-provisioning registered
May 16 21:41:38 hermes kernel: integrity: Loading X.509 certificate: UEFI:db
May 16 21:41:38 hermes kernel: integrity: Loaded X.509 cert 'Database Key: 00dce0d981cc20b1d97734b6680e895d56'
May 16 21:41:38 hermes kernel: integrity: Loading X.509 certificate: UEFI:db
May 16 21:41:38 hermes kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
May 16 21:41:38 hermes kernel: integrity: Loading X.509 certificate: UEFI:db
May 16 21:41:38 hermes kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
May 16 21:41:38 hermes kernel: PM: Magic number: 8:506:660
May 16 21:41:38 hermes kernel: RAS: Correctable Errors collector initialized.
May 16 21:41:38 hermes kernel: clk: Disabling unused clocks
May 16 21:41:38 hermes kernel: ata4: SATA link down (SStatus 4 SControl 300)
May 16 21:41:38 hermes kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
May 16 21:41:38 hermes kernel: ata3: SATA link down (SStatus 4 SControl 300)
May 16 21:41:38 hermes kernel: ata2: SATA link down (SStatus 4 SControl 300)
May 16 21:41:38 hermes kernel: ata1.00: ATA-10: WDC WD40EZAZ-00SF3B0, 80.00A80, max UDMA/133
May 16 21:41:38 hermes kernel: ata1.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
May 16 21:41:38 hermes kernel: ata1.00: Features: NCQ-prio
May 16 21:41:38 hermes kernel: ata1.00: configured for UDMA/133
May 16 21:41:38 hermes kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD40EZAZ-00S 0A80 PQ: 0 ANSI: 5
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] Write Protect is off
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
May 16 21:41:38 hermes kernel: sda: sda1 sda2 sda3 sda4
May 16 21:41:38 hermes kernel: sd 0:0:0:0: [sda] Attached SCSI disk
May 16 21:41:38 hermes kernel: Freeing unused decrypted memory: 2028K
May 16 21:41:38 hermes kernel: Freeing unused kernel image (initmem) memory: 3456K
May 16 21:41:38 hermes kernel: Write protecting the kernel read-only data: 30720k
May 16 21:41:38 hermes kernel: Freeing unused kernel image (rodata/data gap) memory: 1360K
May 16 21:41:38 hermes kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 16 21:41:38 hermes kernel: rodata_test: all tests were successful
May 16 21:41:38 hermes kernel: x86/mm: Checking user space page tables
May 16 21:41:38 hermes kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 16 21:41:38 hermes kernel: Run /init as init process
May 16 21:41:38 hermes kernel: with arguments:
May 16 21:41:38 hermes kernel: /init
May 16 21:41:38 hermes kernel: with environment:
May 16 21:41:38 hermes kernel: HOME=/
May 16 21:41:38 hermes kernel: TERM=linux
May 16 21:41:38 hermes kernel: BOOT_IMAGE=/boot/vmlinuz-linux
May 16 21:41:38 hermes kernel: nvidia: loading out-of-tree module taints kernel.
May 16 21:41:38 hermes kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
May 16 21:41:38 hermes kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 242
May 16 21:41:38 hermes kernel:
May 16 21:41:38 hermes kernel: nvidia 0000:01:00.0: enabling device (0100 -> 0103)
May 16 21:41:38 hermes kernel: nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
May 16 21:41:38 hermes kernel: NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64 550.78 Release Build (archlinux-builder@)
May 16 21:41:38 hermes kernel: wmi_bus wmi_bus-PNP0C14:04: WQBC data block query control method not found
May 16 21:41:38 hermes kernel: nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for x86_64 550.78 Release Build (archlinux-builder@)
May 16 21:41:38 hermes kernel: tsc: Refined TSC clocksource calibration: 3792.001 MHz
May 16 21:41:38 hermes kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d51a7cf3b3, max_idle_ns: 881590686630 ns
May 16 21:41:38 hermes kernel: clocksource: Switched to clocksource tsc
May 16 21:41:38 hermes kernel: nvidia-uvm: Loaded the UVM driver, major device number 240.
May 16 21:41:38 hermes kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
May 16 21:41:38 hermes kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
May 16 21:41:38 hermes kernel: nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
May 16 21:41:38 hermes kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
May 16 21:41:38 hermes kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
May 16 21:41:38 hermes kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 16 21:41:38 hermes kernel: usb usb1: Product: xHCI Host Controller
May 16 21:41:38 hermes kernel: usb usb1: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
May 16 21:41:38 hermes kernel: usb usb1: SerialNumber: 0000:00:14.0
May 16 21:41:38 hermes kernel: hub 1-0:1.0: USB hub found
May 16 21:41:38 hermes kernel: hub 1-0:1.0: 16 ports detected
May 16 21:41:38 hermes kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
May 16 21:41:38 hermes kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 16 21:41:38 hermes kernel: usb usb2: Product: xHCI Host Controller
May 16 21:41:38 hermes kernel: usb usb2: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
May 16 21:41:38 hermes kernel: usb usb2: SerialNumber: 0000:00:14.0
May 16 21:41:38 hermes kernel: hub 2-0:1.0: USB hub found
May 16 21:41:38 hermes kernel: hub 2-0:1.0: 10 ports detected
May 16 21:41:38 hermes kernel: nvme nvme0: pci function 0000:02:00.0
May 16 21:41:38 hermes kernel: nvme nvme0: 12/0/0 default/read/poll queues
May 16 21:41:38 hermes kernel: nvme0n1: p1 p2 p3 p4 p6
May 16 21:41:38 hermes kernel: usb 1-2: new full-speed USB device number 2 using xhci_hcd
May 16 21:41:38 hermes kernel: usb 1-2: New USB device found, idVendor=0c76, idProduct=161e, bcdDevice= 1.00
May 16 21:41:38 hermes kernel: usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 16 21:41:38 hermes kernel: usb 1-2: Product: USB PnP Audio Device
May 16 21:41:38 hermes kernel: usbcore: registered new interface driver usbhid
May 16 21:41:38 hermes kernel: usbhid: USB HID core driver
May 16 21:41:38 hermes kernel: input: USB PnP Audio Device as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:0C76:161E.0001/input/input3
May 16 21:41:38 hermes kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 16 21:41:38 hermes kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
May 16 21:41:38 hermes kernel: hid-generic 0003:0C76:161E.0001: input,hidraw0: USB HID v1.00 Device [USB PnP Audio Device] on usb-0000:00:14.0-2/input2
May 16 21:41:38 hermes kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
May 16 21:41:38 hermes kernel: usb 1-8: new full-speed USB device number 3 using xhci_hcd
May 16 21:41:38 hermes kernel: usb 1-8: New USB device found, idVendor=046a, idProduct=c091, bcdDevice= 1.05
May 16 21:41:38 hermes kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 16 21:41:38 hermes kernel: usb 1-8: Product: CHERRY Wireless Desktop
May 16 21:41:38 hermes kernel: usb 1-8: Manufacturer: Cherry GmbH
May 16 21:41:38 hermes kernel: input: Cherry GmbH CHERRY Wireless Desktop as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:046A:C091.0002/input/input4
May 16 21:41:38 hermes kernel: hid-generic 0003:046A:C091.0002: input,hidraw1: USB HID v1.11 Keyboard [Cherry GmbH CHERRY Wireless Desktop] on usb-0000:00:14.0-8/input0
May 16 21:41:38 hermes kernel: input: Cherry GmbH CHERRY Wireless Desktop Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input5
May 16 21:41:38 hermes kernel: input: Cherry GmbH CHERRY Wireless Desktop as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input6
May 16 21:41:38 hermes kernel: input: Cherry GmbH CHERRY Wireless Desktop Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input7
May 16 21:41:38 hermes kernel: input: Cherry GmbH CHERRY Wireless Desktop System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input8
May 16 21:41:38 hermes kernel: hid-generic 0003:046A:C091.0003: input,hiddev96,hidraw2: USB HID v1.11 Mouse [Cherry GmbH CHERRY Wireless Desktop] on usb-0000:00:14.0-8/input1
May 16 21:41:38 hermes kernel: i915 0000:00:02.0: [drm] [ENCODER:94:DDI A/PHY A] failed to retrieve link info, disabling eDP
May 16 21:41:38 hermes kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 2
May 16 21:41:38 hermes kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
May 16 21:41:38 hermes kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
May 16 21:41:38 hermes kernel: i915 display info: display version: 9
May 16 21:41:38 hermes kernel: i915 display info: cursor_needs_physical: no
May 16 21:41:38 hermes kernel: i915 display info: has_cdclk_crawl: no
May 16 21:41:38 hermes kernel: i915 display info: has_cdclk_squash: no
May 16 21:41:38 hermes kernel: i915 display info: has_ddi: yes
May 16 21:41:38 hermes kernel: i915 display info: has_dp_mst: yes
May 16 21:41:38 hermes kernel: i915 display info: has_dsb: no
May 16 21:41:38 hermes kernel: i915 display info: has_fpga_dbg: yes
May 16 21:41:38 hermes kernel: i915 display info: has_gmch: no
May 16 21:41:38 hermes kernel: i915 display info: has_hotplug: yes
May 16 21:41:38 hermes kernel: i915 display info: has_hti: no
May 16 21:41:38 hermes kernel: i915 display info: has_ipc: yes
May 16 21:41:38 hermes kernel: i915 display info: has_overlay: no
May 16 21:41:38 hermes kernel: i915 display info: has_psr: yes
May 16 21:41:38 hermes kernel: i915 display info: has_psr_hw_tracking: yes
May 16 21:41:38 hermes kernel: i915 display info: overlay_needs_physical: no
May 16 21:41:38 hermes kernel: i915 display info: supports_tv: no
May 16 21:41:38 hermes kernel: i915 display info: has_hdcp: yes
May 16 21:41:38 hermes kernel: i915 display info: has_dmc: yes
May 16 21:41:38 hermes kernel: i915 display info: has_dsc: no
May 16 21:41:38 hermes kernel: Registered IR keymap rc-cec
May 16 21:41:38 hermes kernel: rc rc0: DP-4 as /devices/pci0000:00/0000:00:02.0/rc/rc0
May 16 21:41:38 hermes kernel: input: DP-4 as /devices/pci0000:00/0000:00:02.0/rc/rc0/input10
May 16 21:41:38 hermes kernel: fbcon: i915drmfb (fb0) is primary device
May 16 21:41:38 hermes kernel: fbcon: Deferring console take-over
May 16 21:41:38 hermes kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 16 21:41:38 hermes kernel: fbcon: Taking over console
May 16 21:41:38 hermes kernel: EXT4-fs (nvme0n1p2): mounted filesystem a88ffea0-6e6c-4138-82c1-e1575b189989 r/w with ordered data mode. Quota mode: none.
May 16 21:41:38 hermes kernel: Console: switching to colour frame buffer device 240x67
May 16 21:41:38 hermes systemd[1]: systemd 255.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
May 16 21:41:38 hermes systemd[1]: Detected architecture x86-64.
May 16 21:41:38 hermes systemd[1]: Hostname set to <hermes>.
May 16 21:41:38 hermes systemd[1]: bpf-lsm: LSM BPF program attached
May 16 21:41:38 hermes systemd[1]: Queued start job for default target Graphical Interface.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/dirmngr.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/getty.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/gpg-agent.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/keyboxd.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/modprobe.
May 16 21:41:38 hermes systemd[1]: Created slice Slice /system/systemd-fsck.
May 16 21:41:38 hermes systemd[1]: Created slice User and Session Slice.
May 16 21:41:38 hermes systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 16 21:41:38 hermes systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 16 21:41:38 hermes systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 16 21:41:38 hermes systemd[1]: Expecting device /dev/nvme0n1p1...
May 16 21:41:38 hermes systemd[1]: Expecting device /dev/sda1...
May 16 21:41:38 hermes systemd[1]: Expecting device /dev/sda2...
May 16 21:41:38 hermes systemd[1]: Expecting device /dev/sda3...
May 16 21:41:38 hermes systemd[1]: Expecting device /dev/sda4...
May 16 21:41:38 hermes systemd[1]: Reached target Local Encrypted Volumes.
May 16 21:41:38 hermes systemd[1]: Reached target Local Integrity Protected Volumes.
May 16 21:41:38 hermes systemd[1]: Reached target Path Units.
May 16 21:41:38 hermes systemd[1]: Reached target Remote File Systems.
May 16 21:41:38 hermes systemd[1]: Reached target Slice Units.
May 16 21:41:38 hermes systemd[1]: Reached target Local Verity Protected Volumes.
May 16 21:41:38 hermes systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 16 21:41:38 hermes systemd[1]: Listening on Process Core Dump Socket.
May 16 21:41:38 hermes systemd[1]: Listening on Journal Socket (/dev/log).
May 16 21:41:38 hermes systemd[1]: Listening on Journal Socket.
May 16 21:41:38 hermes systemd[1]: Listening on Network Service Netlink Socket.
May 16 21:41:38 hermes systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:38 hermes systemd[1]: Listening on udev Control Socket.
May 16 21:41:38 hermes systemd[1]: Listening on udev Kernel Socket.
May 16 21:41:38 hermes systemd[1]: Listening on User Database Manager Socket.
May 16 21:41:38 hermes systemd[1]: Mounting Huge Pages File System...
May 16 21:41:38 hermes systemd[1]: Mounting POSIX Message Queue File System...
May 16 21:41:38 hermes systemd[1]: Mounting Kernel Debug File System...
May 16 21:41:38 hermes systemd[1]: Mounting Kernel Trace File System...
May 16 21:41:38 hermes systemd[1]: Starting Create List of Static Device Nodes...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Module configfs...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Module dm_mod...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Module drm...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Module fuse...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Module loop...
May 16 21:41:38 hermes systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
May 16 21:41:38 hermes systemd[1]: Starting Journal Service...
May 16 21:41:38 hermes systemd[1]: Starting Load Kernel Modules...
May 16 21:41:38 hermes systemd[1]: Starting Generate network units from Kernel command line...
May 16 21:41:38 hermes systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:38 hermes systemd[1]: Starting Remount Root and Kernel File Systems...
May 16 21:41:38 hermes systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:38 hermes systemd[1]: Starting Coldplug All udev Devices...
May 16 21:41:38 hermes systemd[1]: Mounted Huge Pages File System.
May 16 21:41:38 hermes systemd[1]: Mounted POSIX Message Queue File System.
May 16 21:41:38 hermes systemd[1]: Mounted Kernel Debug File System.
May 16 21:41:38 hermes systemd[1]: Mounted Kernel Trace File System.
May 16 21:41:38 hermes systemd[1]: Finished Create List of Static Device Nodes.
May 16 21:41:38 hermes systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Module configfs.
May 16 21:41:38 hermes systemd[1]: modprobe@drm.service: Deactivated successfully.
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Module drm.
May 16 21:41:38 hermes kernel: loop: module loaded
May 16 21:41:38 hermes systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Module fuse.
May 16 21:41:38 hermes systemd[1]: modprobe@loop.service: Deactivated successfully.
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Module loop.
May 16 21:41:38 hermes systemd[1]: Mounting FUSE Control File System...
May 16 21:41:38 hermes systemd[1]: Mounting Kernel Configuration File System...
May 16 21:41:38 hermes systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 16 21:41:38 hermes systemd[1]: Finished Generate network units from Kernel command line.
May 16 21:41:38 hermes systemd[1]: Mounted Kernel Configuration File System.
May 16 21:41:38 hermes systemd[1]: Mounted FUSE Control File System.
May 16 21:41:38 hermes kernel: Asymmetric key parser 'pkcs8' registered
May 16 21:41:38 hermes kernel: device-mapper: uevent: version 1.0.3
May 16 21:41:38 hermes kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Modules.
May 16 21:41:38 hermes systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 16 21:41:38 hermes systemd[1]: Finished Load Kernel Module dm_mod.
May 16 21:41:38 hermes systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 16 21:41:38 hermes systemd[1]: Starting Apply Kernel Variables...
May 16 21:41:38 hermes systemd-journald[339]: Collecting audit messages is disabled.
May 16 21:41:38 hermes systemd[1]: Starting User Database Manager...
May 16 21:41:38 hermes systemd[1]: Finished Apply Kernel Variables.
May 16 21:41:38 hermes systemd-journald[339]: Journal started
May 16 21:41:38 hermes systemd-journald[339]: Runtime Journal (/run/log/journal/113047646feb4cdaacf1a8ff22cd6ae4) is 8.0M, max 1.5G, 1.5G free.
May 16 21:41:38 hermes systemd-modules-load[340]: Inserted module 'pkcs8_key_parser'
May 16 21:41:38 hermes systemd[1]: Started Journal Service.
May 16 21:41:38 hermes systemd[1]: Finished Remount Root and Kernel File Systems.
May 16 21:41:38 hermes kernel: EXT4-fs (nvme0n1p2): re-mounted a88ffea0-6e6c-4138-82c1-e1575b189989 r/w. Quota mode: none.
May 16 21:41:38 hermes systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
May 16 21:41:38 hermes systemd[1]: Starting Flush Journal to Persistent Storage...
May 16 21:41:38 hermes systemd[1]: Starting Load/Save OS Random Seed...
May 16 21:41:38 hermes systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:38 hermes systemd[1]: Started User Database Manager.
May 16 21:41:38 hermes systemd-journald[339]: Time spent on flushing to /var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4 is 50.299ms for 964 entries.
May 16 21:41:38 hermes systemd-journald[339]: System Journal (/var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4) is 429.1M, max 4.0G, 3.5G free.
May 16 21:41:38 hermes systemd-journald[339]: Received client request to flush runtime journal.
May 16 21:41:38 hermes systemd-journald[339]: /var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4/system.journal: Journal file uses a different sequence number ID, rotating.
May 16 21:41:38 hermes systemd-journald[339]: Rotating system journal.
May 16 21:41:38 hermes systemd[1]: Finished Load/Save OS Random Seed.
May 16 21:41:38 hermes systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 16 21:41:38 hermes systemd[1]: Starting Create System Users...
May 16 21:41:38 hermes systemd[1]: Finished Create System Users.
May 16 21:41:38 hermes systemd[1]: Starting Create Static Device Nodes in /dev...
May 16 21:41:38 hermes systemd[1]: Finished Create Static Device Nodes in /dev.
May 16 21:41:38 hermes systemd[1]: Reached target Preparation for Local File Systems.
May 16 21:41:38 hermes systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 16 21:41:38 hermes systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 16 21:41:38 hermes systemd[1]: Finished Flush Journal to Persistent Storage.
May 16 21:41:38 hermes systemd-udevd[385]: Using default interface naming scheme 'v255'.
May 16 21:41:38 hermes systemd[1]: Started Rule-based Manager for Device Events and Files.
May 16 21:41:38 hermes (udev-worker)[396]: nvidia_modeset: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidia-modeset c $(grep nvidia /proc/devices | cut -d \ -f 1) 254'' failed with exit code 1.
May 16 21:41:38 hermes (udev-worker)[391]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia /proc/devices | cut -d \ -f 1) 255'' failed with exit code 1.
May 16 21:41:38 hermes (udev-worker)[391]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut -d \ -f 4); do /usr/bin/mknod -Z -m 666 /dev/nvidia${i} c $(grep nvidia /proc/devices | cut -d \ -f 1) ${i}; done'' failed with exit code 1.
May 16 21:41:38 hermes systemd[1]: Finished Coldplug All udev Devices.
May 16 21:41:38 hermes (udev-worker)[455]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia /proc/devices | cut -d \ -f 1) 255'' failed with exit code 1.
May 16 21:41:38 hermes (udev-worker)[455]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut -d \ -f 4); do /usr/bin/mknod -Z -m 666 /dev/nvidia${i} c $(grep nvidia /proc/devices | cut -d \ -f 1) ${i}; done'' failed with exit code 1.
May 16 21:41:38 hermes kernel: mousedev: PS/2 mouse device common for all mice
May 16 21:41:38 hermes kernel: intel_pmc_core INT33A1:00: initialized
May 16 21:41:38 hermes kernel: EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
May 16 21:41:38 hermes kernel: pps_core: LinuxPPS API ver. 1 registered
May 16 21:41:38 hermes kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
May 16 21:41:38 hermes systemd[1]: Found device KXG60PNV512G NVMe TOSHIBA 512GB efi.
May 16 21:41:38 hermes kernel: PTP clock support registered
May 16 21:41:38 hermes kernel: input: PC Speaker as /devices/platform/pcspkr/input/input11
May 16 21:41:38 hermes kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
May 16 21:41:38 hermes kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
May 16 21:41:38 hermes kernel: intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
May 16 21:41:38 hermes kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
May 16 21:41:38 hermes kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
May 16 21:41:38 hermes systemd[1]: Found device WDC_WD40EZAZ-00SF3B0 shared.
May 16 21:41:38 hermes systemd[1]: Found device WDC_WD40EZAZ-00SF3B0 media.
May 16 21:41:38 hermes systemd[1]: Found device WDC_WD40EZAZ-00SF3B0 swap.
May 16 21:41:38 hermes systemd[1]: Found device WDC_WD40EZAZ-00SF3B0 snapshots.
May 16 21:41:38 hermes kernel: i2c i2c-10: 2/4 memory slots populated (from DMI)
May 16 21:41:38 hermes kernel: i2c i2c-10: Successfully instantiated SPD at 0x51
May 16 21:41:38 hermes kernel: i2c i2c-10: Successfully instantiated SPD at 0x53
May 16 21:41:38 hermes kernel: input: Dell AIO WMI hotkeys as /devices/virtual/input/input12
May 16 21:41:38 hermes kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
May 16 21:41:38 hermes systemd[1]: Activating swap /dev/sda4...
May 16 21:41:38 hermes systemd[1]: Mounting /shared...
May 16 21:41:38 hermes kernel: mc: Linux media interface: v0.10
May 16 21:41:38 hermes kernel: Creating 1 MTD partitions on "0000:00:1f.5":
May 16 21:41:38 hermes kernel: 0x000000000000-0x000002000000 : "BIOS"
May 16 21:41:38 hermes kernel: e1000e: Intel(R) PRO/1000 Network Driver
May 16 21:41:38 hermes kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
May 16 21:41:38 hermes kernel: e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
May 16 21:41:38 hermes systemd[1]: Starting File System Check on /dev/nvme0n1p1...
May 16 21:41:38 hermes systemd[1]: Starting File System Check on /dev/sda2...
May 16 21:41:38 hermes systemd[1]: Starting File System Check on /dev/sda3...
May 16 21:41:38 hermes kernel: Adding 37748732k swap on /dev/sda4. Priority:-2 extents:1 across:37748732k
May 16 21:41:38 hermes systemd[1]: Activated swap /dev/sda4.
May 16 21:41:38 hermes systemd[1]: Reached target Swaps.
May 16 21:41:38 hermes systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 16 21:41:38 hermes systemd[1]: Mounting Temporary Directory /tmp...
May 16 21:41:38 hermes kernel: iTCO_vendor_support: vendor-support=0
May 16 21:41:38 hermes systemd[1]: Starting Virtual Console Setup...
May 16 21:41:38 hermes kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
May 16 21:41:38 hermes kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 16 21:41:38 hermes kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 16 21:41:38 hermes kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 16 21:41:38 hermes kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 16 21:41:38 hermes kernel: cfg80211: failed to load regulatory.db
May 16 21:41:38 hermes kernel: ee1004 10-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
May 16 21:41:38 hermes kernel: ee1004 10-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
May 16 21:41:38 hermes kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:04/wmi_bus/wmi_bus-PNP0C14:04/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input13
May 16 21:41:38 hermes systemd[1]: Mounted Temporary Directory /tmp.
May 16 21:41:38 hermes kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
May 16 21:41:38 hermes kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
May 16 21:41:38 hermes systemd-fsck[503]: fsck.fat 4.2 (2021-01-31)
May 16 21:41:38 hermes systemd-fsck[503]: /dev/nvme0n1p1: 191 files, 7384/261628 clusters
May 16 21:41:38 hermes kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
May 16 21:41:38 hermes kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
May 16 21:41:38 hermes kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
May 16 21:41:38 hermes kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
May 16 21:41:38 hermes kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
May 16 21:41:38 hermes systemd[1]: Finished File System Check on /dev/nvme0n1p1.
May 16 21:41:38 hermes systemd[1]: Mounting /efi...
May 16 21:41:38 hermes kernel: exFAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
May 16 21:41:38 hermes kernel: cryptd: max_cpu_qlen set to 1000
May 16 21:41:38 hermes kernel: i8042: PNP: No PS/2 controller found.
May 16 21:41:38 hermes kernel: Intel(R) Wireless WiFi driver for Linux
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: enabling device (0100 -> 0102)
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
May 16 21:41:38 hermes kernel: snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
May 16 21:41:38 hermes kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May 16 21:41:38 hermes kernel: snd_hda_intel 0000:01:00.1: enabling device (0100 -> 0102)
May 16 21:41:38 hermes kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
May 16 21:41:38 hermes kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
May 16 21:41:38 hermes kernel: usb 1-2: Warning! Unlikely big volume range (=496), cval->res is probably wrong.
May 16 21:41:38 hermes kernel: usb 1-2: [50] FU [Mic Capture Volume] ch = 1, val = 0/7936/16
May 16 21:41:38 hermes kernel: usbcore: registered new interface driver snd-usb-audio
May 16 21:41:38 hermes systemd[1]: Finished Virtual Console Setup.
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: loaded firmware version 86.fb5c9aeb.0 ty-a0-gf-a0-86.ucode op_mode iwlmvm
May 16 21:41:38 hermes kernel: AVX2 version of gcm_enc/dec engaged.
May 16 21:41:38 hermes kernel: AES CTR mode by8 optimization enabled
May 16 21:41:38 hermes systemd[1]: Reached target Sound Card.
May 16 21:41:38 hermes systemd[1]: Mounted /efi.
May 16 21:41:38 hermes systemd-fsck[505]: /dev/sda2: clean, 103682/67108864 files, 19338397/268435456 blocks
May 16 21:41:38 hermes kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input14
May 16 21:41:38 hermes kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input15
May 16 21:41:38 hermes kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input16
May 16 21:41:38 hermes kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input17
May 16 21:41:38 hermes systemd[1]: Finished File System Check on /dev/sda2.
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3234: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: inputs:
May 16 21:41:38 hermes kernel: snd_hda_codec_realtek hdaudioC1D0: Headset Mic=0x19
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
May 16 21:41:38 hermes kernel: thermal thermal_zone2: failed to read out thermal zone (-61)
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: WRT: Invalid buffer destination
May 16 21:41:38 hermes kernel: input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card1/input18
May 16 21:41:38 hermes kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card1/input19
May 16 21:41:38 hermes kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input20
May 16 21:41:38 hermes kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input21
May 16 21:41:38 hermes kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input22
May 16 21:41:38 hermes systemd-fsck[543]: /dev/sda3: clean, 1427091/67108864 files, 32712433/268435456 blocks
May 16 21:41:38 hermes kernel: intel_tcc_cooling: Programmable TCC Offset detected
May 16 21:41:38 hermes systemd[1]: Finished File System Check on /dev/sda3.
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: WFPM_AUTH_KEY_0: 0x90
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: loaded PNVM version e28bb9d7
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: Detected RF GF, rfid=0x10d000
May 16 21:41:38 hermes kernel: intel_rapl_common: Found RAPL domain package
May 16 21:41:38 hermes kernel: intel_rapl_common: Found RAPL domain core
May 16 21:41:38 hermes kernel: intel_rapl_common: Found RAPL domain uncore
May 16 21:41:38 hermes kernel: intel_rapl_common: Found RAPL domain dram
May 16 21:41:38 hermes kernel: e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
May 16 21:41:38 hermes systemd[1]: Mounted /shared.
May 16 21:41:38 hermes kernel: iwlwifi 0000:04:00.0: base HW address: f8:b5:4d:d6:f8:71
May 16 21:41:39 hermes kernel: e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) d8:9e:f3:96:39:8e
May 16 21:41:39 hermes kernel: e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
May 16 21:41:39 hermes kernel: e1000e 0000:00:1f.6 eth0: MAC: 13, PHY: 12, PBA No: FFFFFF-0FF
May 16 21:41:39 hermes kernel: e1000e 0000:00:1f.6 eno1: renamed from eth0
May 16 21:41:39 hermes systemd[1]: Starting Load/Save RF Kill Switch Status...
May 16 21:41:39 hermes systemd[1]: Started Load/Save RF Kill Switch Status.
May 16 21:41:39 hermes systemd[1]: Mounting /.snapshots...
May 16 21:41:39 hermes systemd[1]: Mounting /media...
May 16 21:41:39 hermes kernel: EXT4-fs (sda3): mounted filesystem 25c3d5f9-ce04-4127-a4b2-efdb062ab55b r/w with ordered data mode. Quota mode: none.
May 16 21:41:39 hermes systemd[1]: Mounted /.snapshots.
May 16 21:41:39 hermes kernel: EXT4-fs (sda2): mounted filesystem c5e5bc30-62d1-477e-9c9f-baea117bbd34 r/w with ordered data mode. Quota mode: none.
May 16 21:41:39 hermes systemd[1]: Mounted /media.
May 16 21:41:39 hermes systemd[1]: Reached target Local File Systems.
May 16 21:41:39 hermes systemd[1]: Listening on System Extension Image Management (Varlink).
May 16 21:41:39 hermes systemd[1]: Starting Rebuild Dynamic Linker Cache...
May 16 21:41:39 hermes systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 16 21:41:39 hermes systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 16 21:41:39 hermes systemd[1]: Starting Create Volatile Files and Directories...
May 16 21:41:39 hermes systemd[1]: Finished Rebuild Dynamic Linker Cache.
May 16 21:41:39 hermes systemd[1]: Finished Create Volatile Files and Directories.
May 16 21:41:39 hermes systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 16 21:41:39 hermes systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 16 21:41:39 hermes systemd[1]: Starting Rebuild Journal Catalog...
May 16 21:41:39 hermes systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 16 21:41:39 hermes systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 16 21:41:39 hermes systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 16 21:41:39 hermes systemd[1]: Finished Rebuild Journal Catalog.
May 16 21:41:39 hermes systemd[1]: Starting Update is Completed...
May 16 21:41:39 hermes systemd[1]: Finished Update is Completed.
May 16 21:41:39 hermes systemd[1]: Reached target System Initialization.
May 16 21:41:39 hermes systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 16 21:41:39 hermes systemd[1]: Started Daily man-db regeneration.
May 16 21:41:39 hermes systemd[1]: Started Daily verification of password and group files.
May 16 21:41:39 hermes systemd[1]: Started Daily Cleanup of Temporary Directories.
May 16 21:41:39 hermes systemd[1]: Reached target Timer Units.
May 16 21:41:39 hermes systemd[1]: Listening on D-Bus System Message Bus Socket.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 16 21:41:39 hermes systemd[1]: Reached target Socket Units.
May 16 21:41:39 hermes systemd[1]: Starting D-Bus System Message Bus...
May 16 21:41:39 hermes systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:39 hermes systemd[1]: Started D-Bus System Message Bus.
May 16 21:41:39 hermes systemd[1]: Reached target Basic System.
May 16 21:41:39 hermes systemd[1]: Started DHCP/ IPv4LL/ IPv6RA/ DHCPv6 client on all interfaces.
May 16 21:41:39 hermes systemd[1]: Starting Netfilter Tables...
May 16 21:41:39 hermes systemd[1]: SSH Key Generation was skipped because no trigger condition checks were met.
May 16 21:41:39 hermes systemd[1]: Starting User Login Management...
May 16 21:41:39 hermes systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 16 21:41:39 hermes systemd[1]: Starting WPA supplicant...
May 16 21:41:39 hermes dbus-broker-launch[584]: Ready
May 16 21:41:39 hermes dhcpcd[586]: dhcpcd-10.0.6 starting
May 16 21:41:39 hermes dhcpcd[591]: dev: loaded udev
May 16 21:41:39 hermes dhcpcd[591]: DUID 00:01:00:01:2d:d3:c7:ec:f8:b5:4d:d6:f8:71
May 16 21:41:39 hermes systemd[1]: Started WPA supplicant.
May 16 21:41:39 hermes wpa_supplicant[589]: Successfully initialized wpa_supplicant
May 16 21:41:40 hermes systemd-logind[588]: New seat seat0.
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event2 (Power Button)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event1 (Power Button)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event0 (Sleep Button)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event10 (DP-4)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event4 (Cherry GmbH CHERRY Wireless Desktop)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event7 (Cherry GmbH CHERRY Wireless Desktop Consumer Control)
May 16 21:41:40 hermes systemd-logind[588]: Watching system buttons on /dev/input/event8 (Cherry GmbH CHERRY Wireless Desktop System Control)
May 16 21:41:40 hermes systemd[1]: Started User Login Management.
May 16 21:41:40 hermes kernel: 8021q: 802.1Q VLAN Support v1.8
May 16 21:41:40 hermes dhcpcd[620]: wlan0: starting wpa_supplicant
May 16 21:41:40 hermes dhcpcd-run-hooks[627]: wlan0: starting wpa_supplicant
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: WRT: Invalid buffer destination
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: WFPM_AUTH_KEY_0: 0x90
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
May 16 21:41:40 hermes systemd[1]: nftables.service: Deactivated successfully.
May 16 21:41:40 hermes systemd[1]: Finished Netfilter Tables.
May 16 21:41:40 hermes systemd[1]: Reached target Preparation for Network.
May 16 21:41:40 hermes systemd[1]: Starting Network Configuration...
May 16 21:41:40 hermes kernel: iwlwifi 0000:04:00.0: Registered PHC clock: iwlwifi-PTP, with index: 1
May 16 21:41:40 hermes systemd-networkd[642]: /etc/systemd/network/wlan0.network:2: Interface name is not valid or too long, ignoring assignment: 6140
May 16 21:41:40 hermes systemd-networkd[642]: lo: Link UP
May 16 21:41:40 hermes systemd-networkd[642]: lo: Gained carrier
May 16 21:41:40 hermes systemd-networkd[642]: wlan0: Link UP
May 16 21:41:40 hermes systemd-networkd[642]: Enumeration completed
May 16 21:41:40 hermes systemd[1]: Started Network Configuration.
May 16 21:41:40 hermes systemd-networkd[642]: wlan0: Link DOWN
May 16 21:41:40 hermes systemd-networkd[642]: wlan0: Link UP
May 16 21:41:40 hermes systemd[1]: Reached target Network.
May 16 21:41:40 hermes dhcpcd[591]: no interfaces have a carrier
May 16 21:41:40 hermes dhcpcd[591]: wlan0: waiting for carrier
May 16 21:41:40 hermes systemd[1]: Started OpenSSH Daemon.
May 16 21:41:40 hermes systemd[1]: Starting Permit User Sessions...
May 16 21:41:40 hermes systemd[1]: Starting xrdp session manager...
May 16 21:41:40 hermes (p-sesman)[662]: xrdp-sesman.service: Referenced but unset environment variable evaluates to an empty string: SESMAN_OPTIONS
May 16 21:41:40 hermes systemd[1]: Started xrdp session manager.
May 16 21:41:40 hermes systemd[1]: Starting xrdp daemon...
May 16 21:41:40 hermes systemd[1]: Finished Permit User Sessions.
May 16 21:41:40 hermes xrdp-sesman[662]: [INFO ] starting xrdp-sesman with pid 662
May 16 21:41:40 hermes systemd[1]: Started Getty on tty1.
May 16 21:41:40 hermes systemd[1]: Reached target Login Prompts.
May 16 21:41:40 hermes xrdp-sesman[662]: [INFO ] Sesman now listening on /var/run/xrdp/sesman.socket
May 16 21:41:40 hermes (xrdp)[663]: xrdp.service: Referenced but unset environment variable evaluates to an empty string: XRDP_OPTIONS
May 16 21:41:40 hermes systemd[1]: Started xrdp daemon.
May 16 21:41:40 hermes systemd[1]: Reached target Multi-User System.
May 16 21:41:40 hermes systemd[1]: Reached target Graphical Interface.
May 16 21:41:40 hermes systemd[1]: Startup finished in 6.645s (firmware) + 6.693s (loader) + 4.330s (kernel) + 3.077s (userspace) = 20.746s.
May 16 21:41:40 hermes xrdp[663]: [INFO ] starting xrdp with pid 663
May 16 21:41:40 hermes xrdp[663]: [INFO ] address [0.0.0.0] port [3389] mode 1
May 16 21:41:40 hermes xrdp[663]: [INFO ] listening to port 3389 on 0.0.0.0
May 16 21:41:40 hermes xrdp[663]: [INFO ] xrdp_listen_pp done
May 16 21:41:40 hermes agetty[665]: failed to open credentials directory
May 16 21:41:40 hermes systemd-networkd[642]: eno1: Link UP
May 16 21:41:40 hermes dhcpcd[591]: eno1: waiting for carrier
May 16 21:41:40 hermes sshd[647]: Server listening on 0.0.0.0 port 22.
May 16 21:41:40 hermes sshd[647]: Server listening on :: port 22.
May 16 21:41:43 hermes kernel: wlan0: authenticate with f6:92:bf:95:38:98 (local address=f8:b5:4d:d6:f8:71)
May 16 21:41:43 hermes kernel: wlan0: send auth to f6:92:bf:95:38:98 (try 1/3)
May 16 21:41:43 hermes kernel: wlan0: authenticated
May 16 21:41:43 hermes kernel: wlan0: associate with f6:92:bf:95:38:98 (try 1/3)
May 16 21:41:43 hermes kernel: wlan0: RX AssocResp from f6:92:bf:95:38:98 (capab=0x11 status=0 aid=5)
May 16 21:41:43 hermes kernel: wlan0: associated
May 16 21:41:43 hermes dhcpcd[591]: wlan0: carrier acquired
May 16 21:41:43 hermes systemd-networkd[642]: wlan0: Gained carrier
May 16 21:41:43 hermes dhcpcd[591]: wlan0: connected to Access Point: Haywire 6140 E
May 16 21:41:43 hermes dhcpcd[591]: wlan0: IAID 4d:d6:f8:71
May 16 21:41:43 hermes dhcpcd[591]: wlan0: adding address fe80::52ba:88c0:d183:58a7
May 16 21:41:44 hermes systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 16 21:41:44 hermes dhcpcd[591]: wlan0: soliciting an IPv6 router
May 16 21:41:45 hermes systemd-networkd[642]: wlan0: Gained IPv6LL
May 16 21:41:45 hermes dhcpcd[591]: wlan0: rebinding lease of 192.168.1.19
May 16 21:41:46 hermes dhcpcd[591]: wlan0: leased 192.168.1.19 for 345600 seconds
May 16 21:41:46 hermes dhcpcd[591]: wlan0: adding route to 192.168.1.0/24
May 16 21:41:46 hermes dhcpcd[591]: wlan0: adding default route via 192.168.1.1
May 16 21:41:51 hermes sshd[703]: Connection from 192.168.1.25 port 57048 on 192.168.1.19 port 22 rdomain ""
May 16 21:41:51 hermes sshd[703]: Accepted key RSA SHA256:tPe5CEWeV8tHd4xy8Dfbwko+Pwl2TdhxkNzSWU/7B7o found at /home/remconn/.ssh/authorized_keys:1
May 16 21:41:51 hermes sshd[703]: Postponed publickey for remconn from 192.168.1.25 port 57048 ssh2 [preauth]
May 16 21:41:51 hermes sshd[703]: Accepted key RSA SHA256:tPe5CEWeV8tHd4xy8Dfbwko+Pwl2TdhxkNzSWU/7B7o found at /home/remconn/.ssh/authorized_keys:1
May 16 21:41:51 hermes sshd[703]: Accepted publickey for remconn from 192.168.1.25 port 57048 ssh2: RSA SHA256:tPe5CEWeV8tHd4xy8Dfbwko+Pwl2TdhxkNzSWU/7B7o
May 16 21:41:51 hermes sshd[703]: User child is on pid 705
May 16 21:41:51 hermes sshd[705]: Starting session: shell on pts/0 for remconn from 192.168.1.25 port 57048 id 0
May 16 21:41:51 hermes systemd-journald[339]: /var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4/user-1001.journal: Journal file uses a different sequence number ID, rotating.
May 16 21:41:57 hermes dhcpcd[591]: wlan0: no IPv6 Routers available
May 16 21:42:01 hermes xrdp[663]: [INFO ] Socket 14: connection accepted from [::1]:43612
May 16 21:42:01 hermes xrdp[717]: [INFO ] Using default X.509 certificate: /etc/xrdp/cert.pem
May 16 21:42:01 hermes xrdp[717]: [INFO ] Using default X.509 key file: /etc/xrdp/key.pem
May 16 21:42:01 hermes xrdp[717]: [INFO ] Security protocol: configured [SSL|RDP], requested [SSL|HYBRID|HYBRID_EX|RDP], selected [SSL]
May 16 21:42:01 hermes xrdp[717]: [ERROR] SSL_read: Failure in SSL library (protocol error?)
May 16 21:42:01 hermes xrdp[717]: [ERROR] SSL: error:0A000126:SSL routines::unexpected eof while reading
May 16 21:42:01 hermes xrdp[717]: [ERROR] libxrdp_force_read: header read error
May 16 21:42:01 hermes xrdp[717]: [ERROR] Processing [ITU-T T.125] Connect-Initial failed
May 16 21:42:01 hermes xrdp[663]: [INFO ] Socket 14: connection accepted from [::1]:43616
May 16 21:42:01 hermes xrdp[717]: [ERROR] [MCS Connection Sequence] receive connection request failed
May 16 21:42:01 hermes xrdp[717]: [ERROR] xrdp_sec_incoming: xrdp_mcs_incoming failed
May 16 21:42:01 hermes xrdp[720]: [INFO ] Using default X.509 certificate: /etc/xrdp/cert.pem
May 16 21:42:01 hermes xrdp[717]: [ERROR] xrdp_rdp_incoming: xrdp_sec_incoming failed
May 16 21:42:01 hermes xrdp[720]: [INFO ] Using default X.509 key file: /etc/xrdp/key.pem
May 16 21:42:01 hermes xrdp[717]: [ERROR] xrdp_process_main_loop: libxrdp_process_incoming failed
May 16 21:42:01 hermes xrdp[720]: [INFO ] Security protocol: configured [SSL|RDP], requested [SSL|HYBRID|HYBRID_EX|RDP], selected [SSL]
May 16 21:42:01 hermes xrdp[717]: [ERROR] xrdp_iso_send: trans_write_copy_s failed
May 16 21:42:01 hermes xrdp[717]: [ERROR] Sending [ITU T.125] DisconnectProviderUltimatum failed
May 16 21:42:01 hermes xrdp[720]: [INFO ] Connected client computer name: DESKTOP-HFQTGB2
May 16 21:42:01 hermes xrdp[720]: [INFO ] client supports gfx protocol
May 16 21:42:01 hermes xrdp[720]: [WARN ] Received [MS-RDPBCGR] TS_UD_HEADER type 0xc006 is unknown (ignored)
May 16 21:42:01 hermes xrdp[720]: [WARN ] Received [MS-RDPBCGR] TS_UD_HEADER type 0xc00a is unknown (ignored)
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_load_keyboard_layout: Keyboard information sent by the RDP client, keyboard_type:[0x04], keyboard_subtype:[0x00], keylayout:[0x00000409]
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_load_keyboard_layout: model [] variant [] layout [us] options []
May 16 21:42:01 hermes xrdp[720]: [INFO ] TLS connection established from [::1]:43616 TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384
May 16 21:42:01 hermes xrdp[720]: [INFO ] Client supports single-screen resizes by xrdp
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_caps_process_pointer: client supports new(color) cursor
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_process_offscreen_bmpcache: support level 1 cache size 10485760 MB cache entries 100
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_caps_process_codecs: NSCodec(CA8D1BB9-000F-154F-589F-AE2D1A87E2D6), codec id [1], properties len [3]
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_caps_process_codecs: Image RemoteFX(2744CCD4-9D8A-4E74-803C-0ECBEEA19C54), codec id [5], properties len [49]
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_caps_process_codecs: RemoteFX(76772F12-BD72-4463-AFB3-B73C9C6F7886), codec id [3], properties len [49]
May 16 21:42:01 hermes xrdp[720]: [INFO ] Client Capability: LARGE_POINTER_FLAG_96x96 supported
May 16 21:42:01 hermes xrdp[720]: [INFO ] Loading keymap file /etc/xrdp/km-00000409.ini
May 16 21:42:01 hermes xrdp[720]: [WARN ] local keymap file for 0x00000409 found and doesn't match built in keymap, using local keymap file
May 16 21:42:01 hermes xrdp[720]: [INFO ] Login screen monitor height is 1080 pixels over 193 mm (142 DPI)
May 16 21:42:01 hermes xrdp[720]: [INFO ] xrdp_egfx_create: error 0 channel_id 1
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_caps_advertise:
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x00080004 flags 0x00000000 (index: 0)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x00080105 flags 0x00000000 (index: 1)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0002 flags 0x00000000 (index: 2)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0200 flags 0x00000000 (index: 3)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0301 flags 0x00000000 (index: 4)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0400 flags 0x00000000 (index: 5)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0502 flags 0x00000000 (index: 6)
May 16 21:42:03 hermes xrdp[720]: [INFO ] version 0x000a0600 flags 0x00000000 (index: 7)
May 16 21:42:03 hermes xrdp[720]: [INFO ] replying version 0x000a0600 flags 0x00000000
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_caps_advertise: xrdp_egfx_send_capsconfirm error 0 best_index 7
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_egfx_reset_graphics:
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_egfx_reset_graphics: width 1920 height 1080 monitorcount 1
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_caps_advertise: xrdp_egfx_send_reset_graphics error 0 monitorCount 0
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_create_surfaces: map surface_id 0 left 0 top 0 width 1920 height 1080
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_encoder_create: starting gfx rfx pro codec session
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_invalidate_wm_screen:
May 16 21:42:03 hermes xrdp[720]: [INFO ] xrdp_mm_egfx_caps_advertise: egfx created.
May 16 21:42:12 hermes xrdp[720]: [WARN ] Ignoring obsolete SCP port value '3350'
May 16 21:42:12 hermes xrdp[720]: [INFO ] xrdp_wm_log_msg: sesman connect ok
May 16 21:42:12 hermes xrdp-sesman[662]: [INFO ] Socket 13: connection accepted from AF_UNIX
May 16 21:42:12 hermes xrdp[720]: [INFO ] xrdp_wm_log_msg: Performing login request for amy
May 16 21:42:12 hermes xrdp-sesman[662]: [INFO ] Received system login request from xrdp for user: amy IP: ::1
May 16 21:42:12 hermes xrdp-sesexec[724]: [INFO ] starting xrdp-sesexec with pid 724
May 16 21:42:12 hermes dbus-broker-launch[584]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
May 16 21:42:12 hermes xrdp-sesexec[724]: [INFO ] TerminalServerUsers group tsusers doesn't exist. Access granted for amy
May 16 21:42:12 hermes xrdp-sesexec[724]: [INFO ] Access permitted for user: amy
May 16 21:42:12 hermes xrdp[720]: [INFO ] xrdp_wm_log_msg: login was successful - creating session
May 16 21:42:12 hermes xrdp-sesman[662]: [INFO ] Received sys login status for amy : logged in
May 16 21:42:12 hermes xrdp-sesman[662]: [INFO ] Received request from xrdp to create a session for user amy
May 16 21:42:12 hermes xrdp-sesexec[724]: pam_unix(xrdp-sesman:session): session opened for user amy(uid=1000) by amy(uid=0)
May 16 21:42:12 hermes systemd-logind[588]: New session 1 of user amy.
May 16 21:42:12 hermes systemd[1]: Created slice User Slice of UID 1000.
May 16 21:42:12 hermes systemd[1]: Starting User Runtime Directory /run/user/1000...
May 16 21:42:12 hermes systemd[1]: Finished User Runtime Directory /run/user/1000.
May 16 21:42:12 hermes systemd[1]: Starting User Manager for UID 1000...
May 16 21:42:12 hermes (systemd)[731]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[amy] ruser=[<unknown>] rhost=[<unknown>]
May 16 21:42:12 hermes (systemd)[731]: pam_unix(systemd-user:session): session opened for user amy(uid=1000) by amy(uid=0)
May 16 21:42:12 hermes systemd-xdg-autostart-generator[737]: Exec binary 'kclockd' does not exist: No such file or directory
May 16 21:42:12 hermes systemd-xdg-autostart-generator[737]: /home/amy/.config/autostart/org.kde.kclockd-autostart.desktop: not generating unit, executable specified in Exec= does not exist.
May 16 21:42:13 hermes systemd[731]: Queued start job for default target Main User Target.
May 16 21:42:13 hermes systemd[731]: Created slice User Application Slice.
May 16 21:42:13 hermes systemd[731]: Reached target Paths.
May 16 21:42:13 hermes systemd[731]: Reached target Timers.
May 16 21:42:13 hermes systemd[731]: Starting D-Bus User Message Bus Socket...
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG network certificate management daemon.
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG cryptographic agent and passphrase cache.
May 16 21:42:13 hermes systemd[731]: Listening on GnuPG public key management service.
May 16 21:42:13 hermes systemd[731]: Listening on p11-kit server.
May 16 21:42:13 hermes systemd[731]: Listening on D-Bus User Message Bus Socket.
May 16 21:42:13 hermes systemd[731]: Reached target Sockets.
May 16 21:42:13 hermes systemd[731]: Reached target Basic System.
May 16 21:42:13 hermes systemd[731]: Reached target Main User Target.
May 16 21:42:13 hermes systemd[731]: Startup finished in 151ms.
May 16 21:42:13 hermes systemd[1]: Started User Manager for UID 1000.
May 16 21:42:13 hermes systemd[1]: Started Session 1 of User amy.
May 16 21:42:13 hermes xrdp-sesexec[740]: [INFO ] Starting X server on display 10: /usr/lib/Xorg :10 -auth .Xauthority -config xrdp/xorg_nvidia.conf -noreset -nolisten tcp -logfile .xorgxrdp.%s.log
May 16 21:42:13 hermes xrdp-sesman[740]: X.Org X Server 1.21.1.13
May 16 21:42:13 hermes xrdp-sesman[740]: X Protocol Version 11, Revision 0
May 16 21:42:13 hermes xrdp-sesman[740]: Current Operating System: Linux hermes 6.8.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000 x86_64
May 16 21:42:13 hermes xrdp-sesman[740]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
May 16 21:42:13 hermes xrdp-sesman[740]:
May 16 21:42:13 hermes xrdp-sesman[740]: Current version of pixman: 0.43.4
May 16 21:42:13 hermes xrdp-sesman[740]: Before reporting problems, check [url]http://wiki.x.org[/url]
May 16 21:42:13 hermes xrdp-sesman[740]: to make sure that you have the latest version.
May 16 21:42:13 hermes xrdp-sesman[740]: Markers: (--) probed, (**) from config file, (==) default setting,
May 16 21:42:13 hermes xrdp-sesman[740]: (++) from command line, (!!) notice, (II) informational,
May 16 21:42:13 hermes xrdp-sesman[740]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
May 16 21:42:13 hermes xrdp-sesman[740]: (++) Log file: ".xorgxrdp.10.log", Time: Thu May 16 21:42:13 2024
May 16 21:42:13 hermes xrdp-sesman[740]: (++) Using config file: "/etc/X11/xrdp/xorg_nvidia.conf"
May 16 21:42:13 hermes xrdp-sesman[740]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
May 16 21:42:13 hermes xrdp-sesman[740]: xorgxrdpSetup:
May 16 21:42:13 hermes xrdp-sesman[740]: rdpmousePlug:
May 16 21:42:13 hermes xrdp-sesman[740]: rdpkeybPlug:
May 16 21:42:13 hermes xrdp-sesman[740]: xorgxrdpCheckWrap: NVIDIA driver found
May 16 21:42:13 hermes xrdp-sesman[740]: xorgxrdpDriverFunc:
May 16 21:42:13 hermes xrdp-sesman[740]: xorgxrdpPciProbe:
May 16 21:42:13 hermes xrdp-sesman[740]: xorgxrdpPciProbe:
May 16 21:42:13 hermes xrdp-sesman[740]: (EE)
May 16 21:42:13 hermes xrdp-sesman[740]: Fatal server error:
May 16 21:42:13 hermes xrdp-sesman[740]: (EE) no screens found(EE)
May 16 21:42:13 hermes xrdp-sesman[740]: (EE)
May 16 21:42:13 hermes xrdp-sesman[740]: Please consult the The X.Org Foundation support
May 16 21:42:13 hermes xrdp-sesman[740]: at [url]http://wiki.x.org[/url]
May 16 21:42:13 hermes xrdp-sesman[740]: for help.
May 16 21:42:13 hermes xrdp-sesman[740]: (EE) Please also check the log file at ".xorgxrdp.10.log" for additional information.
May 16 21:42:13 hermes xrdp-sesman[740]: (EE)
May 16 21:42:13 hermes xrdp-sesman[740]: (EE) Server terminated with error (1). Closing log file.
May 16 21:42:23 hermes xrdp-sesexec[724]: [ERROR] waitforx: Unable to open display :10
May 16 21:42:23 hermes xrdp-sesexec[724]: [ERROR] X server failed to start
May 16 21:42:23 hermes xrdp[720]: [INFO ] xrdp_wm_log_msg: Can't create session for user amy - X server could not be started
May 16 21:42:23 hermes xrdp-sesman[662]: [INFO ] Session on display 10 has finished.
May 16 21:42:23 hermes xrdp-sesexec[724]: pam_unix(xrdp-sesman:session): session closed for user amy
May 16 21:42:23 hermes systemd[1]: session-1.scope: Deactivated successfully.
May 16 21:42:23 hermes systemd-logind[588]: Session 1 logged out. Waiting for processes to exit.
May 16 21:42:23 hermes systemd-logind[588]: Removed session 1.
May 16 21:42:25 hermes login[665]: pam_unix(login:session): session opened for user amy(uid=1000) by amy(uid=0)
May 16 21:42:25 hermes systemd-logind[588]: New session 3 of user amy.
May 16 21:42:25 hermes systemd[1]: Started Session 3 of User amy.
May 16 21:42:25 hermes login[665]: LOGIN ON tty1 BY amy
May 16 21:43:01 hermes unix_chkpwd[757]: password check failed for user (amy)
May 16 21:43:01 hermes sudo[755]: pam_unix(sudo:auth): authentication failure; logname=amy uid=1000 euid=0 tty=/dev/tty1 ruser=amy rhost= user=amy
May 16 21:43:15 hermes sudo[761]: amy : TTY=tty1 ; PWD=/home/amy ; USER=root ; TSID=0000BI ; COMMAND=/usr/bin/journalctl
May 16 21:43:15 hermes sudo[761]: pam_unix(sudo:session): session opened for user root(uid=0) by amy(uid=1000)
May 16 21:43:20 hermes sudo[761]: pam_unix(sudo:session): session closed for user root
May 16 21:43:26 hermes sudo[765]: amy : TTY=tty1 ; PWD=/home/amy ; USER=root ; TSID=0000BJ ; COMMAND=/usr/bin/journalctl --boot
May 16 21:43:26 hermes sudo[765]: pam_unix(sudo:session): session opened for user root(uid=0) by amy(uid=1000)xorgxrdp.10.log
[ 40.125]
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[ 40.125] Current Operating System: Linux hermes 6.8.9-arch1-2 #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000 x86_64
[ 40.125] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
[ 40.125]
[ 40.125] Current version of pixman: 0.43.4
[ 40.125] Before reporting problems, check [url]http://wiki.x.org[/url]
to make sure that you have the latest version.
[ 40.125] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 40.125] (++) Log file: ".xorgxrdp.10.log", Time: Thu May 16 21:42:13 2024
[ 40.126] (++) Using config file: "/etc/X11/xrdp/xorg_nvidia.conf"
[ 40.126] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 40.126] (**) Option "defaultserverlayout" "XRDP GPU Server"
[ 40.126] (**) ServerLayout "XRDP GPU Server"
[ 40.126] (**) |-->Screen "dGPU" (0)
[ 40.126] (**) | |-->Monitor "<default monitor>"
[ 40.127] (**) | |-->Device "dGPU"
[ 40.127] (==) No monitor specified for screen "dGPU".
Using a default monitor configuration.
[ 40.127] (**) |-->Input Device "xrdpMouse"
[ 40.127] (**) |-->Input Device "xrdpKeyboard"
[ 40.127] (**) Option "DontVTSwitch" "on"
[ 40.127] (**) Option "AutoAddDevices" "off"
[ 40.127] (**) Allowing byte-swapped clients
[ 40.127] (**) Not automatically adding devices
[ 40.127] (==) Automatically enabling devices
[ 40.127] (==) Automatically adding GPU devices
[ 40.127] (==) Automatically binding GPU devices
[ 40.127] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 40.127] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 40.127] Entry deleted from font path.
[ 40.127] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[ 40.127] Entry deleted from font path.
[ 40.127] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 40.127] Entry deleted from font path.
[ 40.127] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 40.127] Entry deleted from font path.
[ 40.127] (==) FontPath set to:
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 40.127] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 40.127] (II) Module ABI versions:
[ 40.127] X.Org ANSI C Emulation: 0.4
[ 40.127] X.Org Video Driver: 25.2
[ 40.127] X.Org XInput driver : 24.4
[ 40.127] X.Org Server Extension : 10.0
[ 40.128] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 40.130] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 40.130] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[ 40.130] (EE) systemd-logind: failed to take device /dev/dri/card1: Operation not permitted
[ 40.130] (II) xfree86: Adding drm device (/dev/dri/card2)
[ 40.130] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card2
[ 40.130] (EE) systemd-logind: failed to take device /dev/dri/card2: Operation not permitted
[ 40.133] (--) PCI:*(0@0:2:0) 8086:3e96:1028:0871 rev 0, Mem @ 0xa2000000/16777216, 0x80000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[ 40.133] (--) PCI: (1@0:0:0) 10de:1f82:1458:400e rev 161, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
[ 40.133] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 40.133] (II) "glx" will be loaded by default.
[ 40.133] (II) LoadModule: "xorgxrdp"
[ 40.134] (II) Loading /usr/lib/xorg/modules/libxorgxrdp.so
[ 40.135] (II) Module XORGXRDP: vendor="X.Org Foundation"
[ 40.135] compiled for 1.21.1.13, module version = 0.9.80
[ 40.135] ABI class: X.Org Video Driver, version 25.2
[ 40.135] xorgxrdpSetup:
[ 40.135] (II) LoadModule: "glx"
[ 40.135] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 40.138] (II) Module glx: vendor="X.Org Foundation"
[ 40.138] compiled for 1.21.1.13, module version = 1.0.0
[ 40.138] ABI class: X.Org Server Extension, version 10.0
[ 40.138] (II) LoadModule: "nvidia"
[ 40.138] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 40.141] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 40.141] compiled for 1.6.99.901, module version = 1.0.0
[ 40.141] Module class: X.Org Video Driver
[ 40.141] (II) LoadModule: "xrdpmouse"
[ 40.141] (II) Loading /usr/lib/xorg/modules/input/xrdpmouse_drv.so
[ 40.141] (II) Module XRDPMOUSE: vendor="X.Org Foundation"
[ 40.141] compiled for 1.21.1.13, module version = 0.9.80
[ 40.141] Module class: X.Org XInput Driver
[ 40.141] ABI class: X.Org XInput driver, version 24.4
[ 40.141] rdpmousePlug:
[ 40.141] (II) LoadModule: "xrdpkeyb"
[ 40.141] (II) Loading /usr/lib/xorg/modules/input/xrdpkeyb_drv.so
[ 40.141] (II) Module XRDPKEYB: vendor="X.Org Foundation"
[ 40.141] compiled for 1.21.1.13, module version = 0.9.80
[ 40.141] Module class: X.Org XInput Driver
[ 40.141] ABI class: X.Org XInput driver, version 24.4
[ 40.141] rdpkeybPlug:
[ 40.141] xorgxrdpCheckWrap: NVIDIA driver found
[ 40.142] (II) NVIDIA dlloader X Driver 550.78 Sun Apr 14 06:27:13 UTC 2024
[ 40.142] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 40.142] xorgxrdpDriverFunc:
[ 40.142] xorgxrdpPciProbe:
[ 40.142] (II) Loading sub module "fb"
[ 40.142] (II) LoadModule: "fb"
[ 40.142] (II) Module "fb" already built-in
[ 40.142] (II) Loading sub module "wfb"
[ 40.142] (II) LoadModule: "wfb"
[ 40.142] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 40.143] (II) Module wfb: vendor="X.Org Foundation"
[ 40.143] compiled for 1.21.1.13, module version = 1.0.0
[ 40.143] ABI class: X.Org ANSI C Emulation, version 0.4
[ 40.145] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the
[ 40.145] (EE) NVIDIA: system's kernel log for additional error messages and
[ 40.145] (EE) NVIDIA: consult the NVIDIA README for details.
[ 40.145] xorgxrdpPciProbe:
[ 40.146] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the
[ 40.146] (EE) NVIDIA: system's kernel log for additional error messages and
[ 40.146] (EE) NVIDIA: consult the NVIDIA README for details.
[ 40.146] (EE) No devices detected.
[ 40.146] (EE)
Fatal server error:
[ 40.146] (EE) no screens found(EE)
[ 40.146] (EE)
Please consult the The X.Org Foundation support
at [url]http://wiki.x.org[/url]
for help.
[ 40.146] (EE) Please also check the log file at ".xorgxrdp.10.log" for additional information.
[ 40.146] (EE)
[ 40.146] (EE) Server terminated with error (1). Closing log file.dmesg (nothing interesting here)
[ 0.000000] Linux version 6.8.9-arch1-2 (linux@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000001011fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000101b000-0x000000002bfb3fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002bfb4000-0x000000002cacdfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000002cace000-0x000000002cb4afff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000002cb4b000-0x000000002d044fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000002d045000-0x000000002dc15fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000002dc16000-0x000000002dc16fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000002dc20000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040400000-0x0000000048bc2fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000048bcc000-0x0000000065536fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000065537000-0x0000000065537fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000065538000-0x0000000065538fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000065539000-0x0000000068552fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000006855c000-0x000000007acfffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007ad00000-0x000000007f7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087c7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x0725d018-0x07266a57] usable ==> usable
[ 0.000000] e820: update [mem 0x0725d018-0x07266a57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000001011fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000101b000-0x000000000725d017] usable
[ 0.000000] reserve setup_data: [mem 0x000000000725d018-0x0000000007266a57] usable
[ 0.000000] reserve setup_data: [mem 0x0000000007266a58-0x000000002bfb3fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000002bfb4000-0x000000002cacdfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000002cace000-0x000000002cb4afff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000002cb4b000-0x000000002d044fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000002d045000-0x000000002dc15fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000002dc16000-0x000000002dc16fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000002dc20000-0x000000003fffffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000040400000-0x0000000048bc2fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000048bcc000-0x0000000065536fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000065537000-0x0000000065537fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000000065538000-0x0000000065538fff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000065539000-0x0000000068552fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000006855c000-0x000000007acfffff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007ad00000-0x000000007f7fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000087c7fffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x2cae7000 ACPI=0x2cae7000 SMBIOS=0xf0000 SMBIOS 3.0=0xf0020 TPMFinalLog=0x2cf85000 ESRT=0x2d751498 MEMATTR=0x29f97018 INITRD=0x1855e718 RNG=0x2cae6018 TPMEventLog=0x7267018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem63: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map
[ 0.000000] e820: remove [mem 0xf0000000-0xf7ffffff] reserved
[ 0.000000] efi: Not removing mem64: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem65: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem66: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem67: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.1.1 present.
[ 0.000000] DMI: Dell Inc. Precision 3630 Tower/0NNNCT, BIOS 2.27.0 02/29/2024
[ 0.000000] tsc: Detected 3800.000 MHz processor
[ 0.000000] tsc: Detected 3799.900 MHz TSC
[ 0.002660] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.002662] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.002670] last_pfn = 0x87c800 max_arch_pfn = 0x400000000
[ 0.002674] MTRR map: 7 entries (3 fixed + 4 variable; max 23), built from 10 variable MTRRs
[ 0.002676] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003006] last_pfn = 0x7ad00 max_arch_pfn = 0x400000000
[ 0.008773] esrt: Reserving ESRT space from 0x000000002d751498 to 0x000000002d7514d0.
[ 0.008780] Using GB pages for direct mapping
[ 0.009171] Secure boot enabled
[ 0.009172] RAMDISK: [mem 0x0726f000-0x0dce0fff]
[ 0.009248] ACPI: Early table checksum verification disabled
[ 0.009250] ACPI: RSDP 0x000000002CAE7000 000024 (v02 DELL )
[ 0.009253] ACPI: XSDT 0x000000002CAE70C8 00010C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.009258] ACPI: FACP 0x000000002CB29F88 000114 (v06 DELL CBX3 01072009 AMI 00010013)
[ 0.009263] ACPI: DSDT 0x000000002CAE7260 042D25 (v02 DELL CBX3 01072009 INTL 20160527)
[ 0.009265] ACPI: FACS 0x000000002D043F80 000040
[ 0.009267] ACPI: APIC 0x000000002CB2A0A0 0000F4 (v04 DELL CBX3 01072009 AMI 00010013)
[ 0.009270] ACPI: FPDT 0x000000002CB2A198 000044 (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.009272] ACPI: FIDT 0x000000002CB2A1E0 00009C (v01 DELL CBX3 01072009 AMI 00010013)
[ 0.009275] ACPI: MCFG 0x000000002CB2A280 00003C (v01 DELL CBX3 01072009 MSFT 00000097)
[ 0.009277] ACPI: SSDT 0x000000002CB2A2C0 001B26 (v02 CpuRef CpuSsdt 00003000 INTL 20160527)
[ 0.009279] ACPI: SSDT 0x000000002CB2BDE8 0033EC (v02 SaSsdt SaSsdt 00003000 INTL 20160527)
[ 0.009282] ACPI: SSDT 0x000000002CB2F1D8 002497 (v02 PegSsd PegSsdt 00001000 INTL 20160527)
[ 0.009284] ACPI: HPET 0x000000002CB31670 000038 (v01 DELL\x CBX3 00000002 01000013)
[ 0.009287] ACPI: SSDT 0x000000002CB316A8 000FD3 (v02 DELL\x Ther_Rvp 00001000 INTL 20160527)
[ 0.009289] ACPI: SSDT 0x000000002CB32680 000ADD (v02 INTEL DELL__TB 00000000 INTL 20160527)
[ 0.009292] ACPI: UEFI 0x000000002CB33160 000042 (v01 DELL\x CBX3 00000002 01000013)
[ 0.009294] ACPI: LPIT 0x000000002CB331A8 000094 (v01 DELL\x CBX3 00000002 01000013)
[ 0.009296] ACPI: SSDT 0x000000002CB33240 0027DE (v02 DELL\x PtidDevc 00001000 INTL 20160527)
[ 0.009299] ACPI: SSDT 0x000000002CB35A20 0014E2 (v02 DELL\x TbtTypeC 00000000 INTL 20160527)
[ 0.009301] ACPI: DBGP 0x000000002CB36F08 000034 (v01 DELL\x CBX3 00000002 01000013)
[ 0.009303] ACPI: DBG2 0x000000002CB36F40 000054 (v00 DELL\x CBX3 00000002 01000013)
[ 0.009306] ACPI: SSDT 0x000000002CB36F98 001B67 (v02 DELL\x UsbCTabl 00001000 INTL 20160527)
[ 0.009308] ACPI: SLIC 0x000000002CB38B00 000176 (v03 DELL CBX3 01072009 MSFT 00010013)
[ 0.009311] ACPI: MSDM 0x000000002CB38C78 000055 (v03 DELL CBX3 06222004 AMI 00010013)
[ 0.009313] ACPI: DMAR 0x000000002CB38CD0 0000C8 (v01 INTEL EDK2 00000002 01000013)
[ 0.009316] ACPI: SSDT 0x000000002CB38D98 000144 (v02 Intel ADebTabl 00001000 INTL 20160527)
[ 0.009318] ACPI: BGRT 0x000000002CB38EE0 000038 (v00 01072009 AMI 00010013)
[ 0.009320] ACPI: TPM2 0x000000002CB38F18 000034 (v04 DELL\x CBX3 00000001 AMI 00000000)
[ 0.009323] ACPI: ASF! 0x000000002CB38F50 0000A0 (v32 DELL\x CBX3 00000002 01000013)
[ 0.009326] ACPI: EINJ 0x000000002CB38FF0 000130 (v01 AMI AMI.EINJ 00000000 AMI. 00000000)
[ 0.009329] ACPI: ERST 0x000000002CB39120 000230 (v01 AMIER AMI.ERST 00000000 AMI. 00000000)
[ 0.009331] ACPI: BERT 0x000000002CB39350 000030 (v01 AMI AMI.BERT 00000000 AMI. 00000000)
[ 0.009333] ACPI: HEST 0x000000002CB39380 0000A8 (v01 AMI AMI.HEST 00000000 AMI. 00000000)
[ 0.009335] ACPI: Reserving FACP table memory at [mem 0x2cb29f88-0x2cb2a09b]
[ 0.009337] ACPI: Reserving DSDT table memory at [mem 0x2cae7260-0x2cb29f84]
[ 0.009337] ACPI: Reserving FACS table memory at [mem 0x2d043f80-0x2d043fbf]
[ 0.009338] ACPI: Reserving APIC table memory at [mem 0x2cb2a0a0-0x2cb2a193]
[ 0.009339] ACPI: Reserving FPDT table memory at [mem 0x2cb2a198-0x2cb2a1db]
[ 0.009339] ACPI: Reserving FIDT table memory at [mem 0x2cb2a1e0-0x2cb2a27b]
[ 0.009340] ACPI: Reserving MCFG table memory at [mem 0x2cb2a280-0x2cb2a2bb]
[ 0.009341] ACPI: Reserving SSDT table memory at [mem 0x2cb2a2c0-0x2cb2bde5]
[ 0.009341] ACPI: Reserving SSDT table memory at [mem 0x2cb2bde8-0x2cb2f1d3]
[ 0.009342] ACPI: Reserving SSDT table memory at [mem 0x2cb2f1d8-0x2cb3166e]
[ 0.009343] ACPI: Reserving HPET table memory at [mem 0x2cb31670-0x2cb316a7]
[ 0.009343] ACPI: Reserving SSDT table memory at [mem 0x2cb316a8-0x2cb3267a]
[ 0.009344] ACPI: Reserving SSDT table memory at [mem 0x2cb32680-0x2cb3315c]
[ 0.009345] ACPI: Reserving UEFI table memory at [mem 0x2cb33160-0x2cb331a1]
[ 0.009345] ACPI: Reserving LPIT table memory at [mem 0x2cb331a8-0x2cb3323b]
[ 0.009346] ACPI: Reserving SSDT table memory at [mem 0x2cb33240-0x2cb35a1d]
[ 0.009347] ACPI: Reserving SSDT table memory at [mem 0x2cb35a20-0x2cb36f01]
[ 0.009347] ACPI: Reserving DBGP table memory at [mem 0x2cb36f08-0x2cb36f3b]
[ 0.009348] ACPI: Reserving DBG2 table memory at [mem 0x2cb36f40-0x2cb36f93]
[ 0.009349] ACPI: Reserving SSDT table memory at [mem 0x2cb36f98-0x2cb38afe]
[ 0.009349] ACPI: Reserving SLIC table memory at [mem 0x2cb38b00-0x2cb38c75]
[ 0.009350] ACPI: Reserving MSDM table memory at [mem 0x2cb38c78-0x2cb38ccc]
[ 0.009351] ACPI: Reserving DMAR table memory at [mem 0x2cb38cd0-0x2cb38d97]
[ 0.009351] ACPI: Reserving SSDT table memory at [mem 0x2cb38d98-0x2cb38edb]
[ 0.009352] ACPI: Reserving BGRT table memory at [mem 0x2cb38ee0-0x2cb38f17]
[ 0.009353] ACPI: Reserving TPM2 table memory at [mem 0x2cb38f18-0x2cb38f4b]
[ 0.009353] ACPI: Reserving ASF! table memory at [mem 0x2cb38f50-0x2cb38fef]
[ 0.009354] ACPI: Reserving EINJ table memory at [mem 0x2cb38ff0-0x2cb3911f]
[ 0.009355] ACPI: Reserving ERST table memory at [mem 0x2cb39120-0x2cb3934f]
[ 0.009355] ACPI: Reserving BERT table memory at [mem 0x2cb39350-0x2cb3937f]
[ 0.009356] ACPI: Reserving HEST table memory at [mem 0x2cb39380-0x2cb39427]
[ 0.009627] No NUMA configuration found
[ 0.009627] Faking a node at [mem 0x0000000000000000-0x000000087c7fffff]
[ 0.009630] NODE_DATA(0) allocated [mem 0x87c7fb000-0x87c7fffff]
[ 0.009667] Zone ranges:
[ 0.009667] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009669] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009670] Normal [mem 0x0000000100000000-0x000000087c7fffff]
[ 0.009671] Device empty
[ 0.009672] Movable zone start for each node
[ 0.009673] Early memory node ranges
[ 0.009673] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.009674] node 0: [mem 0x0000000000100000-0x0000000001011fff]
[ 0.009675] node 0: [mem 0x000000000101b000-0x000000002bfb3fff]
[ 0.009676] node 0: [mem 0x000000002dc16000-0x000000002dc16fff]
[ 0.009676] node 0: [mem 0x000000002dc20000-0x000000003fffffff]
[ 0.009677] node 0: [mem 0x0000000040400000-0x0000000048bc2fff]
[ 0.009678] node 0: [mem 0x0000000048bcc000-0x0000000065536fff]
[ 0.009678] node 0: [mem 0x0000000065539000-0x0000000068552fff]
[ 0.009679] node 0: [mem 0x000000006855c000-0x000000007acfffff]
[ 0.009680] node 0: [mem 0x0000000100000000-0x000000087c7fffff]
[ 0.009682] Initmem setup node 0 [mem 0x0000000000001000-0x000000087c7fffff]
[ 0.009685] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009701] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.010347] On node 0, zone DMA32: 9 pages in unavailable ranges
[ 0.010400] On node 0, zone DMA32: 7266 pages in unavailable ranges
[ 0.010701] On node 0, zone DMA32: 9 pages in unavailable ranges
[ 0.010854] On node 0, zone DMA32: 1024 pages in unavailable ranges
[ 0.011343] On node 0, zone DMA32: 9 pages in unavailable ranges
[ 0.011395] On node 0, zone DMA32: 2 pages in unavailable ranges
[ 0.011715] On node 0, zone DMA32: 9 pages in unavailable ranges
[ 0.044648] On node 0, zone Normal: 21248 pages in unavailable ranges
[ 0.044761] On node 0, zone Normal: 14336 pages in unavailable ranges
[ 0.044795] Reserving Intel graphics memory at [mem 0x7d800000-0x7f7fffff]
[ 0.045476] ACPI: PM-Timer IO Port: 0x1808
[ 0.045482] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.045484] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.045484] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.045485] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.045486] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.045486] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.045487] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.045487] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.045488] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.045489] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.045489] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.045490] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.045551] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.045553] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.045554] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.045558] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.045559] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.045571] e820: update [mem 0x27923000-0x279a9fff] usable ==> reserved
[ 0.045581] TSC deadline timer available
[ 0.045582] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[ 0.045596] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.045598] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.045600] PM: hibernation: Registered nosave memory: [mem 0x01012000-0x0101afff]
[ 0.045601] PM: hibernation: Registered nosave memory: [mem 0x0725d000-0x0725dfff]
[ 0.045602] PM: hibernation: Registered nosave memory: [mem 0x07266000-0x07266fff]
[ 0.045604] PM: hibernation: Registered nosave memory: [mem 0x27923000-0x279a9fff]
[ 0.045605] PM: hibernation: Registered nosave memory: [mem 0x2bfb4000-0x2cacdfff]
[ 0.045606] PM: hibernation: Registered nosave memory: [mem 0x2cace000-0x2cb4afff]
[ 0.045606] PM: hibernation: Registered nosave memory: [mem 0x2cb4b000-0x2d044fff]
[ 0.045607] PM: hibernation: Registered nosave memory: [mem 0x2d045000-0x2dc15fff]
[ 0.045608] PM: hibernation: Registered nosave memory: [mem 0x2dc17000-0x2dc1ffff]
[ 0.045609] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[ 0.045611] PM: hibernation: Registered nosave memory: [mem 0x48bc3000-0x48bcbfff]
[ 0.045612] PM: hibernation: Registered nosave memory: [mem 0x65537000-0x65537fff]
[ 0.045613] PM: hibernation: Registered nosave memory: [mem 0x65538000-0x65538fff]
[ 0.045614] PM: hibernation: Registered nosave memory: [mem 0x68553000-0x6855bfff]
[ 0.045615] PM: hibernation: Registered nosave memory: [mem 0x7ad00000-0x7f7fffff]
[ 0.045616] PM: hibernation: Registered nosave memory: [mem 0x7f800000-0xfdffffff]
[ 0.045617] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.045617] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.045618] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.045618] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[ 0.045619] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.045619] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.045621] [mem 0x7f800000-0xfdffffff] available for PCI devices
[ 0.045622] Booting paravirtualized kernel on bare hardware
[ 0.045623] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.050012] setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[ 0.050470] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[ 0.050476] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[ 0.050478] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
[ 0.050497] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a88ffea0-6e6c-4138-82c1-e1575b189989 rw loglevel=3 quiet
[ 0.050545] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
[ 0.052726] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.053815] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.053963] Fallback order for Node 0: 0
[ 0.053965] Built 1 zonelists, mobility grouping on. Total pages: 8214054
[ 0.053966] Policy zone: Normal
[ 0.054123] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.054129] software IO TLB: area num 16.
[ 0.126100] Memory: 32530740K/33378392K available (16384K kernel code, 2121K rwdata, 12976K rodata, 3456K init, 3732K bss, 847392K reserved, 0K cma-reserved)
[ 0.126285] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.126293] Kernel/User page tables isolation: enabled
[ 0.126316] ftrace: allocating 49113 entries in 192 pages
[ 0.132842] ftrace: allocated 192 pages with 2 groups
[ 0.132900] Dynamic Preempt: full
[ 0.132939] rcu: Preemptible hierarchical RCU implementation.
[ 0.132940] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[ 0.132940] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.132941] Trampoline variant of Tasks RCU enabled.
[ 0.132942] Rude variant of Tasks RCU enabled.
[ 0.132942] Tracing variant of Tasks RCU enabled.
[ 0.132942] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.132943] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[ 0.135123] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[ 0.135396] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.135796] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.135822] Console: colour dummy device 80x25
[ 0.135824] printk: legacy console [tty0] enabled
[ 0.135864] ACPI: Core revision 20230628
[ 0.136099] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.136100] APIC: Switch to symmetric I/O mode setup
[ 0.136102] DMAR: Host address width 39
[ 0.136102] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.136107] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.136109] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.136112] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.136114] DMAR: RMRR base: 0x0000002c99c000 end: 0x0000002c9bbfff
[ 0.136115] DMAR: RMRR base: 0x0000007d000000 end: 0x0000007f7fffff
[ 0.136116] DMAR: RMRR base: 0x0000002ca4e000 end: 0x0000002cacdfff
[ 0.136117] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.136118] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.136119] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.139212] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.139214] x2apic enabled
[ 0.139272] APIC: Switched APIC routing to: cluster x2apic
[ 0.148366] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6d8bf270d8d, max_idle_ns: 881590865083 ns
[ 0.148371] Calibrating delay loop (skipped), value calculated using timer frequency.. 7602.45 BogoMIPS (lpj=12666333)
[ 0.148390] x86/cpu: SGX disabled by BIOS.
[ 0.148394] CPU0: Thermal monitoring enabled (TM1)
[ 0.148431] process: using mwait in idle threads
[ 0.148434] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.148434] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.148439] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.148440] Spectre V2 : Mitigation: IBRS
[ 0.148441] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.148442] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.148443] RETBleed: Mitigation: IBRS
[ 0.148444] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.148445] Spectre V2 : User space: Mitigation: STIBP via prctl
[ 0.148446] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.148450] MDS: Mitigation: Clear CPU buffers
[ 0.148451] TAA: Mitigation: TSX disabled
[ 0.148452] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.148455] SRBDS: Mitigation: Microcode
[ 0.148460] GDS: Mitigation: Microcode
[ 0.148467] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.148468] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.148469] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.148470] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.148471] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.148472] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.148474] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.148475] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.148476] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.151702] Freeing SMP alternatives memory: 40K
[ 0.151702] pid_max: default: 32768 minimum: 301
[ 0.151702] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
[ 0.151702] landlock: Up and running.
[ 0.151702] Yama: becoming mindful.
[ 0.151702] LSM support for eBPF active
[ 0.151702] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.151702] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.151702] smpboot: CPU0: Intel(R) Xeon(R) E-2186G CPU @ 3.80GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[ 0.151702] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.151702] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.151702] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.151702] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.151702] ... version: 4
[ 0.151702] ... bit width: 48
[ 0.151702] ... generic registers: 4
[ 0.151702] ... value mask: 0000ffffffffffff
[ 0.151702] ... max period: 00007fffffffffff
[ 0.151702] ... fixed-purpose events: 3
[ 0.151702] ... event mask: 000000070000000f
[ 0.151702] signal: max sigframe size: 2032
[ 0.151702] Estimated ratio of average max frequency by base frequency (times 1024): 1212
[ 0.151702] rcu: Hierarchical SRCU implementation.
[ 0.151702] rcu: Max phase no-delay instances is 1000.
[ 0.151702] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.151702] smp: Bringing up secondary CPUs ...
[ 0.151702] smpboot: x86: Booting SMP configuration:
[ 0.151702] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11
[ 0.156139] MDS CPU bug present and SMT on, data leak possible. See [url]https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html[/url] for more details.
[ 0.156139] MMIO Stale Data CPU bug present and SMT on, data leak possible. See [url]https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html[/url] for more details.
[ 0.156139] smp: Brought up 1 node, 12 CPUs
[ 0.156139] smpboot: Max logical packages: 1
[ 0.156139] smpboot: Total of 12 processors activated (91234.49 BogoMIPS)
[ 0.159172] devtmpfs: initialized
[ 0.159172] x86/mm: Memory block size: 128MB
[ 0.160372] ACPI: PM: Registering ACPI NVS region [mem 0x2cb4b000-0x2d044fff] (5218304 bytes)
[ 0.160372] ACPI: PM: Registering ACPI NVS region [mem 0x65537000-0x65537fff] (4096 bytes)
[ 0.160372] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.160372] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.160372] pinctrl core: initialized pinctrl subsystem
[ 0.161733] PM: RTC time: 01:41:33, date: 2024-05-17
[ 0.162104] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.162405] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.162582] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.162764] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.162774] audit: initializing netlink subsys (disabled)
[ 0.162786] audit: type=2000 audit(1715910093.013:1): state=initialized audit_enabled=0 res=1
[ 0.162786] thermal_sys: Registered thermal governor 'fair_share'
[ 0.162786] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.162786] thermal_sys: Registered thermal governor 'step_wise'
[ 0.162786] thermal_sys: Registered thermal governor 'user_space'
[ 0.162786] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.162786] cpuidle: using governor ladder
[ 0.162786] cpuidle: using governor menu
[ 0.162786] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.162786] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.162786] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
[ 0.162786] PCI: not using ECAM ([mem 0xf0000000-0xf7ffffff] not reserved)
[ 0.162786] PCI: Using configuration type 1 for base access
[ 0.162786] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.168420] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.168420] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.168420] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.168420] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.173883] ACPI: Added _OSI(Module Device)
[ 0.173883] ACPI: Added _OSI(Processor Device)
[ 0.173883] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.173883] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.220866] ACPI: 10 ACPI AML tables successfully acquired and loaded
[ 0.227157] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.232205] ACPI: Dynamic OEM Table Load:
[ 0.232215] ACPI: SSDT 0xFFFF97FB814E6800 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
[ 0.232736] ACPI: Dynamic OEM Table Load:
[ 0.232741] ACPI: SSDT 0xFFFF97FB814DD800 00070D (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
[ 0.234136] ACPI: Dynamic OEM Table Load:
[ 0.234140] ACPI: SSDT 0xFFFF97FB814C3600 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160527)
[ 0.235684] ACPI: Dynamic OEM Table Load:
[ 0.235689] ACPI: SSDT 0xFFFF97FB814DF800 0005FC (v02 PmRef ApIst 00003000 INTL 20160527)
[ 0.237069] ACPI: Dynamic OEM Table Load:
[ 0.237074] ACPI: SSDT 0xFFFF97FB814E2400 000317 (v02 PmRef ApHwp 00003000 INTL 20160527)
[ 0.238486] ACPI: Dynamic OEM Table Load:
[ 0.238491] ACPI: SSDT 0xFFFF97FB814ED000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20160527)
[ 0.240444] ACPI: Dynamic OEM Table Load:
[ 0.240448] ACPI: SSDT 0xFFFF97FB814E3400 00030A (v02 PmRef ApCst 00003000 INTL 20160527)
[ 0.246178] ACPI: _OSC evaluated successfully for all CPUs
[ 0.247358] ACPI: Interpreter enabled
[ 0.247389] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.247390] ACPI: Using IOAPIC for interrupt routing
[ 0.248965] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]
[ 0.250569] PCI: ECAM [mem 0xf0000000-0xf7ffffff] reserved as ACPI motherboard resource
[ 0.250601] HEST: Table parsing has been initialized.
[ 0.250648] GHES: APEI firmware first mode is enabled by APEI bit.
[ 0.250651] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.250652] PCI: Ignoring E820 reservations for host bridge windows
[ 0.252008] ACPI: Enabled 11 GPEs in block 00 to 7F
[ 0.252153] ACPI Error: No handler for Region [WST1] ((____ptrval____)) [GenericSerialBus] (20230628/evregion-130)
[ 0.252153] ACPI Error: Region GenericSerialBus (ID=9) has no handler (20230628/exfldio-261)
[ 0.252165] ACPI Error: Aborting method \_SB.PCI0.I2C0.PAS1 due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
[ 0.252165] ACPI Error: Aborting method \_GPE._L20 due to previous error (AE_NOT_EXIST) (20230628/psparse-529)
[ 0.252165] ACPI Error: AE_NOT_EXIST, while evaluating GPE method [_L20] (20230628/evgpe-511)
[ 0.268458] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.271529] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.271927] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.272316] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.284800] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.289883] ACPI: \_TZ_.FN00: New power resource
[ 0.289956] ACPI: \_TZ_.FN01: New power resource
[ 0.290028] ACPI: \_TZ_.FN02: New power resource
[ 0.290098] ACPI: \_TZ_.FN03: New power resource
[ 0.290168] ACPI: \_TZ_.FN04: New power resource
[ 0.290736] ACPI: \PIN_: New power resource
[ 0.291209] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[ 0.291214] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.291318] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 0.291504] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
[ 0.291505] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.292661] PCI host bridge to bus 0000:00
[ 0.292662] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.292664] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.292666] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[ 0.292668] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000effff window]
[ 0.292669] pci_bus 0000:00: root bus resource [mem 0x7f800000-0xefffffff window]
[ 0.292670] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.292671] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.292673] pci_bus 0000:00: root bus resource [bus 00-7e]
[ 0.292755] pci 0000:00:00.0: [8086:3ec6] type 00 class 0x060000 conventional PCI endpoint
[ 0.292814] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
[ 0.292826] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.292828] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.292830] pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
[ 0.292835] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.292857] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.293468] pci 0000:00:02.0: [8086:3e96] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.293475] pci 0000:00:02.0: BAR 0 [mem 0xa2000000-0xa2ffffff 64bit]
[ 0.293480] pci 0000:00:02.0: BAR 2 [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.293483] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
[ 0.293496] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.293498] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.293702] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.293710] pci 0000:00:08.0: BAR 0 [mem 0x400011b000-0x400011bfff 64bit]
[ 0.293874] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.293908] pci 0000:00:12.0: BAR 0 [mem 0x400011a000-0x400011afff 64bit]
[ 0.294183] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.294217] pci 0000:00:14.0: BAR 0 [mem 0x4000100000-0x400010ffff 64bit]
[ 0.294350] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.295967] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.295997] pci 0000:00:14.2: BAR 0 [mem 0x4000114000-0x4000115fff 64bit]
[ 0.296015] pci 0000:00:14.2: BAR 2 [mem 0x4000119000-0x4000119fff 64bit]
[ 0.296588] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.297162] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[ 0.299780] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.299811] pci 0000:00:16.0: BAR 0 [mem 0x4000117000-0x4000117fff 64bit]
[ 0.299927] pci 0000:00:16.0: PME# supported from D3hot
[ 0.300453] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601 conventional PCI endpoint
[ 0.300480] pci 0000:00:17.0: BAR 0 [mem 0xa4320000-0xa4321fff]
[ 0.300495] pci 0000:00:17.0: BAR 1 [mem 0xa4323000-0xa43230ff]
[ 0.300510] pci 0000:00:17.0: BAR 2 [io 0x4090-0x4097]
[ 0.300525] pci 0000:00:17.0: BAR 3 [io 0x4080-0x4083]
[ 0.300539] pci 0000:00:17.0: BAR 4 [io 0x4060-0x407f]
[ 0.300554] pci 0000:00:17.0: BAR 5 [mem 0xa4322000-0xa43227ff]
[ 0.300633] pci 0000:00:17.0: PME# supported from D3hot
[ 0.301048] pci 0000:00:1b.0: [8086:a340] type 01 class 0x060400 PCIe Root Port
[ 0.301104] pci 0000:00:1b.0: PCI bridge to [bus 02]
[ 0.301115] pci 0000:00:1b.0: bridge window [mem 0xa4200000-0xa42fffff]
[ 0.301254] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.301295] pci 0000:00:1b.0: PTM enabled (root), 4ns granularity
[ 0.302159] pci 0000:00:1c.0: [8086:a338] type 01 class 0x060400 PCIe Root Port
[ 0.302213] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.302356] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.303142] pci 0000:00:1c.4: [8086:a33c] type 01 class 0x060400 PCIe Root Port
[ 0.303198] pci 0000:00:1c.4: PCI bridge to [bus 04]
[ 0.303209] pci 0000:00:1c.4: bridge window [mem 0xa4100000-0xa41fffff]
[ 0.303344] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.303387] pci 0000:00:1c.4: PTM enabled (root), 4ns granularity
[ 0.304181] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.304235] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.304369] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.305130] pci 0000:00:1d.2: [8086:a332] type 01 class 0x060400 PCIe Root Port
[ 0.305186] pci 0000:00:1d.2: PCI bridge to [bus 06-07]
[ 0.305332] pci 0000:00:1d.2: PME# supported from D0 D3hot D3cold
[ 0.305373] pci 0000:00:1d.2: PTM enabled (root), 4ns granularity
[ 0.306192] pci 0000:00:1f.0: [8086:a309] type 00 class 0x060100 conventional PCI endpoint
[ 0.306710] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.306769] pci 0000:00:1f.3: BAR 0 [mem 0x4000110000-0x4000113fff 64bit]
[ 0.306843] pci 0000:00:1f.3: BAR 4 [mem 0x4000000000-0x40000fffff 64bit]
[ 0.306991] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.310185] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.310350] pci 0000:00:1f.4: BAR 0 [mem 0x4000116000-0x40001160ff 64bit]
[ 0.310538] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.310965] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.310990] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.311159] pci 0000:00:1f.6: [8086:15bb] type 00 class 0x020000 conventional PCI endpoint
[ 0.311205] pci 0000:00:1f.6: BAR 0 [mem 0xa4300000-0xa431ffff]
[ 0.311446] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.311576] pci 0000:01:00.0: [10de:1f82] type 00 class 0x030000 PCIe Legacy Endpoint
[ 0.311595] pci 0000:01:00.0: BAR 0 [mem 0xa3000000-0xa3ffffff]
[ 0.311609] pci 0000:01:00.0: BAR 1 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.311624] pci 0000:01:00.0: BAR 3 [mem 0xa0000000-0xa1ffffff 64bit pref]
[ 0.311632] pci 0000:01:00.0: BAR 5 [io 0x3000-0x307f]
[ 0.311641] pci 0000:01:00.0: ROM [mem 0xa4000000-0xa407ffff pref]
[ 0.311725] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.311900] pci 0000:01:00.1: [10de:10fa] type 00 class 0x040300 PCIe Endpoint
[ 0.311918] pci 0000:01:00.1: BAR 0 [mem 0xa4080000-0xa4083fff]
[ 0.312117] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.312270] pci 0000:02:00.0: [1179:011a] type 00 class 0x010802 PCIe Endpoint
[ 0.312305] pci 0000:02:00.0: BAR 0 [mem 0xa4200000-0xa4203fff 64bit]
[ 0.312733] pci 0000:00:1b.0: PCI bridge to [bus 02]
[ 0.312872] acpiphp: Slot [1] registered
[ 0.312884] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.313136] pci 0000:04:00.0: [8086:2725] type 00 class 0x028000 PCIe Endpoint
[ 0.313275] pci 0000:04:00.0: BAR 0 [mem 0xa4100000-0xa4103fff 64bit]
[ 0.313727] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[ 0.314228] pci 0000:00:1c.4: PCI bridge to [bus 04]
[ 0.314364] acpiphp: Slot [1-1] registered
[ 0.314375] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.314542] pci 0000:06:00.0: [1b21:1080] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[ 0.314603] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.314754] pci 0000:06:00.0: supports D1 D2
[ 0.314755] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.325088] pci 0000:00:1d.2: PCI bridge to [bus 06-07]
[ 0.325170] pci_bus 0000:07: extended config space not accessible
[ 0.325301] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.327044] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.327121] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.327196] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.327271] ACPI: PCI: Interrupt link LNKD configured for IRQ 1
[ 0.327347] ACPI: PCI: Interrupt link LNKE configured for IRQ 1
[ 0.327422] ACPI: PCI: Interrupt link LNKF configured for IRQ 1
[ 0.327497] ACPI: PCI: Interrupt link LNKG configured for IRQ 1
[ 0.327572] ACPI: PCI: Interrupt link LNKH configured for IRQ 1
[ 0.332363] iommu: Default domain type: Translated
[ 0.332363] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.332363] SCSI subsystem initialized
[ 0.335042] libata version 3.00 loaded.
[ 0.335045] ACPI: bus type USB registered
[ 0.335053] usbcore: registered new interface driver usbfs
[ 0.335057] usbcore: registered new interface driver hub
[ 0.335063] usbcore: registered new device driver usb
[ 0.335083] EDAC MC: Ver: 3.0.0
[ 0.335320] efivars: Registered efivars operations
[ 0.335320] NetLabel: Initializing
[ 0.335320] NetLabel: domain hash size = 128
[ 0.335320] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.335320] NetLabel: unlabeled traffic allowed by default
[ 0.335320] mctp: management component transport protocol core
[ 0.335320] NET: Registered PF_MCTP protocol family
[ 0.335320] PCI: Using ACPI for IRQ routing
[ 0.374108] PCI: pci_cache_line_size set to 64 bytes
[ 0.374326] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.374336] e820: reserve RAM buffer [mem 0x01012000-0x03ffffff]
[ 0.374337] e820: reserve RAM buffer [mem 0x0725d018-0x07ffffff]
[ 0.374338] e820: reserve RAM buffer [mem 0x27923000-0x27ffffff]
[ 0.374339] e820: reserve RAM buffer [mem 0x2bfb4000-0x2bffffff]
[ 0.374340] e820: reserve RAM buffer [mem 0x2dc17000-0x2fffffff]
[ 0.374341] e820: reserve RAM buffer [mem 0x48bc3000-0x4bffffff]
[ 0.374342] e820: reserve RAM buffer [mem 0x65537000-0x67ffffff]
[ 0.374343] e820: reserve RAM buffer [mem 0x68553000-0x6bffffff]
[ 0.374344] e820: reserve RAM buffer [mem 0x7ad00000-0x7bffffff]
[ 0.374345] e820: reserve RAM buffer [mem 0x87c800000-0x87fffffff]
[ 0.375054] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.375054] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.375054] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.375054] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.375054] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.375054] vgaarb: loaded
[ 0.375104] clocksource: Switched to clocksource tsc-early
[ 0.375611] VFS: Disk quotas dquot_6.6.0
[ 0.375620] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.375651] pnp: PnP ACPI init
[ 0.375681] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[ 0.375914] system 00:01: [io 0x0a00-0x0a3f] has been reserved
[ 0.375916] system 00:01: [io 0x0a40-0x0a7f] has been reserved
[ 0.376957] pnp 00:02: [dma 0 disabled]
[ 0.377129] system 00:03: [io 0x0680-0x069f] has been reserved
[ 0.377132] system 00:03: [io 0x164e-0x164f] has been reserved
[ 0.377254] system 00:05: [io 0x1854-0x1857] has been reserved
[ 0.377381] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.377383] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.377385] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.377386] system 00:06: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.377388] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.377389] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.377391] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.377392] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.377596] system 00:07: [io 0x1800-0x18fe] could not be reserved
[ 0.377599] system 00:07: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.377600] system 00:07: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.377602] system 00:07: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.377603] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.377605] system 00:07: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.377606] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[ 0.377887] system 00:08: [io 0x2000-0x20fe] has been reserved
[ 0.379915] pnp: PnP ACPI: found 10 devices
[ 0.385523] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.385621] NET: Registered PF_INET protocol family
[ 0.385733] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.398490] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 0.398521] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.398618] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.398847] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.399020] TCP: Hash tables configured (established 262144 bind 65536)
[ 0.399103] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 0.399157] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.399213] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 0.399271] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.399276] NET: Registered PF_XDP protocol family
[ 0.399288] pci 0000:00:15.0: BAR 0 [mem 0x4000118000-0x4000118fff 64bit]: assigned
[ 0.399559] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.399561] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.399564] pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
[ 0.399566] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.399569] pci 0000:00:1b.0: PCI bridge to [bus 02]
[ 0.399579] pci 0000:00:1b.0: bridge window [mem 0xa4200000-0xa42fffff]
[ 0.399592] pci 0000:00:1c.0: PCI bridge to [bus 03]
[ 0.399613] pci 0000:00:1c.4: PCI bridge to [bus 04]
[ 0.399620] pci 0000:00:1c.4: bridge window [mem 0xa4100000-0xa41fffff]
[ 0.399633] pci 0000:00:1d.0: PCI bridge to [bus 05]
[ 0.399652] pci 0000:06:00.0: PCI bridge to [bus 07]
[ 0.399671] pci 0000:00:1d.2: PCI bridge to [bus 06-07]
[ 0.399691] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.399693] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.399694] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
[ 0.399695] pci_bus 0000:00: resource 7 [mem 0x000e4000-0x000effff window]
[ 0.399696] pci_bus 0000:00: resource 8 [mem 0x7f800000-0xefffffff window]
[ 0.399697] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[ 0.399699] pci_bus 0000:00: resource 10 [mem 0xfc800000-0xfe7fffff window]
[ 0.399700] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.399701] pci_bus 0000:01: resource 1 [mem 0xa3000000-0xa40fffff]
[ 0.399702] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.399704] pci_bus 0000:02: resource 1 [mem 0xa4200000-0xa42fffff]
[ 0.399705] pci_bus 0000:04: resource 1 [mem 0xa4100000-0xa41fffff]
[ 0.400222] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.400248] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[ 0.400272] pci 0000:06:00.0: Disabling ASPM L0s/L1
[ 0.400274] pci 0000:06:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 0.400277] PCI: CLS 64 bytes, default 64
[ 0.400291] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.400292] software IO TLB: mapped [mem 0x0000000076d00000-0x000000007ad00000] (64MB)
[ 0.400317] Trying to unpack rootfs image as initramfs...
[ 0.406682] Initialise system trusted keyrings
[ 0.406691] Key type blacklist registered
[ 0.406731] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[ 0.406738] zbud: loaded
[ 0.406821] fuse: init (API version 7.39)
[ 0.406880] integrity: Platform Keyring initialized
[ 0.406883] integrity: Machine keyring initialized
[ 0.416860] Key type asymmetric registered
[ 0.416863] Asymmetric key parser 'x509' registered
[ 0.416879] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.416919] io scheduler mq-deadline registered
[ 0.416920] io scheduler kyber registered
[ 0.416930] io scheduler bfq registered
[ 0.417277] pcieport 0000:00:01.0: AER: enabled with IRQ 122
[ 0.417546] pcieport 0000:00:1b.0: AER: enabled with IRQ 123
[ 0.417581] pcieport 0000:00:1b.0: DPC: enabled with IRQ 123
[ 0.417583] pcieport 0000:00:1b.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.418031] pcieport 0000:00:1c.4: AER: enabled with IRQ 125
[ 0.418067] pcieport 0000:00:1c.4: DPC: enabled with IRQ 125
[ 0.418068] pcieport 0000:00:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.418492] pcieport 0000:00:1d.2: AER: enabled with IRQ 127
[ 0.418522] pcieport 0000:00:1d.2: DPC: enabled with IRQ 127
[ 0.418523] pcieport 0000:00:1d.2: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 0.418662] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.419320] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.419341] ACPI: button: Sleep Button [SLPB]
[ 0.419361] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.419373] ACPI: button: Power Button [PWRB]
[ 0.419393] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.419432] ACPI: button: Power Button [PWRF]
[ 0.420181] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.420182] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.420273] ERST: Error Record Serialization Table (ERST) support is initialized.
[ 0.420291] pstore: Using crash dump compression: deflate
[ 0.420292] pstore: Registered erst as persistent store backend
[ 0.420404] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.421223] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.424140] hpet_acpi_add: no address or irqs in _CRS
[ 0.424170] Non-volatile memory driver v1.3
[ 0.424171] Linux agpgart interface v0.103
[ 0.451575] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFC, rev-id 1)
[ 0.479298] ACPI: bus type drm_connector registered
[ 0.481595] ahci 0000:00:17.0: version 3.0
[ 0.491935] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[ 0.491939] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.511543] Freeing initrd memory: 109000K
[ 0.520047] scsi host0: ahci
[ 0.520339] scsi host1: ahci
[ 0.520631] scsi host2: ahci
[ 0.520764] scsi host3: ahci
[ 0.520800] ata1: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322100 irq 128 lpm-pol 0
[ 0.520803] ata2: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322180 irq 128 lpm-pol 0
[ 0.520806] ata3: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322200 irq 128 lpm-pol 0
[ 0.520808] ata4: SATA max UDMA/133 abar m2048@0xa4322000 port 0xa4322280 irq 128 lpm-pol 0
[ 0.520887] usbcore: registered new interface driver usbserial_generic
[ 0.520891] usbserial: USB Serial support registered for generic
[ 0.520976] rtc_cmos 00:04: RTC can wake from S4
[ 0.522478] rtc_cmos 00:04: registered as rtc0
[ 0.522787] rtc_cmos 00:04: setting system clock to 2024-05-17T01:41:33 UTC (1715910093)
[ 0.522819] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
[ 0.523268] intel_pstate: Intel P-state driver initializing
[ 0.523850] intel_pstate: Disabling energy efficiency optimization
[ 0.523851] intel_pstate: HWP enabled
[ 0.523904] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.524143] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 0.524562] fbcon: Deferring console take-over
[ 0.524564] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 0.524590] hid: raw HID events driver (C) Jiri Kosina
[ 0.524649] drop_monitor: Initializing network drop monitor service
[ 0.524716] NET: Registered PF_INET6 protocol family
[ 0.529685] Segment Routing with IPv6
[ 0.529686] RPL Segment Routing with IPv6
[ 0.529692] In-situ OAM (IOAM) with IPv6
[ 0.529707] NET: Registered PF_PACKET protocol family
[ 0.530538] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.530899] microcode: Current revision: 0x000000f6
[ 0.530901] microcode: Updated early from: 0x000000f4
[ 0.531348] IPI shorthand broadcast: enabled
[ 0.532631] sched_clock: Marking stable (518672225, 12662871)->(564917864, -33582768)
[ 0.532780] registered taskstats version 1
[ 0.533696] Loading compiled-in X.509 certificates
[ 0.535920] Loaded X.509 cert 'Build time autogenerated kernel key: 4183282d70f116b65f2696270db916493ab86dc2'
[ 0.538719] zswap: loaded using pool zstd/zsmalloc
[ 0.539050] Key type .fscrypt registered
[ 0.539052] Key type fscrypt-provisioning registered
[ 0.540227] integrity: Loading X.509 certificate: UEFI:db
[ 0.540670] integrity: Loaded X.509 cert 'Database Key: 00dce0d981cc20b1d97734b6680e895d56'
[ 0.540671] integrity: Loading X.509 certificate: UEFI:db
[ 0.540686] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.540686] integrity: Loading X.509 certificate: UEFI:db
[ 0.540697] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.541854] PM: Magic number: 8:506:660
[ 0.544903] RAS: Correctable Errors collector initialized.
[ 0.544955] clk: Disabling unused clocks
[ 0.829919] ata4: SATA link down (SStatus 4 SControl 300)
[ 0.833752] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 0.833807] ata3: SATA link down (SStatus 4 SControl 300)
[ 0.833870] ata2: SATA link down (SStatus 4 SControl 300)
[ 0.834362] ata1.00: ATA-10: WDC WD40EZAZ-00SF3B0, 80.00A80, max UDMA/133
[ 0.841723] ata1.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 0.841734] ata1.00: Features: NCQ-prio
[ 0.850044] ata1.00: configured for UDMA/133
[ 0.850267] scsi 0:0:0:0: Direct-Access ATA WDC WD40EZAZ-00S 0A80 PQ: 0 ANSI: 5
[ 0.850846] sd 0:0:0:0: [sda] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
[ 0.850853] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 0.850870] sd 0:0:0:0: [sda] Write Protect is off
[ 0.850874] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.850895] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.850923] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 0.889177] sda: sda1 sda2 sda3 sda4
[ 0.889692] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.892468] Freeing unused decrypted memory: 2028K
[ 0.893273] Freeing unused kernel image (initmem) memory: 3456K
[ 0.893381] Write protecting the kernel read-only data: 30720k
[ 0.894367] Freeing unused kernel image (rodata/data gap) memory: 1360K
[ 0.958055] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.958058] rodata_test: all tests were successful
[ 0.958059] x86/mm: Checking user space page tables
[ 0.989780] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.989782] Run /init as init process
[ 0.989783] with arguments:
[ 0.989784] /init
[ 0.989785] with environment:
[ 0.989785] HOME=/
[ 0.989786] TERM=linux
[ 0.989786] BOOT_IMAGE=/boot/vmlinuz-linux
[ 1.213607] nvidia: loading out-of-tree module taints kernel.
[ 1.213615] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[ 1.313919] nvidia-nvlink: Nvlink Core is being initialized, major device number 242
[ 1.314796] nvidia 0000:01:00.0: enabling device (0100 -> 0103)
[ 1.314879] nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
[ 1.359420] NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64 550.78 Release Build (archlinux-builder@)
[ 1.363742] wmi_bus wmi_bus-PNP0C14:04: WQBC data block query control method not found
[ 1.418889] nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for x86_64 550.78 Release Build (archlinux-builder@)
[ 1.426070] tsc: Refined TSC clocksource calibration: 3792.001 MHz
[ 1.426074] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d51a7cf3b3, max_idle_ns: 881590686630 ns
[ 1.426125] clocksource: Switched to clocksource tsc
[ 1.613044] nvidia-uvm: Loaded the UVM driver, major device number 240.
[ 1.617060] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[ 2.811109] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[ 2.811636] nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
[ 2.944047] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.944054] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 2.945160] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 2.945465] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.945468] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 2.945471] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.945514] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 2.945517] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.945519] usb usb1: Product: xHCI Host Controller
[ 2.945520] usb usb1: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
[ 2.945522] usb usb1: SerialNumber: 0000:00:14.0
[ 2.945668] hub 1-0:1.0: USB hub found
[ 2.945704] hub 1-0:1.0: 16 ports detected
[ 2.948278] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 2.948281] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.948282] usb usb2: Product: xHCI Host Controller
[ 2.948283] usb usb2: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
[ 2.948284] usb usb2: SerialNumber: 0000:00:14.0
[ 2.948346] hub 2-0:1.0: USB hub found
[ 2.948361] hub 2-0:1.0: 10 ports detected
[ 2.956938] nvme nvme0: pci function 0000:02:00.0
[ 2.967280] nvme nvme0: 12/0/0 default/read/poll queues
[ 2.969832] nvme0n1: p1 p2 p3 p4 p6
[ 3.199334] usb 1-2: new full-speed USB device number 2 using xhci_hcd
[ 3.339955] usb 1-2: New USB device found, idVendor=0c76, idProduct=161e, bcdDevice= 1.00
[ 3.339959] usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 3.339961] usb 1-2: Product: USB PnP Audio Device
[ 3.358308] usbcore: registered new interface driver usbhid
[ 3.358309] usbhid: USB HID core driver
[ 3.361866] input: USB PnP Audio Device as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:0C76:161E.0001/input/input3
[ 3.410493] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 3.415281] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
[ 3.416460] hid-generic 0003:0C76:161E.0001: input,hidraw0: USB HID v1.00 Device [USB PnP Audio Device] on usb-0000:00:14.0-2/input2
[ 3.416617] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 3.462671] usb 1-8: new full-speed USB device number 3 using xhci_hcd
[ 3.610279] usb 1-8: New USB device found, idVendor=046a, idProduct=c091, bcdDevice= 1.05
[ 3.610282] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.610283] usb 1-8: Product: CHERRY Wireless Desktop
[ 3.610284] usb 1-8: Manufacturer: Cherry GmbH
[ 3.612649] input: Cherry GmbH CHERRY Wireless Desktop as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:046A:C091.0002/input/input4
[ 3.669414] hid-generic 0003:046A:C091.0002: input,hidraw1: USB HID v1.11 Keyboard [Cherry GmbH CHERRY Wireless Desktop] on usb-0000:00:14.0-8/input0
[ 3.672571] input: Cherry GmbH CHERRY Wireless Desktop Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input5
[ 3.672600] input: Cherry GmbH CHERRY Wireless Desktop as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input6
[ 3.672637] input: Cherry GmbH CHERRY Wireless Desktop Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input7
[ 3.729366] input: Cherry GmbH CHERRY Wireless Desktop System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046A:C091.0003/input/input8
[ 3.729411] hid-generic 0003:046A:C091.0003: input,hiddev96,hidraw2: USB HID v1.11 Mouse [Cherry GmbH CHERRY Wireless Desktop] on usb-0000:00:14.0-8/input1
[ 3.820331] i915 0000:00:02.0: [drm] [ENCODER:94:DDI A/PHY A] failed to retrieve link info, disabling eDP
[ 3.869893] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 2
[ 3.872292] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.872770] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
[ 3.872886] i915 display info: display version: 9
[ 3.872888] i915 display info: cursor_needs_physical: no
[ 3.872889] i915 display info: has_cdclk_crawl: no
[ 3.872890] i915 display info: has_cdclk_squash: no
[ 3.872890] i915 display info: has_ddi: yes
[ 3.872891] i915 display info: has_dp_mst: yes
[ 3.872892] i915 display info: has_dsb: no
[ 3.872893] i915 display info: has_fpga_dbg: yes
[ 3.872893] i915 display info: has_gmch: no
[ 3.872894] i915 display info: has_hotplug: yes
[ 3.872895] i915 display info: has_hti: no
[ 3.872895] i915 display info: has_ipc: yes
[ 3.872896] i915 display info: has_overlay: no
[ 3.872897] i915 display info: has_psr: yes
[ 3.872897] i915 display info: has_psr_hw_tracking: yes
[ 3.872898] i915 display info: overlay_needs_physical: no
[ 3.872899] i915 display info: supports_tv: no
[ 3.872899] i915 display info: has_hdcp: yes
[ 3.872900] i915 display info: has_dmc: yes
[ 3.872901] i915 display info: has_dsc: no
[ 3.937580] Registered IR keymap rc-cec
[ 3.937597] rc rc0: DP-4 as /devices/pci0000:00/0000:00:02.0/rc/rc0
[ 3.937619] input: DP-4 as /devices/pci0000:00/0000:00:02.0/rc/rc0/input10
[ 4.057055] fbcon: i915drmfb (fb0) is primary device
[ 4.057062] fbcon: Deferring console take-over
[ 4.057068] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 4.154022] fbcon: Taking over console
[ 4.304944] EXT4-fs (nvme0n1p2): mounted filesystem a88ffea0-6e6c-4138-82c1-e1575b189989 r/w with ordered data mode. Quota mode: none.
[ 4.321749] Console: switching to colour frame buffer device 240x67
[ 4.593170] systemd[1]: systemd 255.6-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[ 4.593176] systemd[1]: Detected architecture x86-64.
[ 4.594078] systemd[1]: Hostname set to <hermes>.
[ 5.036354] systemd[1]: bpf-lsm: LSM BPF program attached
[ 5.143604] systemd[1]: Queued start job for default target Graphical Interface.
[ 5.179134] systemd[1]: Created slice Slice /system/dirmngr.
[ 5.180118] systemd[1]: Created slice Slice /system/getty.
[ 5.180976] systemd[1]: Created slice Slice /system/gpg-agent.
[ 5.181822] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 5.182655] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 5.183514] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 5.184353] systemd[1]: Created slice Slice /system/keyboxd.
[ 5.185181] systemd[1]: Created slice Slice /system/modprobe.
[ 5.186094] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 5.186747] systemd[1]: Created slice User and Session Slice.
[ 5.186933] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 5.187087] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 5.187525] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 5.187588] systemd[1]: Expecting device /dev/nvme0n1p1...
[ 5.187610] systemd[1]: Expecting device /dev/sda1...
[ 5.187624] systemd[1]: Expecting device /dev/sda2...
[ 5.187640] systemd[1]: Expecting device /dev/sda3...
[ 5.187654] systemd[1]: Expecting device /dev/sda4...
[ 5.187679] systemd[1]: Reached target Local Encrypted Volumes.
[ 5.187732] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 5.187787] systemd[1]: Reached target Path Units.
[ 5.187825] systemd[1]: Reached target Remote File Systems.
[ 5.187852] systemd[1]: Reached target Slice Units.
[ 5.187916] systemd[1]: Reached target Local Verity Protected Volumes.
[ 5.188120] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 5.191585] systemd[1]: Listening on Process Core Dump Socket.
[ 5.191945] systemd[1]: Listening on Journal Socket (/dev/log).
[ 5.192301] systemd[1]: Listening on Journal Socket.
[ 5.192819] systemd[1]: Listening on Network Service Netlink Socket.
[ 5.192920] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 5.193318] systemd[1]: Listening on udev Control Socket.
[ 5.193605] systemd[1]: Listening on udev Kernel Socket.
[ 5.193904] systemd[1]: Listening on User Database Manager Socket.
[ 5.196243] systemd[1]: Mounting Huge Pages File System...
[ 5.198082] systemd[1]: Mounting POSIX Message Queue File System...
[ 5.200048] systemd[1]: Mounting Kernel Debug File System...
[ 5.202024] systemd[1]: Mounting Kernel Trace File System...
[ 5.204279] systemd[1]: Starting Create List of Static Device Nodes...
[ 5.206529] systemd[1]: Starting Load Kernel Module configfs...
[ 5.209357] systemd[1]: Starting Load Kernel Module dm_mod...
[ 5.210121] systemd[1]: Starting Load Kernel Module drm...
[ 5.210866] systemd[1]: Starting Load Kernel Module fuse...
[ 5.211592] systemd[1]: Starting Load Kernel Module loop...
[ 5.211651] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 5.213294] systemd[1]: Starting Journal Service...
[ 5.214651] systemd[1]: Starting Load Kernel Modules...
[ 5.215342] systemd[1]: Starting Generate network units from Kernel command line...
[ 5.215362] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 5.216010] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 5.216057] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 5.216704] systemd[1]: Starting Coldplug All udev Devices...
[ 5.218105] systemd[1]: Mounted Huge Pages File System.
[ 5.218217] systemd[1]: Mounted POSIX Message Queue File System.
[ 5.218332] systemd[1]: Mounted Kernel Debug File System.
[ 5.218455] systemd[1]: Mounted Kernel Trace File System.
[ 5.218631] systemd[1]: Finished Create List of Static Device Nodes.
[ 5.218927] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 5.219062] systemd[1]: Finished Load Kernel Module configfs.
[ 5.219363] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 5.219506] systemd[1]: Finished Load Kernel Module drm.
[ 5.219811] loop: module loaded
[ 5.219815] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 5.219957] systemd[1]: Finished Load Kernel Module fuse.
[ 5.220238] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 5.220324] systemd[1]: Finished Load Kernel Module loop.
[ 5.221297] systemd[1]: Mounting FUSE Control File System...
[ 5.221966] systemd[1]: Mounting Kernel Configuration File System...
[ 5.222641] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[ 5.222880] systemd[1]: Finished Generate network units from Kernel command line.
[ 5.227159] systemd[1]: Mounted Kernel Configuration File System.
[ 5.228023] systemd[1]: Mounted FUSE Control File System.
[ 5.228972] Asymmetric key parser 'pkcs8' registered
[ 5.229127] device-mapper: uevent: version 1.0.3
[ 5.229190] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 5.229582] systemd[1]: Finished Load Kernel Modules.
[ 5.229959] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 5.230121] systemd[1]: Finished Load Kernel Module dm_mod.
[ 5.230431] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[ 5.231258] systemd[1]: Starting Apply Kernel Variables...
[ 5.233268] systemd-journald[339]: Collecting audit messages is disabled.
[ 5.235579] systemd[1]: Starting User Database Manager...
[ 5.239154] systemd[1]: Finished Apply Kernel Variables.
[ 5.261282] systemd[1]: Started Journal Service.
[ 5.263025] EXT4-fs (nvme0n1p2): re-mounted a88ffea0-6e6c-4138-82c1-e1575b189989 r/w. Quota mode: none.
[ 5.276535] systemd-journald[339]: Received client request to flush runtime journal.
[ 5.288083] systemd-journald[339]: /var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4/system.journal: Journal file uses a different sequence number ID, rotating.
[ 5.288087] systemd-journald[339]: Rotating system journal.
[ 5.421475] mousedev: PS/2 mouse device common for all mice
[ 5.434307] intel_pmc_core INT33A1:00: initialized
[ 5.436584] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
[ 5.445417] pps_core: LinuxPPS API ver. 1 registered
[ 5.445420] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 5.472929] PTP clock support registered
[ 5.473417] input: PC Speaker as /devices/platform/pcspkr/input/input11
[ 5.473493] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 5.473542] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 5.475573] intel-lpss 0000:00:15.0: enabling device (0100 -> 0102)
[ 5.475721] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 5.476848] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 5.500126] i2c i2c-10: 2/4 memory slots populated (from DMI)
[ 5.500881] i2c i2c-10: Successfully instantiated SPD at 0x51
[ 5.501655] i2c i2c-10: Successfully instantiated SPD at 0x53
[ 5.511670] input: Dell AIO WMI hotkeys as /devices/virtual/input/input12
[ 5.511712] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[ 5.526840] mc: Linux media interface: v0.10
[ 5.528011] Creating 1 MTD partitions on "0000:00:1f.5":
[ 5.528014] 0x000000000000-0x000002000000 : "BIOS"
[ 5.528121] e1000e: Intel(R) PRO/1000 Network Driver
[ 5.528123] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 5.529737] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 5.555348] Adding 37748732k swap on /dev/sda4. Priority:-2 extents:1 across:37748732k
[ 5.572235] iTCO_vendor_support: vendor-support=0
[ 5.576100] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 5.576399] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 5.576593] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 5.576768] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 5.577502] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 5.577506] cfg80211: failed to load regulatory.db
[ 5.579121] ee1004 10-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 5.579884] ee1004 10-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 5.579904] input: Dell WMI hotkeys as /devices/platform/PNP0C14:04/wmi_bus/wmi_bus-PNP0C14:04/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input13
[ 5.590195] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 5.590332] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 5.596044] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 5.596047] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 5.596049] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 5.596050] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 5.596051] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 5.602667] exFAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 5.606298] cryptd: max_cpu_qlen set to 1000
[ 5.606310] i8042: PNP: No PS/2 controller found.
[ 5.606479] Intel(R) Wireless WiFi driver for Linux
[ 5.606565] iwlwifi 0000:04:00.0: enabling device (0100 -> 0102)
[ 5.608026] iwlwifi 0000:04:00.0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
[ 5.608048] iwlwifi 0000:04:00.0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
[ 5.616636] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 5.616798] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 5.617031] snd_hda_intel 0000:01:00.1: enabling device (0100 -> 0102)
[ 5.617102] snd_hda_intel 0000:01:00.1: Disabling MSI
[ 5.617107] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[ 5.619326] usb 1-2: Warning! Unlikely big volume range (=496), cval->res is probably wrong.
[ 5.619361] usb 1-2: [50] FU [Mic Capture Volume] ch = 1, val = 0/7936/16
[ 5.619794] usbcore: registered new interface driver snd-usb-audio
[ 5.621342] iwlwifi 0000:04:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
[ 5.621908] iwlwifi 0000:04:00.0: loaded firmware version 86.fb5c9aeb.0 ty-a0-gf-a0-86.ucode op_mode iwlmvm
[ 5.623125] AVX2 version of gcm_enc/dec engaged.
[ 5.623162] AES CTR mode by8 optimization enabled
[ 5.689656] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input14
[ 5.689698] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input15
[ 5.689738] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input16
[ 5.689773] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input17
[ 5.745210] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3234: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:line
[ 5.745216] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
[ 5.745219] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 5.745221] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 5.745222] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 5.745224] snd_hda_codec_realtek hdaudioC1D0: Headset Mic=0x19
[ 5.767387] iwlwifi 0000:04:00.0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
[ 5.767444] thermal thermal_zone2: failed to read out thermal zone (-61)
[ 5.774426] iwlwifi 0000:04:00.0: WRT: Invalid buffer destination
[ 5.838111] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card1/input18
[ 5.838153] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card1/input19
[ 5.838188] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input20
[ 5.838221] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input21
[ 5.838882] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card1/input22
[ 5.879656] intel_tcc_cooling: Programmable TCC Offset detected
[ 5.928189] iwlwifi 0000:04:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 5.928216] iwlwifi 0000:04:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 5.928234] iwlwifi 0000:04:00.0: WFPM_AUTH_KEY_0: 0x90
[ 5.928252] iwlwifi 0000:04:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 5.928643] iwlwifi 0000:04:00.0: loaded PNVM version e28bb9d7
[ 5.944526] iwlwifi 0000:04:00.0: Detected RF GF, rfid=0x10d000
[ 5.956266] intel_rapl_common: Found RAPL domain package
[ 5.956268] intel_rapl_common: Found RAPL domain core
[ 5.956269] intel_rapl_common: Found RAPL domain uncore
[ 5.956269] intel_rapl_common: Found RAPL domain dram
[ 5.983460] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 6.013466] iwlwifi 0000:04:00.0: base HW address: f8:b5:4d:d6:f8:71
[ 6.055280] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) d8:9e:f3:96:39:8e
[ 6.055283] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 6.055383] e1000e 0000:00:1f.6 eth0: MAC: 13, PHY: 12, PBA No: FFFFFF-0FF
[ 6.058946] e1000e 0000:00:1f.6 eno1: renamed from eth0
[ 6.778693] EXT4-fs (sda3): mounted filesystem 25c3d5f9-ce04-4127-a4b2-efdb062ab55b r/w with ordered data mode. Quota mode: none.
[ 6.801551] EXT4-fs (sda2): mounted filesystem c5e5bc30-62d1-477e-9c9f-baea117bbd34 r/w with ordered data mode. Quota mode: none.
[ 7.036467] 8021q: 802.1Q VLAN Support v1.8
[ 7.063843] iwlwifi 0000:04:00.0: WRT: Invalid buffer destination
[ 7.217545] iwlwifi 0000:04:00.0: WFPM_UMAC_PD_NOTIFICATION: 0x20
[ 7.217584] iwlwifi 0000:04:00.0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
[ 7.217617] iwlwifi 0000:04:00.0: WFPM_AUTH_KEY_0: 0x90
[ 7.217663] iwlwifi 0000:04:00.0: CNVI_SCU_SEQ_DATA_DW9: 0x0
[ 7.307555] iwlwifi 0000:04:00.0: Registered PHC clock: iwlwifi-PTP, with index: 1
[ 10.841009] wlan0: authenticate with f6:92:bf:95:38:98 (local address=f8:b5:4d:d6:f8:71)
[ 10.842260] wlan0: send auth to f6:92:bf:95:38:98 (try 1/3)
[ 10.872331] wlan0: authenticated
[ 10.876284] wlan0: associate with f6:92:bf:95:38:98 (try 1/3)
[ 10.879109] wlan0: RX AssocResp from f6:92:bf:95:38:98 (capab=0x11 status=0 aid=5)
[ 10.887177] wlan0: associated
[ 18.861806] systemd-journald[339]: /var/log/journal/113047646feb4cdaacf1a8ff22cd6ae4/user-1001.journal: Journal file uses a different sequence number ID, rotating.Last edited by czarcastic_comment (2024-05-18 20:42:40)
Offline
xorgxrdp-nvidia AUR package maintainer Jat's latest comment on the repo - https://aur.archlinux.org/packages/xorg … ent-955665 - is "The upstream made a lots of changes recently. I will fix it when it is stabilized." I switched to xorgxrdp (no nvidia) and I'm getting good enough performance. I'll mark it as solved with the solution to just not user the nvidia package.
Offline