On 2021-05-03 07:37:42, Salvatore Bonaccorso wrote:
> Control: found -1 5.10.24-1
>
> Hi Antoine,
>
> On Sun, May 02, 2021 at 08:22:07PM -0400, Antoine Beaupré wrote:
>> On 2021-05-01 07:59:01, Salvatore Bonaccorso wrote:
>> > Hi Antoine
>> >
>> > On Fri, Apr 30, 2021 at 07:34:04PM -0400, Antoine Beaupré wrote:
>> >> On 2021-04-30 21:04:29, Salvatore Bonaccorso wrote:
>> >> > Control: tags -1 + moreinfo
>> >> >
>> >> > Hi Tollef, Antoine,
>> >> >
>> >> > On Wed, Sep 11, 2019 at 08:20:22PM -0400, Antoine Beaupré wrote:
>> >> >> Control: forcemerge 922666 928189
>> >> >> Control: severity 922666 important
>> >> >> Control: tags 922666 +patch +confirmed
>> >> >> 
>> >> >> I also see a regression with touchpads and trackpoint on a Thinkpad 
>> >> >> E431
>> >> >> after upgrading from Debian stretch to buster. My research indicates
>> >> >> this is a kernel regression, as yet to be fixed.
>> >> >> 
>> >> >> This is the result of my research, as available online at:
>> >> >> 
>> >> >> https://anarc.at/services/upgrades/buster/#touchpad-trackpoint-freeze-after-sleep
>> >> >> 
>> >> >> On a Thinkpad E431, the entire mouse interface (touch, trackpoint)
>> >> >> freezes after sleep. Keyboard still works but not mouse until a
>> >> >> reboot.
>> >> >> 
>> >> >> There's [bug 922666][] in Debian buster, without a fix. It also says
>> >> >> it eventually recovers, which is not our experience. Possible dupe is
>> >> >> [bug 928189][].
>> >> >> 
>> >> >> [bug 928189]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=928189
>> >> >> [bug 922666]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=922666
>> >> >> 
>> >> >> There's also [bug 1791427][] in Ubuntu 18.04 that seems related, and
>> >> >> which proposes the following workarounds:
>> >> >> 
>> >> >>  * In gsettings: `org.gnome.desktop.peripherals.touchpad click-method 
>> >> >> disabled`
>> >> >> 
>> >> >>  * A .service file:
>> >> >> 
>> >> >>         # /etc/systemd/system/touchpad-sleep.service
>> >> >>         # restore touchpad on suspend
>> >> >> 
>> >> >>         [Unit]
>> >> >>         Description=Restore Touchpad on suspend
>> >> >>         Before=sleep.target
>> >> >>         StopWhenUnneeded=yes
>> >> >> 
>> >> >>         [Service]
>> >> >>         #Type=oneshot
>> >> >>         Type=idle
>> >> >>         RemainAfterExit=yes
>> >> >>         ExecStart=/bin/bash -c 'echo "0000:00:1f.4" > 
>> >> >> /sys/bus/pci/drivers/i801_smbus/unbind'
>> >> >>         ExecStop=/bin/bash -c 'echo "0000:00:1f.4" > 
>> >> >> /sys/bus/pci/drivers/i801_smbus/bind'
>> >> >> 
>> >> >>         [Install]
>> >> >>         WantedBy=sleep.target
>> >> >> 
>> >> >>  * "Maybe try xserver-xorg-input-evdev instead of 
>> >> >> xserver-xorg-input-libinput?"
>> >> >> 
>> >> >>  * reloading `psmouse`:
>> >> >>  
>> >> >>         sudo modprobe -r psmouse
>> >> >>         sudo modprobe psmouse
>> >> >> 
>> >> >>  * "`modprobe i2c-i801` after removing it from the `blacklist.conf` 
>> >> >> seems to solve the issue."
>> >> >> 
>> >> >>  * whatever this is:
>> >> >>  
>> >> >>         # echo 1 > /sys/devices/rmi4-00/nosleep
>> >> >> 
>> >> >>  * "Anyone who still affected by touchpad issues after S3. Please
>> >> >>    switch back to suspend-to-idle in BIOS if s2idle is
>> >> >>    supported. ThinkPad Carbon 6th and Yoga 3rd do support
>> >> >>    suspend-to-idle in BIOS->config->power menu."
>> >> >> 
>> >> >> [bug 1791427]: 
>> >> >> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1791427
>> >> >> 
>> >> >> There's also [bug 1442699][] in Fedora, which suggests those
>> >> >> workarounds:
>> >> >> 
>> >> >>  * another module reload:
>> >> >>  
>> >> >>         sudo rmmod i2c_hid
>> >> >>         sudo modprobe i2c_hid
>> >> >> 
>> >> >>  * "Just updated to kernel-4.12.5-300.fc26.x86_64 in updates-testing
>> >> >>    and this issue seems to have been resolved (for me)."
>> >> >> 
>> >> >>  * another `/proc` hack:
>> >> >>  
>> >> >>         echo -n "reconnect" >  /sys/bus/serio/devices/serio1/drvctl
>> >> >> 
>> >> >>  * "The `psmouse.synaptics_intertouch=0` workaround still works for 
>> >> >> me."
>> >> >> 
>> >> >> [bug 1442699]: https://bugzilla.redhat.com/show_bug.cgi?id=1442699
>> >> >> 
>> >> >> Also related is this [libinput bug][] that's closed as "not our bug"
>> >> >> because they claim it's a bug in the kernel.
>> >> >> 
>> >> >> [libinput bug]: https://bugs.freedesktop.org/show_bug.cgi?id=103149
>> >> >> 
>> >> >> There are [two][] [patches][] on the Linux kernel which apparently fix 
>> >> >> the
>> >> >> issue, still pending approval:
>> >> >> 
>> >> >> [two]: https://lkml.org/lkml/2019/2/20/700
>> >> >> [patches]: https://lkml.org/lkml/2019/2/20/701
>> >> >> 
>> >> >> Possibly related: https://lkml.org/lkml/2016/8/18/134
>> >> >> 
>> >> >> [5.1rc7][] shipped two fixes against the `synaptics-rmi4` module. A
>> >> >> [pull request][] has been merged in mainline with two other fixes on
>> >> >> the module./ [5.0.11][] also has fixes on the module. It's clearly a
>> >> >> regression from Debian stretch (kernel 4.9) since it was working fine
>> >> >> before.
>> >> >> 
>> >> >> Possibly related, [two-finger scrolling bug in Ubuntu][], which
>> >> >> identifies [this commit][] as the source of the regression. [Upstream
>> >> >> kernel bug][], still open.
>> >> >> 
>> >> >> [5.1rc7]: https://lkml.org/lkml/2019/4/28/270
>> >> >> [pull request]: https://lkml.org/lkml/2019/7/12/19
>> >> >> [5.0.11]: https://lkml.org/lkml/2019/5/2/287
>> >> >> [Upstream kernel bug]: 
>> >> >> https://bugzilla.kernel.org/show_bug.cgi?id=196719
>> >> >> [this commit]: 
>> >> >> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=e839ffab028981ac77f650faf8c84f16e1719738
>> >> >> [two-finger scrolling bug in Ubuntu]: 
>> >> >> https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1722478
>> >> >> 
>> >> >> I haven't tried any of those workarounds. I hope this helps!
>> >> >
>> >> > Can you confirm if this issue is still present with a recent kernel?
>> >> 
>> >> e.g. buster-backports?
>> >
>> > Yes exactly either buster-backports, unsteable or mainline.
>> >
>> > Initial goal on asking you back is that the issue as reported for some
>> > kernels way back, try to find out if the issue is still present or if
>> > we can close the bug otherwise as maintenance.
>> 
>> Understood.
>> 
>> The situation, right now, is this:
>> 
>>  1. the user of this machine has been running the 5.7.10 kernel since
>>     around August 2020, from buster-backports
>> 
>>  2. they indeed reported the bug not happening for "a month or two" but,
>>     in their opinion it was "still happening" intermittently, and they
>>     expressed surprise at the idea that the bug was fixed
>> 
>>  3. i therefore completed the last buster point upgrade and installed the
>>     5.10.24 Linux kernel, again from backports
>> 
>>  4. i then rebooted the machine in the new kernel, logged in as said
>>     user, then closed the lid, waited a few seconds, and opened the lid
>>     back up
>> 
>> The mouse froze.
>> 
>> I rebooted (because that you can still do, of course, with
>> control-alt-delete), and again reproduced it.
>> 
>> So, from my perspective, this bug is definitely not fixed, even with the
>> latest backported kernel, in Debian buster.
>> 
>> [I'll note that, interestingly, I'm not actually sure the machine goes to
>> sleep. The red light on the "i" of the "Thinkpad" lid logo doesn't
>> actually start flashing slowly like it typically does during sleep. But
>> from a user perspective, that doesn't matter: it's "close the lid,
>> computer crashes" kind of experience, which is a pretty nasty regression
>> from stretch.]
>
> Thanks for reporting back, much appreciated you took time again to
> recheck. So I suspect the problem from Tollef and yours might be
> different.
>
> Do logs (dmesg, X logs) give any helpful hints?

On closing the lid, this seems to appear in Xorg.log:

[    75.548] (II) config/udev: removing device TPPS/2 IBM TrackPoint
[    75.548] (**) Option "fd" "30"
[    75.549] (II) event13 - TPPS/2 IBM TrackPoint: device removed
[    75.553] (II) UnloadModule: "libinput"
[    75.553] (II) systemd-logind: releasing fd for 13:77
[    75.555] (EE) systemd-logind: failed to release device: Device not taken

dmesg is similarly unhappy:

May  3 20:11:13 topcrapn kernel: [   75.150214] psmouse serio2: Failed to 
disable mouse on rmi4-00.fn03/serio0

Interestingly, it seems that the machine indeed doesn't go to sleep: it
loops over a failure to sleep and fills up syslog with errors as long as
it's trying to sleep, pretty catastrophic, from a battery usage
perspective.

I attach the two logs and am continuing my investigation. User now
reports situation is actually much worse than before the backports
upgrade: at least 5.7 was intermittent, now the crash is systematic.

A.

-- 
La propriété est un piège: ce que nous croyons posséder nous possède.
                        - Alphonse Karr
[    30.160] (--) Log file renamed from 
"/home/rachel/.local/share/xorg/Xorg.pid-1444.log" to 
"/home/rachel/.local/share/xorg/Xorg.0.log"
[    30.161] 
X.Org X Server 1.20.4
X Protocol Version 11, Revision 0
[    30.161] Build Operating System: Linux 5.10.0-6-amd64 x86_64 Debian
[    30.161] Current Operating System: Linux topcrapn 5.10.0-0.bpo.5-amd64 #1 
SMP Debian 5.10.24-1~bpo10+1 (2021-03-29) x86_64
[    30.161] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10.0-0.bpo.5-amd64 
root=UUID=5bb40af0-885f-4dab-8f17-8e27ed3d35af ro quiet splash
[    30.161] Build Date: 19 April 2021  09:34:38AM
[    30.161] xorg-server 2:1.20.4-1+deb10u3 (https://www.debian.org/support) 
[    30.161] Current version of pixman: 0.36.0
[    30.161]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    30.161] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    30.162] (==) Log file: "/home/rachel/.local/share/xorg/Xorg.0.log", Time: 
Mon May  3 20:12:26 2021
[    30.163] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    30.165] (==) No Layout section.  Using the first Screen section.
[    30.165] (==) No screen section available. Using defaults.
[    30.165] (**) |-->Screen "Default Screen Section" (0)
[    30.165] (**) |   |-->Monitor "<default monitor>"
[    30.165] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[    30.165] (==) Automatically adding devices
[    30.165] (==) Automatically enabling devices
[    30.165] (==) Automatically adding GPU devices
[    30.165] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    30.165] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    30.165]    Entry deleted from font path.
[    30.166] (==) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/100dpi/:unscaled,
        /usr/share/fonts/X11/75dpi/:unscaled,
        /usr/share/fonts/X11/Type1,
        /usr/share/fonts/X11/100dpi,
        /usr/share/fonts/X11/75dpi,
        built-ins
[    30.166] (==) ModulePath set to "/usr/lib/xorg/modules"
[    30.166] (II) The server relies on udev to provide the list of input 
devices.
        If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[    30.166] (II) Loader magic: 0x55f8bdaa0e20
[    30.166] (II) Module ABI versions:
[    30.166]    X.Org ANSI C Emulation: 0.4
[    30.166]    X.Org Video Driver: 24.0
[    30.166]    X.Org XInput driver : 24.1
[    30.166]    X.Org Server Extension : 10.0
[    30.166] (++) using VT number 2

[    30.169] (II) systemd-logind: took control of session 
/org/freedesktop/login1/session/_32
[    30.170] (II) xfree86: Adding drm device (/dev/dri/card0)
[    30.171] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0
[    30.173] (--) PCI:*(0@0:2:0) 8086:0166:17aa:5018 rev 9, Mem @ 
0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64, BIOS @ 
0x????????/131072
[    30.173] (II) LoadModule: "glx"
[    30.175] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    30.178] (II) Module glx: vendor="X.Org Foundation"
[    30.178]    compiled for 1.20.4, module version = 1.0.0
[    30.178]    ABI class: X.Org Server Extension, version 10.0
[    30.178] (==) Matched modesetting as autoconfigured driver 0
[    30.178] (==) Matched fbdev as autoconfigured driver 1
[    30.178] (==) Matched vesa as autoconfigured driver 2
[    30.178] (==) Assigned the driver to the xf86ConfigLayout
[    30.178] (II) LoadModule: "modesetting"
[    30.178] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    30.180] (II) Module modesetting: vendor="X.Org Foundation"
[    30.180]    compiled for 1.20.4, module version = 1.20.4
[    30.180]    Module class: X.Org Video Driver
[    30.180]    ABI class: X.Org Video Driver, version 24.0
[    30.180] (II) LoadModule: "fbdev"
[    30.180] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    30.180] (II) Module fbdev: vendor="X.Org Foundation"
[    30.180]    compiled for 1.20.0, module version = 0.5.0
[    30.180]    Module class: X.Org Video Driver
[    30.180]    ABI class: X.Org Video Driver, version 24.0
[    30.180] (II) LoadModule: "vesa"
[    30.181] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    30.181] (II) Module vesa: vendor="X.Org Foundation"
[    30.181]    compiled for 1.20.1, module version = 2.4.0
[    30.181]    Module class: X.Org Video Driver
[    30.181]    ABI class: X.Org Video Driver, version 24.0
[    30.181] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    30.181] (II) FBDEV: driver for framebuffer: fbdev
[    30.181] (II) VESA: driver for VESA chipsets: vesa
[    30.181] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not 
permitted)
[    30.182] (II) modeset(0): using drv /dev/dri/card0
[    30.182] (WW) Falling back to old probe method for fbdev
[    30.182] (II) Loading sub module "fbdevhw"
[    30.182] (II) LoadModule: "fbdevhw"
[    30.182] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    30.182] (II) Module fbdevhw: vendor="X.Org Foundation"
[    30.182]    compiled for 1.20.4, module version = 0.0.2
[    30.182]    ABI class: X.Org Video Driver, version 24.0
[    30.182] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    30.182] (II) modeset(0): Creating default Display subsection in Screen 
section
        "Default Screen Section" for depth/fbbpp 24/32
[    30.182] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    30.182] (==) modeset(0): RGB weight 888
[    30.183] (==) modeset(0): Default visual is TrueColor
[    30.183] (II) Loading sub module "glamoregl"
[    30.183] (II) LoadModule: "glamoregl"
[    30.183] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    30.187] (II) Module glamoregl: vendor="X.Org Foundation"
[    30.187]    compiled for 1.20.4, module version = 1.0.1
[    30.187]    ABI class: X.Org ANSI C Emulation, version 0.4
[    30.204] (II) modeset(0): glamor X acceleration enabled on Mesa DRI 
Intel(R) Ivybridge Mobile 
[    30.204] (II) modeset(0): glamor initialized
[    30.204] (II) modeset(0): Output LVDS-1 has no monitor section
[    30.205] (II) modeset(0): Output VGA-1 has no monitor section
[    30.207] (II) modeset(0): Output HDMI-1 has no monitor section
[    30.207] (II) modeset(0): Output DP-1 has no monitor section
[    30.209] (II) modeset(0): Output HDMI-2 has no monitor section
[    30.209] (II) modeset(0): Output DP-2 has no monitor section
[    30.218] (II) modeset(0): EDID for output LVDS-1
[    30.218] (II) modeset(0): Manufacturer: LGD  Model: 28e  Serial#: 1
[    30.218] (II) modeset(0): Year: 2009  Week: 0
[    30.218] (II) modeset(0): EDID Version: 1.3
[    30.218] (II) modeset(0): Digital Display Input
[    30.218] (II) modeset(0): Max Image Size [cm]: horiz.: 31  vert.: 17
[    30.218] (II) modeset(0): Gamma: 2.20
[    30.218] (II) modeset(0): No DPMS capabilities specified
[    30.218] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    30.218] (II) modeset(0): First detailed timing is preferred mode
[    30.218] (II) modeset(0): redX: 0.576 redY: 0.344   greenX: 0.339 greenY: 
0.564
[    30.218] (II) modeset(0): blueX: 0.160 blueY: 0.128   whiteX: 0.313 whiteY: 
0.329
[    30.218] (II) modeset(0): Manufacturer's mask: 0
[    30.218] (II) modeset(0): Supported detailed timing:
[    30.218] (II) modeset(0): clock: 71.0 MHz   Image Size:  310 x 174 mm
[    30.218] (II) modeset(0): h_active: 1366  h_sync: 1414  h_sync_end 1446 
h_blank_end 1502 h_border: 0
[    30.218] (II) modeset(0): v_active: 768  v_sync: 771  v_sync_end 776 
v_blanking: 788 v_border: 0
[    30.218] (II) modeset(0):  LG Display
[    30.219] (II) modeset(0):  LP140WH2-TLQ1
[    30.219] (II) modeset(0): EDID (in hex):
[    30.219] (II) modeset(0):   00ffffffffffff0030e48e0201000000
[    30.219] (II) modeset(0):   00130103801f11780a8e359358569029
[    30.219] (II) modeset(0):   20505400000001010101010101010101
[    30.219] (II) modeset(0):   010101010101bc1b5688500014303020
[    30.219] (II) modeset(0):   350036ae100000190000000000000000
[    30.219] (II) modeset(0):   00000000000000000000000000fe004c
[    30.219] (II) modeset(0):   4720446973706c61790a2020000000fe
[    30.219] (II) modeset(0):   004c503134305748322d544c5131008c
[    30.219] (II) modeset(0): Printing probed modes for output LVDS-1
[    30.219] (II) modeset(0): Modeline "1366x768"x60.0   71.00  1366 1414 1446 
1502  768 771 776 788 -hsync -vsync (47.3 kHz eP)
[    30.219] (II) modeset(0): Modeline "1360x768"x59.8   84.75  1360 1432 1568 
1776  768 771 781 798 -hsync +vsync (47.7 kHz d)
[    30.219] (II) modeset(0): Modeline "1360x768"x60.0   72.00  1360 1408 1440 
1520  768 771 781 790 +hsync -vsync (47.4 kHz d)
[    30.219] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 
1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    30.219] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 
1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    30.219] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 
1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    30.219] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 
1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 
1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 
1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    30.219] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 
1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    30.219] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 
1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    30.219] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 
1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 
1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 
1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 
1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    30.219] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 
1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    30.219] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 
1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    30.219] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 
1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    30.219] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 
1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    30.219] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 
1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    30.219] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 
1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    30.219] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 
1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    30.219] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 
1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    30.219] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056 
 600 601 605 628 +hsync +vsync (37.9 kHz d)
[    30.219] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024 
 600 601 603 625 +hsync +vsync (35.2 kHz d)
[    30.219] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 
1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    30.219] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920 
 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    30.219] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072 
 486 489 494 506 -hsync +vsync (30.3 kHz d)
[    30.219] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024 
 486 489 494 500 +hsync -vsync (29.8 kHz d)
[    30.219] (II) modeset(0): Modeline "800x512"x120.3   51.56  800 800 828 832 
 512 512 514 515 doublescan +hsync +vsync (62.0 kHz d)
[    30.219] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940 
 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    30.219] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 
1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    30.219] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880 
 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    30.219] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844 
 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    30.219] (II) modeset(0): Modeline "720x450"x119.8   53.25  720 760 836 952 
 450 451 454 467 doublescan -hsync +vsync (55.9 kHz d)
[    30.219] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924 
 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    30.219] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780 
 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    30.219] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900 
 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    30.219] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  
480 490 492 525 -hsync -vsync (31.5 kHz d)
[    30.219] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  
405 408 413 422 -hsync +vsync (25.1 kHz d)
[    30.219] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  
405 408 413 419 +hsync -vsync (24.7 kHz d)
[    30.219] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892 
 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    30.219] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764 
 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    30.219] (II) modeset(0): Modeline "680x384"x119.6   42.38  680 716 784 888 
 384 385 390 399 doublescan -hsync +vsync (47.7 kHz d)
[    30.219] (II) modeset(0): Modeline "680x384"x119.9   36.00  680 704 720 760 
 384 385 390 395 doublescan +hsync -vsync (47.4 kHz d)
[    30.219] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840 
 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    30.219] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720 
 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    30.219] (II) modeset(0): Modeline "576x432"x120.1   40.81  576 608 668 760 
 432 432 434 447 doublescan -hsync +vsync (53.7 kHz d)
[    30.219] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832 
 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    30.219] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720 
 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    30.219] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  
360 363 368 376 -hsync +vsync (22.5 kHz d)
[    30.219] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  
360 363 368 374 +hsync -vsync (22.2 kHz d)
[    30.219] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672 
 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    30.219] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648 
 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    30.219] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592 
 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    30.219] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608 
 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    30.219] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560 
 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    30.219] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528 
 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    30.219] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512 
 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    30.219] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536 
 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    30.219] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512 
 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    30.220] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400 
 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    30.220] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448 
 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    30.220] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440 
 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    30.220] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400 
 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    30.220] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400 
 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    30.221] (II) modeset(0): EDID for output VGA-1
[    30.222] (II) modeset(0): EDID for output HDMI-1
[    30.222] (II) modeset(0): EDID for output DP-1
[    30.224] (II) modeset(0): EDID for output HDMI-2
[    30.224] (II) modeset(0): EDID for output DP-2
[    30.224] (II) modeset(0): Output LVDS-1 connected
[    30.224] (II) modeset(0): Output VGA-1 disconnected
[    30.224] (II) modeset(0): Output HDMI-1 disconnected
[    30.224] (II) modeset(0): Output DP-1 disconnected
[    30.224] (II) modeset(0): Output HDMI-2 disconnected
[    30.224] (II) modeset(0): Output DP-2 disconnected
[    30.224] (II) modeset(0): Using exact sizes for initial modes
[    30.224] (II) modeset(0): Output LVDS-1 using initial mode 1366x768 +0+0
[    30.224] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    30.224] (==) modeset(0): DPI set to (96, 96)
[    30.224] (II) Loading sub module "fb"
[    30.224] (II) LoadModule: "fb"
[    30.224] (II) Loading /usr/lib/xorg/modules/libfb.so
[    30.226] (II) Module fb: vendor="X.Org Foundation"
[    30.226]    compiled for 1.20.4, module version = 1.0.0
[    30.226]    ABI class: X.Org ANSI C Emulation, version 0.4
[    30.226] (II) UnloadModule: "fbdev"
[    30.226] (II) Unloading fbdev
[    30.226] (II) UnloadSubModule: "fbdevhw"
[    30.226] (II) Unloading fbdevhw
[    30.226] (II) UnloadModule: "vesa"
[    30.226] (II) Unloading vesa
[    30.246] (==) modeset(0): Backing store enabled
[    30.246] (==) modeset(0): Silken mouse enabled
[    30.270] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    30.270] (==) modeset(0): DPMS enabled
[    30.270] (II) modeset(0): [DRI2] Setup complete
[    30.270] (II) modeset(0): [DRI2]   DRI driver: i965
[    30.270] (II) modeset(0): [DRI2]   VDPAU driver: i965
[    30.271] (II) Initializing extension Generic Event Extension
[    30.271] (II) Initializing extension SHAPE
[    30.271] (II) Initializing extension MIT-SHM
[    30.271] (II) Initializing extension XInputExtension
[    30.272] (II) Initializing extension XTEST
[    30.272] (II) Initializing extension BIG-REQUESTS
[    30.272] (II) Initializing extension SYNC
[    30.272] (II) Initializing extension XKEYBOARD
[    30.273] (II) Initializing extension XC-MISC
[    30.273] (II) Initializing extension SECURITY
[    30.273] (II) Initializing extension XFIXES
[    30.273] (II) Initializing extension RENDER
[    30.273] (II) Initializing extension RANDR
[    30.274] (II) Initializing extension COMPOSITE
[    30.274] (II) Initializing extension DAMAGE
[    30.274] (II) Initializing extension MIT-SCREEN-SAVER
[    30.274] (II) Initializing extension DOUBLE-BUFFER
[    30.275] (II) Initializing extension RECORD
[    30.275] (II) Initializing extension DPMS
[    30.275] (II) Initializing extension Present
[    30.275] (II) Initializing extension DRI3
[    30.275] (II) Initializing extension X-Resource
[    30.276] (II) Initializing extension XVideo
[    30.276] (II) Initializing extension XVideo-MotionCompensation
[    30.276] (II) Initializing extension SELinux
[    30.276] (II) SELinux: Disabled on system
[    30.276] (II) Initializing extension GLX
[    30.285] (II) AIGLX: Loaded and initialized i965
[    30.285] (II) GLX: Initialized DRI2 GL provider for screen 0
[    30.285] (II) Initializing extension XFree86-VidModeExtension
[    30.285] (II) Initializing extension XFree86-DGA
[    30.285] (II) Initializing extension XFree86-DRI
[    30.285] (II) Initializing extension DRI2
[    30.287] (II) modeset(0): Damage tracking initialized
[    30.287] (II) modeset(0): Setting screen physical size to 361 x 203
[    30.337] (II) config/udev: Adding input device Power Button 
(/dev/input/event3)
[    30.337] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    30.337] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    30.337] (II) LoadModule: "libinput"
[    30.338] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    30.342] (II) Module libinput: vendor="X.Org Foundation"
[    30.342]    compiled for 1.20.4, module version = 0.28.2
[    30.342]    Module class: X.Org XInput Driver
[    30.342]    ABI class: X.Org XInput driver, version 24.1
[    30.342] (II) Using input driver 'libinput' for 'Power Button'
[    30.343] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 21 
paused 0
[    30.343] (**) Power Button: always reports core events
[    30.343] (**) Option "Device" "/dev/input/event3"
[    30.344] (**) Option "_source" "server/udev"
[    30.345] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    30.345] (II) event3  - Power Button: device is a keyboard
[    30.346] (II) event3  - Power Button: device removed
[    30.346] (**) Option "config_info" 
"udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
[    30.346] (II) XINPUT: Adding extended input device "Power Button" (type: 
KEYBOARD, id 6)
[    30.346] (**) Option "xkb_model" "pc105"
[    30.346] (**) Option "xkb_layout" "ca"
[    30.366] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    30.366] (II) event3  - Power Button: device is a keyboard
[    30.366] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[    30.366] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    30.366] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    30.367] (II) Using input driver 'libinput' for 'Video Bus'
[    30.367] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 24 
paused 0
[    30.367] (**) Video Bus: always reports core events
[    30.367] (**) Option "Device" "/dev/input/event4"
[    30.367] (**) Option "_source" "server/udev"
[    30.369] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    30.369] (II) event4  - Video Bus: device is a keyboard
[    30.369] (II) event4  - Video Bus: device removed
[    30.369] (**) Option "config_info" 
"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event4"
[    30.369] (II) XINPUT: Adding extended input device "Video Bus" (type: 
KEYBOARD, id 7)
[    30.369] (**) Option "xkb_model" "pc105"
[    30.369] (**) Option "xkb_layout" "ca"
[    30.370] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    30.370] (II) event4  - Video Bus: device is a keyboard
[    30.371] (II) config/udev: Adding input device Power Button 
(/dev/input/event1)
[    30.371] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    30.371] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    30.371] (II) Using input driver 'libinput' for 'Power Button'
[    30.371] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 25 
paused 0
[    30.371] (**) Power Button: always reports core events
[    30.371] (**) Option "Device" "/dev/input/event1"
[    30.371] (**) Option "_source" "server/udev"
[    30.372] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    30.372] (II) event1  - Power Button: device is a keyboard
[    30.372] (II) event1  - Power Button: device removed
[    30.372] (**) Option "config_info" 
"udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event1"
[    30.372] (II) XINPUT: Adding extended input device "Power Button" (type: 
KEYBOARD, id 8)
[    30.372] (**) Option "xkb_model" "pc105"
[    30.372] (**) Option "xkb_layout" "ca"
[    30.373] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    30.373] (II) event1  - Power Button: device is a keyboard
[    30.374] (II) config/udev: Adding input device Lid Switch 
(/dev/input/event2)
[    30.374] (II) No input driver specified, ignoring this device.
[    30.374] (II) This device may have been added with another device file.
[    30.375] (II) config/udev: Adding input device Integrated Camera: 
Integrated C (/dev/input/event8)
[    30.375] (**) Integrated Camera: Integrated C: Applying InputClass "evdev 
keyboard catchall"
[    30.375] (**) Integrated Camera: Integrated C: Applying InputClass 
"libinput keyboard catchall"
[    30.375] (II) Using input driver 'libinput' for 'Integrated Camera: 
Integrated C'
[    30.376] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 26 
paused 0
[    30.376] (**) Integrated Camera: Integrated C: always reports core events
[    30.376] (**) Option "Device" "/dev/input/event8"
[    30.376] (**) Option "_source" "server/udev"
[    30.377] (II) event8  - Integrated Camera: Integrated C: is tagged by udev 
as: Keyboard
[    30.377] (II) event8  - Integrated Camera: Integrated C: device is a 
keyboard
[    30.377] (II) event8  - Integrated Camera: Integrated C: device removed
[    30.377] (**) Option "config_info" 
"udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11/event8"
[    30.377] (II) XINPUT: Adding extended input device "Integrated Camera: 
Integrated C" (type: KEYBOARD, id 9)
[    30.377] (**) Option "xkb_model" "pc105"
[    30.377] (**) Option "xkb_layout" "ca"
[    30.379] (II) event8  - Integrated Camera: Integrated C: is tagged by udev 
as: Keyboard
[    30.379] (II) event8  - Integrated Camera: Integrated C: device is a 
keyboard
[    30.379] (II) config/udev: Adding input device HDA Intel PCH Mic 
(/dev/input/event9)
[    30.379] (II) No input driver specified, ignoring this device.
[    30.379] (II) This device may have been added with another device file.
[    30.380] (II) config/udev: Adding input device HDA Intel PCH Headphone 
(/dev/input/event10)
[    30.380] (II) No input driver specified, ignoring this device.
[    30.380] (II) This device may have been added with another device file.
[    30.380] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 
(/dev/input/event11)
[    30.380] (II) No input driver specified, ignoring this device.
[    30.380] (II) This device may have been added with another device file.
[    30.380] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 
(/dev/input/event12)
[    30.381] (II) No input driver specified, ignoring this device.
[    30.381] (II) This device may have been added with another device file.
[    30.381] (II) config/udev: Adding input device AT Translated Set 2 keyboard 
(/dev/input/event0)
[    30.381] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev 
keyboard catchall"
[    30.381] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput 
keyboard catchall"
[    30.381] (II) Using input driver 'libinput' for 'AT Translated Set 2 
keyboard'
[    30.382] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 27 
paused 0
[    30.382] (**) AT Translated Set 2 keyboard: always reports core events
[    30.382] (**) Option "Device" "/dev/input/event0"
[    30.382] (**) Option "_source" "server/udev"
[    30.383] (II) event0  - AT Translated Set 2 keyboard: is tagged by udev as: 
Keyboard
[    30.383] (II) event0  - AT Translated Set 2 keyboard: device is a keyboard
[    30.383] (II) event0  - AT Translated Set 2 keyboard: device removed
[    30.383] (**) Option "config_info" 
"udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    30.383] (II) XINPUT: Adding extended input device "AT Translated Set 2 
keyboard" (type: KEYBOARD, id 10)
[    30.383] (**) Option "xkb_model" "pc105"
[    30.383] (**) Option "xkb_layout" "ca"
[    30.385] (II) event0  - AT Translated Set 2 keyboard: is tagged by udev as: 
Keyboard
[    30.385] (II) event0  - AT Translated Set 2 keyboard: device is a keyboard
[    30.386] (II) config/udev: Adding input device PC Speaker 
(/dev/input/event5)
[    30.386] (II) No input driver specified, ignoring this device.
[    30.386] (II) This device may have been added with another device file.
[    30.387] (II) config/udev: Adding input device ThinkPad Extra Buttons 
(/dev/input/event6)
[    30.387] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard 
catchall"
[    30.387] (**) ThinkPad Extra Buttons: Applying InputClass "libinput 
keyboard catchall"
[    30.387] (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
[    30.388] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 28 
paused 0
[    30.388] (**) ThinkPad Extra Buttons: always reports core events
[    30.388] (**) Option "Device" "/dev/input/event6"
[    30.388] (**) Option "_source" "server/udev"
[    30.389] (II) event6  - ThinkPad Extra Buttons: is tagged by udev as: 
Keyboard
[    30.389] (II) event6  - ThinkPad Extra Buttons: device is a keyboard
[    30.389] (II) event6  - ThinkPad Extra Buttons: device removed
[    30.389] (**) Option "config_info" 
"udev:/sys/devices/platform/thinkpad_acpi/input/input8/event6"
[    30.389] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" 
(type: KEYBOARD, id 11)
[    30.389] (**) Option "xkb_model" "pc105"
[    30.389] (**) Option "xkb_layout" "ca"
[    30.390] (II) event6  - ThinkPad Extra Buttons: is tagged by udev as: 
Keyboard
[    30.390] (II) event6  - ThinkPad Extra Buttons: device is a keyboard
[    30.391] (II) config/udev: Adding input device Synaptics TM2691-001 
(/dev/input/event7)
[    30.391] (**) Synaptics TM2691-001: Applying InputClass "evdev touchpad 
catchall"
[    30.391] (**) Synaptics TM2691-001: Applying InputClass "libinput touchpad 
catchall"
[    30.391] (**) Synaptics TM2691-001: Applying InputClass "touchpad catchall"
[    30.391] (**) Synaptics TM2691-001: Applying InputClass "Default clickpad 
buttons"
[    30.391] (II) LoadModule: "synaptics"
[    30.391] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    30.393] (II) Module synaptics: vendor="X.Org Foundation"
[    30.393]    compiled for 1.20.1, module version = 1.9.1
[    30.393]    Module class: X.Org XInput Driver
[    30.393]    ABI class: X.Org XInput driver, version 24.1
[    30.393] (II) Using input driver 'synaptics' for 'Synaptics TM2691-001'
[    30.393] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 29 
paused 0
[    30.393] (**) Synaptics TM2691-001: always reports core events
[    30.393] (**) Option "Device" "/dev/input/event7"
[    30.394] (II) synaptics: Synaptics TM2691-001: found clickpad property
[    30.394] (II) synaptics: Synaptics TM2691-001: found top buttonpad property
[    30.394] (--) synaptics: Synaptics TM2691-001: x-axis range 0 - 4021 (res 
42)
[    30.394] (--) synaptics: Synaptics TM2691-001: y-axis range 0 - 2374 (res 
42)
[    30.394] (--) synaptics: Synaptics TM2691-001: pressure range 0 - 255
[    30.394] (II) synaptics: Synaptics TM2691-001: device does not report 
finger width.
[    30.394] (--) synaptics: Synaptics TM2691-001: buttons: left double triple
[    30.394] (--) synaptics: Synaptics TM2691-001: Vendor 0x6cb Product 0
[    30.394] (--) synaptics: Synaptics TM2691-001: invalid finger width range.  
defaulting to 0 - 15
[    30.394] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[    30.394] (**) Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
[    30.394] (--) synaptics: Synaptics TM2691-001: touchpad found
[    30.394] (**) Synaptics TM2691-001: always reports core events
[    30.394] (**) Option "config_info" 
"udev:/sys/devices/rmi4-00/input/input9/event7"
[    30.394] (II) XINPUT: Adding extended input device "Synaptics TM2691-001" 
(type: TOUCHPAD, id 12)
[    30.394] (**) synaptics: Synaptics TM2691-001: (accel) MinSpeed is now 
constant deceleration 2.5
[    30.394] (**) synaptics: Synaptics TM2691-001: (accel) MaxSpeed is now 1.75
[    30.394] (**) synaptics: Synaptics TM2691-001: (accel) AccelFactor is now 
0.043
[    30.394] (**) Synaptics TM2691-001: (accel) keeping acceleration scheme 1
[    30.394] (**) Synaptics TM2691-001: (accel) acceleration profile 1
[    30.394] (**) Synaptics TM2691-001: (accel) acceleration factor: 2.000
[    30.394] (**) Synaptics TM2691-001: (accel) acceleration threshold: 4
[    30.395] (--) synaptics: Synaptics TM2691-001: touchpad found
[    30.395] (II) config/udev: Adding input device Synaptics TM2691-001 
(/dev/input/mouse0)
[    30.395] (**) Synaptics TM2691-001: Ignoring device from InputClass 
"touchpad ignore duplicates"
[    30.396] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint 
(/dev/input/event13)
[    30.396] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer 
catchall"
[    30.396] (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer 
catchall"
[    30.396] (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
[    30.397] (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 30 
paused 0
[    30.397] (**) TPPS/2 IBM TrackPoint: always reports core events
[    30.397] (**) Option "Device" "/dev/input/event13"
[    30.397] (**) Option "_source" "server/udev"
[    30.398] (II) event13 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse 
Pointingstick
[    30.398] (II) event13 - TPPS/2 IBM TrackPoint: device is a pointer
[    30.399] (II) event13 - TPPS/2 IBM TrackPoint: device removed
[    30.399] (**) Option "config_info" 
"udev:/sys/devices/rmi4-00/rmi4-00.fn03/serio2/input/input10/event13"
[    30.399] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" 
(type: MOUSE, id 13)
[    30.400] (**) Option "AccelerationScheme" "none"
[    30.400] (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
[    30.400] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    30.400] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    30.401] (II) event13 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse 
Pointingstick
[    30.401] (II) event13 - TPPS/2 IBM TrackPoint: device is a pointer
[    30.402] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint 
(/dev/input/mouse1)
[    30.402] (II) No input driver specified, ignoring this device.
[    30.402] (II) This device may have been added with another device file.
[    75.548] (II) config/udev: removing device TPPS/2 IBM TrackPoint
[    75.548] (**) Option "fd" "30"
[    75.549] (II) event13 - TPPS/2 IBM TrackPoint: device removed
[    75.553] (II) UnloadModule: "libinput"
[    75.553] (II) systemd-logind: releasing fd for 13:77
[    75.555] (EE) systemd-logind: failed to release device: Device not taken
[   130.950] (**) Option "fd" "21"
[   130.950] (II) event3  - Power Button: device removed
[   130.950] (**) Option "fd" "24"
[   130.950] (II) event4  - Video Bus: device removed
[   130.951] (**) Option "fd" "25"
[   130.951] (II) event1  - Power Button: device removed
[   130.951] (**) Option "fd" "26"
[   130.951] (II) event8  - Integrated Camera: Integrated C: device removed
[   130.951] (**) Option "fd" "27"
[   130.951] (II) event0  - AT Translated Set 2 keyboard: device removed
[   130.951] (**) Option "fd" "28"
[   130.951] (II) event6  - ThinkPad Extra Buttons: device removed
[   130.967] (II) UnloadModule: "synaptics"
[   130.967] (II) systemd-logind: releasing fd for 13:71
[   131.100] (II) UnloadModule: "libinput"
[   131.100] (II) systemd-logind: releasing fd for 13:70
[   131.132] (II) UnloadModule: "libinput"
[   131.132] (II) systemd-logind: releasing fd for 13:64
[   131.152] (II) UnloadModule: "libinput"
[   131.152] (II) systemd-logind: releasing fd for 13:72
[   131.184] (II) UnloadModule: "libinput"
[   131.184] (II) systemd-logind: releasing fd for 13:65
[   131.224] (II) UnloadModule: "libinput"
[   131.224] (II) systemd-logind: releasing fd for 13:68
[   131.225] (II) UnloadModule: "libinput"
[   131.225] (II) systemd-logind: releasing fd for 13:67
[   131.236] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[   131.236] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[   131.236] (WW) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[   131.308] (II) Server terminated successfully (0). Closing log file.
May  3 20:12:01 topcrapn kernel: [    0.000000] microcode: microcode updated 
early to revision 0x21, date = 2019-02-13
May  3 20:12:01 topcrapn kernel: [    0.000000] Linux version 
5.10.0-0.bpo.5-amd64 (debian-kernel@lists.debian.org) (gcc-8 (Debian 8.3.0-6) 
8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #1 SMP Debian 5.10.24-1~bpo10+1 
(2021-03-29)
May  3 20:12:01 topcrapn kernel: [    0.000000] Command line: 
BOOT_IMAGE=/boot/vmlinuz-5.10.0-0.bpo.5-amd64 
root=UUID=5bb40af0-885f-4dab-8f17-8e27ed3d35af ro quiet splash
May  3 20:12:01 topcrapn kernel: [    0.000000] x86/fpu: Supporting XSAVE 
feature 0x001: 'x87 floating point registers'
May  3 20:12:01 topcrapn kernel: [    0.000000] x86/fpu: Supporting XSAVE 
feature 0x002: 'SSE registers'
May  3 20:12:01 topcrapn kernel: [    0.000000] x86/fpu: Supporting XSAVE 
feature 0x004: 'AVX registers'
May  3 20:12:01 topcrapn kernel: [    0.000000] x86/fpu: xstate_offset[2]:  
576, xstate_sizes[2]:  256
May  3 20:12:01 topcrapn kernel: [    0.000000] x86/fpu: Enabled xstate 
features 0x7, context size is 832 bytes, using 'standard' format.
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-provided physical RAM map:
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000000000000-0x000000000009cfff] usable
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x000000000009d000-0x000000000009ffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000000e0000-0x00000000000fffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000000100000-0x000000001fffffff] usable
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000020000000-0x00000000201fffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000020200000-0x0000000040003fff] usable
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000040004000-0x0000000040004fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000040005000-0x00000000c6a13fff] usable
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000c6a14000-0x00000000dae9efff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000dae9f000-0x00000000daf9efff] ACPI NVS
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000daf9f000-0x00000000daffefff] ACPI data
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000dafff000-0x00000000df9fffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000f8000000-0x00000000fbffffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000fec00000-0x00000000fec00fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000fed08000-0x00000000fed08fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000fed10000-0x00000000fed19fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000fed1c000-0x00000000fed1ffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000fee00000-0x00000000fee00fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000ff000000-0x00000000ff000fff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x00000000ffc00000-0x00000000ffffffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x0000000100000000-0x000000041e5fffff] usable
May  3 20:12:01 topcrapn kernel: [    0.000000] BIOS-e820: [mem 
0x000000041e600000-0x000000041effffff] reserved
May  3 20:12:01 topcrapn kernel: [    0.000000] NX (Execute Disable) 
protection: active
May  3 20:12:01 topcrapn kernel: [    0.000000] SMBIOS 2.7 present.
May  3 20:12:01 topcrapn kernel: [    0.000000] DMI: LENOVO 6277CTO/6277CTO, 
BIOS HEET36WW (1.17 ) 10/14/2013
May  3 20:12:01 topcrapn kernel: [    0.000000] tsc: Fast TSC calibration using 
PIT
May  3 20:12:01 topcrapn kernel: [    0.000000] tsc: Detected 2593.963 MHz 
processor
May  3 20:12:01 topcrapn kernel: [    0.000738] e820: update [mem 
0x00000000-0x00000fff] usable ==> reserved
May  3 20:12:01 topcrapn kernel: [    0.000740] e820: remove [mem 
0x000a0000-0x000fffff] usable
May  3 20:12:01 topcrapn kernel: [    0.000747] last_pfn = 0x41e600 
max_arch_pfn = 0x400000000
May  3 20:12:01 topcrapn kernel: [    0.000752] MTRR default type: uncachable
May  3 20:12:01 topcrapn kernel: [    0.000753] MTRR fixed ranges enabled:
May  3 20:12:01 topcrapn kernel: [    0.000754]   00000-9FFFF write-back
May  3 20:12:01 topcrapn kernel: [    0.000755]   A0000-BFFFF uncachable
May  3 20:12:01 topcrapn kernel: [    0.000756]   C0000-FFFFF write-protect
May  3 20:12:01 topcrapn kernel: [    0.000757] MTRR variable ranges enabled:
May  3 20:12:01 topcrapn kernel: [    0.000759]   0 base 0FFC00000 mask 
FFFC00000 write-protect
May  3 20:12:01 topcrapn kernel: [    0.000760]   1 base 000000000 mask 
F80000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000761]   2 base 080000000 mask 
FC0000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000762]   3 base 0C0000000 mask 
FE0000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000763]   4 base 0DC000000 mask 
FFC000000 uncachable
May  3 20:12:01 topcrapn kernel: [    0.000764]   5 base 0DB000000 mask 
FFF000000 uncachable
May  3 20:12:01 topcrapn kernel: [    0.000765]   6 base 100000000 mask 
F00000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000765]   7 base 200000000 mask 
E00000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000766]   8 base 400000000 mask 
FE0000000 write-back
May  3 20:12:01 topcrapn kernel: [    0.000767]   9 base 41F000000 mask 
FFF000000 uncachable
May  3 20:12:01 topcrapn kernel: [    0.001233] x86/PAT: Configuration [0-7]: 
WB  WC  UC- UC  WB  WP  UC- WT  
May  3 20:12:01 topcrapn kernel: [    0.001561] last_pfn = 0xc6a14 max_arch_pfn 
= 0x400000000
May  3 20:12:01 topcrapn kernel: [    0.001673] found SMP MP-table at [mem 
0x000f0100-0x000f010f]
May  3 20:12:01 topcrapn kernel: [    0.002199] RAMDISK: [mem 
0x31369000-0x349abfff]
May  3 20:12:01 topcrapn kernel: [    0.002205] ACPI: Early table checksum 
verification disabled
May  3 20:12:01 topcrapn kernel: [    0.002208] ACPI: RSDP 0x00000000000F0120 
000024 (v02 LENOVO)
May  3 20:12:01 topcrapn kernel: [    0.002212] ACPI: XSDT 0x00000000DAFFE170 
0000A4 (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002218] ACPI: FACP 0x00000000DAFEC000 
00010C (v05 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002223] ACPI: DSDT 0x00000000DAFEE000 
00C476 (v02 LENOVO TP-HE    00001170 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.002226] ACPI: FACS 0x00000000DAF59000 
000040
May  3 20:12:01 topcrapn kernel: [    0.002229] ACPI: SLIC 0x00000000DAFFD000 
000176 (v01 LENOVO TP-HE    00001170 PTL  00000001)
May  3 20:12:01 topcrapn kernel: [    0.002232] ACPI: SSDT 0x00000000DAFFC000 
000651 (v02 LENOVO SataAhci 00001000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.002235] ACPI: SSDT 0x00000000DAFFB000 
0006A5 (v02 LENOVO PtidDevc 00001000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.002239] ACPI: ASF! 0x00000000DAFED000 
0000A5 (v32 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002242] ACPI: HPET 0x00000000DAFEA000 
000038 (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002245] ACPI: APIC 0x00000000DAFE9000 
000098 (v03 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002248] ACPI: MCFG 0x00000000DAFE8000 
00003C (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002251] ACPI: FPDT 0x00000000DAFE7000 
000064 (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002255] ACPI: SSDT 0x00000000DAFE6000 
0009AA (v02 PmRef  Cpu0Ist  00003000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.002258] ACPI: SSDT 0x00000000DAFE5000 
000A97 (v02 PmRef  CpuPm    00003000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.002261] ACPI: UEFI 0x00000000DAFE4000 
00003E (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002264] ACPI: UEFI 0x00000000DAFE3000 
000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
May  3 20:12:01 topcrapn kernel: [    0.002268] ACPI: POAT 0x00000000DAF54000 
000055 (v03 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002271] ACPI: UEFI 0x00000000DAFE2000 
0002BA (v01 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002274] ACPI: DBG2 0x00000000DAFE1000 
0000A5 (v00 LENOVO TP-HE    00001170 PTL  00000002)
May  3 20:12:01 topcrapn kernel: [    0.002282] ACPI: Local APIC address 
0xfee00000
May  3 20:12:01 topcrapn kernel: [    0.002366] No NUMA configuration found
May  3 20:12:01 topcrapn kernel: [    0.002367] Faking a node at [mem 
0x0000000000000000-0x000000041e5fffff]
May  3 20:12:01 topcrapn kernel: [    0.002377] NODE_DATA(0) allocated [mem 
0x41e5cb000-0x41e5f4fff]
May  3 20:12:01 topcrapn kernel: [    0.002776] Zone ranges:
May  3 20:12:01 topcrapn kernel: [    0.002777]   DMA      [mem 
0x0000000000001000-0x0000000000ffffff]
May  3 20:12:01 topcrapn kernel: [    0.002779]   DMA32    [mem 
0x0000000001000000-0x00000000ffffffff]
May  3 20:12:01 topcrapn kernel: [    0.002780]   Normal   [mem 
0x0000000100000000-0x000000041e5fffff]
May  3 20:12:01 topcrapn kernel: [    0.002781]   Device   empty
May  3 20:12:01 topcrapn kernel: [    0.002782] Movable zone start for each node
May  3 20:12:01 topcrapn kernel: [    0.002786] Early memory node ranges
May  3 20:12:01 topcrapn kernel: [    0.002787]   node   0: [mem 
0x0000000000001000-0x000000000009cfff]
May  3 20:12:01 topcrapn kernel: [    0.002788]   node   0: [mem 
0x0000000000100000-0x000000001fffffff]
May  3 20:12:01 topcrapn kernel: [    0.002789]   node   0: [mem 
0x0000000020200000-0x0000000040003fff]
May  3 20:12:01 topcrapn kernel: [    0.002790]   node   0: [mem 
0x0000000040005000-0x00000000c6a13fff]
May  3 20:12:01 topcrapn kernel: [    0.002791]   node   0: [mem 
0x0000000100000000-0x000000041e5fffff]
May  3 20:12:01 topcrapn kernel: [    0.002793] Initmem setup node 0 [mem 
0x0000000000001000-0x000000041e5fffff]
May  3 20:12:01 topcrapn kernel: [    0.002795] On node 0 totalpages: 4083119
May  3 20:12:01 topcrapn kernel: [    0.002796]   DMA zone: 64 pages used for 
memmap
May  3 20:12:01 topcrapn kernel: [    0.002796]   DMA zone: 21 pages reserved
May  3 20:12:01 topcrapn kernel: [    0.002797]   DMA zone: 3996 pages, LIFO 
batch:0
May  3 20:12:01 topcrapn kernel: [    0.003116]   DMA zone: 28772 pages in 
unavailable ranges
May  3 20:12:01 topcrapn kernel: [    0.003117]   DMA32 zone: 12641 pages used 
for memmap
May  3 20:12:01 topcrapn kernel: [    0.003118]   DMA32 zone: 808979 pages, 
LIFO batch:63
May  3 20:12:01 topcrapn kernel: [    0.010892]   DMA32 zone: 6125 pages in 
unavailable ranges
May  3 20:12:01 topcrapn kernel: [    0.010893]   Normal zone: 51096 pages used 
for memmap
May  3 20:12:01 topcrapn kernel: [    0.010894]   Normal zone: 3270144 pages, 
LIFO batch:63
May  3 20:12:01 topcrapn kernel: [    0.011285]   Normal zone: 6656 pages in 
unavailable ranges
May  3 20:12:01 topcrapn kernel: [    0.011294] Reserving Intel graphics memory 
at [mem 0xdba00000-0xdf9fffff]
May  3 20:12:01 topcrapn kernel: [    0.011478] ACPI: PM-Timer IO Port: 0x408
May  3 20:12:01 topcrapn kernel: [    0.011480] ACPI: Local APIC address 
0xfee00000
May  3 20:12:01 topcrapn kernel: [    0.011487] ACPI: LAPIC_NMI (acpi_id[0x00] 
high edge lint[0x1])
May  3 20:12:01 topcrapn kernel: [    0.011488] ACPI: LAPIC_NMI (acpi_id[0x01] 
high edge lint[0x1])
May  3 20:12:01 topcrapn kernel: [    0.011499] IOAPIC[0]: apic_id 2, version 
32, address 0xfec00000, GSI 0-23
May  3 20:12:01 topcrapn kernel: [    0.011501] ACPI: INT_SRC_OVR (bus 0 
bus_irq 0 global_irq 2 dfl dfl)
May  3 20:12:01 topcrapn kernel: [    0.011503] ACPI: INT_SRC_OVR (bus 0 
bus_irq 9 global_irq 9 high level)
May  3 20:12:01 topcrapn kernel: [    0.011504] ACPI: IRQ0 used by override.
May  3 20:12:01 topcrapn kernel: [    0.011505] ACPI: IRQ9 used by override.
May  3 20:12:01 topcrapn kernel: [    0.011507] Using ACPI (MADT) for SMP 
configuration information
May  3 20:12:01 topcrapn kernel: [    0.011509] ACPI: HPET id: 0x8086a301 base: 
0xfed00000
May  3 20:12:01 topcrapn kernel: [    0.011513] TSC deadline timer available
May  3 20:12:01 topcrapn kernel: [    0.011514] smpboot: Allowing 8 CPUs, 4 
hotplug CPUs
May  3 20:12:01 topcrapn kernel: [    0.011534] PM: hibernation: Registered 
nosave memory: [mem 0x00000000-0x00000fff]
May  3 20:12:01 topcrapn kernel: [    0.011536] PM: hibernation: Registered 
nosave memory: [mem 0x0009d000-0x0009ffff]
May  3 20:12:01 topcrapn kernel: [    0.011537] PM: hibernation: Registered 
nosave memory: [mem 0x000a0000-0x000dffff]
May  3 20:12:01 topcrapn kernel: [    0.011538] PM: hibernation: Registered 
nosave memory: [mem 0x000e0000-0x000fffff]
May  3 20:12:01 topcrapn kernel: [    0.011539] PM: hibernation: Registered 
nosave memory: [mem 0x20000000-0x201fffff]
May  3 20:12:01 topcrapn kernel: [    0.011541] PM: hibernation: Registered 
nosave memory: [mem 0x40004000-0x40004fff]
May  3 20:12:01 topcrapn kernel: [    0.011543] PM: hibernation: Registered 
nosave memory: [mem 0xc6a14000-0xdae9efff]
May  3 20:12:01 topcrapn kernel: [    0.011543] PM: hibernation: Registered 
nosave memory: [mem 0xdae9f000-0xdaf9efff]
May  3 20:12:01 topcrapn kernel: [    0.011544] PM: hibernation: Registered 
nosave memory: [mem 0xdaf9f000-0xdaffefff]
May  3 20:12:01 topcrapn kernel: [    0.011545] PM: hibernation: Registered 
nosave memory: [mem 0xdafff000-0xdf9fffff]
May  3 20:12:01 topcrapn kernel: [    0.011546] PM: hibernation: Registered 
nosave memory: [mem 0xdfa00000-0xf7ffffff]
May  3 20:12:01 topcrapn kernel: [    0.011546] PM: hibernation: Registered 
nosave memory: [mem 0xf8000000-0xfbffffff]
May  3 20:12:01 topcrapn kernel: [    0.011547] PM: hibernation: Registered 
nosave memory: [mem 0xfc000000-0xfebfffff]
May  3 20:12:01 topcrapn kernel: [    0.011548] PM: hibernation: Registered 
nosave memory: [mem 0xfec00000-0xfec00fff]
May  3 20:12:01 topcrapn kernel: [    0.011549] PM: hibernation: Registered 
nosave memory: [mem 0xfec01000-0xfed07fff]
May  3 20:12:01 topcrapn kernel: [    0.011550] PM: hibernation: Registered 
nosave memory: [mem 0xfed08000-0xfed08fff]
May  3 20:12:01 topcrapn kernel: [    0.011550] PM: hibernation: Registered 
nosave memory: [mem 0xfed09000-0xfed0ffff]
May  3 20:12:01 topcrapn kernel: [    0.011551] PM: hibernation: Registered 
nosave memory: [mem 0xfed10000-0xfed19fff]
May  3 20:12:01 topcrapn kernel: [    0.011552] PM: hibernation: Registered 
nosave memory: [mem 0xfed1a000-0xfed1bfff]
May  3 20:12:01 topcrapn kernel: [    0.011552] PM: hibernation: Registered 
nosave memory: [mem 0xfed1c000-0xfed1ffff]
May  3 20:12:01 topcrapn kernel: [    0.011553] PM: hibernation: Registered 
nosave memory: [mem 0xfed20000-0xfedfffff]
May  3 20:12:01 topcrapn kernel: [    0.011554] PM: hibernation: Registered 
nosave memory: [mem 0xfee00000-0xfee00fff]
May  3 20:12:01 topcrapn kernel: [    0.011555] PM: hibernation: Registered 
nosave memory: [mem 0xfee01000-0xfeffffff]
May  3 20:12:01 topcrapn kernel: [    0.011556] PM: hibernation: Registered 
nosave memory: [mem 0xff000000-0xff000fff]
May  3 20:12:01 topcrapn kernel: [    0.011556] PM: hibernation: Registered 
nosave memory: [mem 0xff001000-0xffbfffff]
May  3 20:12:01 topcrapn kernel: [    0.011558] PM: hibernation: Registered 
nosave memory: [mem 0xffc00000-0xffffffff]
May  3 20:12:01 topcrapn kernel: [    0.011559] [mem 0xdfa00000-0xf7ffffff] 
available for PCI devices
May  3 20:12:01 topcrapn kernel: [    0.011561] Booting paravirtualized kernel 
on bare hardware
May  3 20:12:01 topcrapn kernel: [    0.011563] clocksource: refined-jiffies: 
mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
May  3 20:12:01 topcrapn kernel: [    0.016094] setup_percpu: NR_CPUS:8192 
nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
May  3 20:12:01 topcrapn kernel: [    0.016336] percpu: Embedded 54 pages/cpu 
s183960 r8192 d29032 u262144
May  3 20:12:01 topcrapn kernel: [    0.016343] pcpu-alloc: s183960 r8192 
d29032 u262144 alloc=1*2097152
May  3 20:12:01 topcrapn kernel: [    0.016345] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
May  3 20:12:01 topcrapn kernel: [    0.016378] Built 1 zonelists, mobility 
grouping on.  Total pages: 4019297
May  3 20:12:01 topcrapn kernel: [    0.016379] Policy zone: Normal
May  3 20:12:01 topcrapn kernel: [    0.016381] Kernel command line: 
BOOT_IMAGE=/boot/vmlinuz-5.10.0-0.bpo.5-amd64 
root=UUID=5bb40af0-885f-4dab-8f17-8e27ed3d35af ro quiet splash
May  3 20:12:01 topcrapn kernel: [    0.017246] Dentry cache hash table 
entries: 2097152 (order: 12, 16777216 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    0.017651] Inode-cache hash table entries: 
1048576 (order: 11, 8388608 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    0.017732] mem auto-init: stack:off, heap 
alloc:on, heap free:off
May  3 20:12:01 topcrapn kernel: [    0.034320] Memory: 3261528K/16332476K 
available (12295K kernel code, 2544K rwdata, 7656K rodata, 2400K init, 1704K 
bss, 436984K reserved, 0K cma-reserved)
May  3 20:12:01 topcrapn kernel: [    0.034328] random: get_random_u64 called 
from __kmem_cache_create+0x2e/0x430 with crng_init=0
May  3 20:12:01 topcrapn kernel: [    0.034448] SLUB: HWalign=64, Order=0-3, 
MinObjects=0, CPUs=8, Nodes=1
May  3 20:12:01 topcrapn kernel: [    0.034460] Kernel/User page tables 
isolation: enabled
May  3 20:12:01 topcrapn kernel: [    0.034475] ftrace: allocating 37429 
entries in 147 pages
May  3 20:12:01 topcrapn kernel: [    0.047592] ftrace: allocated 147 pages 
with 4 groups
May  3 20:12:01 topcrapn kernel: [    0.047708] rcu: Hierarchical RCU 
implementation.
May  3 20:12:01 topcrapn kernel: [    0.047710] rcu:    RCU restricting CPUs 
from NR_CPUS=8192 to nr_cpu_ids=8.
May  3 20:12:01 topcrapn kernel: [    0.047711]         Rude variant of Tasks 
RCU enabled.
May  3 20:12:01 topcrapn kernel: [    0.047711]         Tracing variant of 
Tasks RCU enabled.
May  3 20:12:01 topcrapn kernel: [    0.047712] rcu: RCU calculated value of 
scheduler-enlistment delay is 25 jiffies.
May  3 20:12:01 topcrapn kernel: [    0.047713] rcu: Adjusting geometry for 
rcu_fanout_leaf=16, nr_cpu_ids=8
May  3 20:12:01 topcrapn kernel: [    0.051836] NR_IRQS: 524544, nr_irqs: 488, 
preallocated irqs: 16
May  3 20:12:01 topcrapn kernel: [    0.052065] random: crng done (trusting 
CPU's manufacturer)
May  3 20:12:01 topcrapn kernel: [    0.053650] Console: colour VGA+ 80x25
May  3 20:12:01 topcrapn kernel: [    0.053663] printk: console [tty0] enabled
May  3 20:12:01 topcrapn kernel: [    0.053678] ACPI: Core revision 20200925
May  3 20:12:01 topcrapn kernel: [    0.053801] clocksource: hpet: mask: 
0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
May  3 20:12:01 topcrapn kernel: [    0.053815] APIC: Switch to symmetric I/O 
mode setup
May  3 20:12:01 topcrapn kernel: [    0.053886] x2apic: IRQ remapping doesn't 
support X2APIC mode
May  3 20:12:01 topcrapn kernel: [    0.054330] ..TIMER: vector=0x30 apic1=0 
pin1=2 apic2=-1 pin2=-1
May  3 20:12:01 topcrapn kernel: [    0.073817] clocksource: tsc-early: mask: 
0xffffffffffffffff max_cycles: 0x2563f526845, max_idle_ns: 440795233860 ns
May  3 20:12:01 topcrapn kernel: [    0.073822] Calibrating delay loop 
(skipped), value calculated using timer frequency.. 5187.92 BogoMIPS 
(lpj=10375852)
May  3 20:12:01 topcrapn kernel: [    0.073824] pid_max: default: 32768 
minimum: 301
May  3 20:12:01 topcrapn kernel: [    0.073851] LSM: Security Framework 
initializing
May  3 20:12:01 topcrapn kernel: [    0.073862] Yama: disabled by default; 
enable with sysctl kernel.yama.*
May  3 20:12:01 topcrapn kernel: [    0.073887] AppArmor: AppArmor initialized
May  3 20:12:01 topcrapn kernel: [    0.073889] TOMOYO Linux initialized
May  3 20:12:01 topcrapn kernel: [    0.073928] Mount-cache hash table entries: 
32768 (order: 6, 262144 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    0.073956] Mountpoint-cache hash table 
entries: 32768 (order: 6, 262144 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    0.074198] x86/cpu: VMX (outside TXT) 
disabled by BIOS
May  3 20:12:01 topcrapn kernel: [    0.074258] mce: CPU0: Thermal monitoring 
enabled (TM1)
May  3 20:12:01 topcrapn kernel: [    0.074268] process: using mwait in idle 
threads
May  3 20:12:01 topcrapn kernel: [    0.074270] Last level iTLB entries: 4KB 
512, 2MB 8, 4MB 8
May  3 20:12:01 topcrapn kernel: [    0.074271] Last level dTLB entries: 4KB 
512, 2MB 32, 4MB 32, 1GB 0
May  3 20:12:01 topcrapn kernel: [    0.074273] Spectre V1 : Mitigation: 
usercopy/swapgs barriers and __user pointer sanitization
May  3 20:12:01 topcrapn kernel: [    0.074275] Spectre V2 : Mitigation: Full 
generic retpoline
May  3 20:12:01 topcrapn kernel: [    0.074276] Spectre V2 : Spectre v2 / 
SpectreRSB mitigation: Filling RSB on context switch
May  3 20:12:01 topcrapn kernel: [    0.074276] Spectre V2 : Enabling 
Restricted Speculation for firmware calls
May  3 20:12:01 topcrapn kernel: [    0.074278] Spectre V2 : mitigation: 
Enabling conditional Indirect Branch Prediction Barrier
May  3 20:12:01 topcrapn kernel: [    0.074279] Spectre V2 : User space: 
Mitigation: STIBP via seccomp and prctl
May  3 20:12:01 topcrapn kernel: [    0.074280] Speculative Store Bypass: 
Mitigation: Speculative Store Bypass disabled via prctl and seccomp
May  3 20:12:01 topcrapn kernel: [    0.074282] SRBDS: Vulnerable: No microcode
May  3 20:12:01 topcrapn kernel: [    0.074283] MDS: Mitigation: Clear CPU 
buffers
May  3 20:12:01 topcrapn kernel: [    0.074403] Freeing SMP alternatives 
memory: 32K
May  3 20:12:01 topcrapn kernel: [    0.077901] smpboot: CPU0: Intel(R) 
Core(TM) i5-3230M CPU @ 2.60GHz (family: 0x6, model: 0x3a, stepping: 0x9)
May  3 20:12:01 topcrapn kernel: [    0.078050] Performance Events: PEBS fmt1+, 
IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
May  3 20:12:01 topcrapn kernel: [    0.078057] ... version:                3
May  3 20:12:01 topcrapn kernel: [    0.078058] ... bit width:              48
May  3 20:12:01 topcrapn kernel: [    0.078058] ... generic registers:      4
May  3 20:12:01 topcrapn kernel: [    0.078059] ... value mask:             
0000ffffffffffff
May  3 20:12:01 topcrapn kernel: [    0.078060] ... max period:             
00007fffffffffff
May  3 20:12:01 topcrapn kernel: [    0.078060] ... fixed-purpose events:   3
May  3 20:12:01 topcrapn kernel: [    0.078061] ... event mask:             
000000070000000f
May  3 20:12:01 topcrapn kernel: [    0.078187] rcu: Hierarchical SRCU 
implementation.
May  3 20:12:01 topcrapn kernel: [    0.078861] NMI watchdog: Enabled. 
Permanently consumes one hw-PMU counter.
May  3 20:12:01 topcrapn kernel: [    0.078951] smp: Bringing up secondary CPUs 
...
May  3 20:12:01 topcrapn kernel: [    0.079040] x86: Booting SMP configuration:
May  3 20:12:01 topcrapn kernel: [    0.079042] .... node  #0, CPUs:      #1
May  3 20:12:01 topcrapn kernel: [    0.081914] MDS CPU bug present and SMT on, 
data leak possible. See 
https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more 
details.
May  3 20:12:01 topcrapn kernel: [    0.081964]  #2 #3
May  3 20:12:01 topcrapn kernel: [    0.088139] smp: Brought up 1 node, 4 CPUs
May  3 20:12:01 topcrapn kernel: [    0.088139] smpboot: Max logical packages: 2
May  3 20:12:01 topcrapn kernel: [    0.088139] smpboot: Total of 4 processors 
activated (20751.70 BogoMIPS)
May  3 20:12:01 topcrapn kernel: [    0.110506] node 0 deferred pages 
initialised in 24ms
May  3 20:12:01 topcrapn kernel: [    0.112537] devtmpfs: initialized
May  3 20:12:01 topcrapn kernel: [    0.112537] x86/mm: Memory block size: 128MB
May  3 20:12:01 topcrapn kernel: [    0.113842] PM: Registering ACPI NVS region 
[mem 0xdae9f000-0xdaf9efff] (1048576 bytes)
May  3 20:12:01 topcrapn kernel: [    0.113898] clocksource: jiffies: mask: 
0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
May  3 20:12:01 topcrapn kernel: [    0.113909] futex hash table entries: 2048 
(order: 5, 131072 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    0.113969] pinctrl core: initialized 
pinctrl subsystem
May  3 20:12:01 topcrapn kernel: [    0.114162] NET: Registered protocol family 
16
May  3 20:12:01 topcrapn kernel: [    0.114233] audit: initializing netlink 
subsys (disabled)
May  3 20:12:01 topcrapn kernel: [    0.114240] audit: type=2000 
audit(1620072716.060:1): state=initialized audit_enabled=0 res=1
May  3 20:12:01 topcrapn kernel: [    0.114240] thermal_sys: Registered thermal 
governor 'fair_share'
May  3 20:12:01 topcrapn kernel: [    0.114240] thermal_sys: Registered thermal 
governor 'bang_bang'
May  3 20:12:01 topcrapn kernel: [    0.114240] thermal_sys: Registered thermal 
governor 'step_wise'
May  3 20:12:01 topcrapn kernel: [    0.114240] thermal_sys: Registered thermal 
governor 'user_space'
May  3 20:12:01 topcrapn kernel: [    0.114240] thermal_sys: Registered thermal 
governor 'power_allocator'
May  3 20:12:01 topcrapn kernel: [    0.114240] cpuidle: using governor ladder
May  3 20:12:01 topcrapn kernel: [    0.114240] cpuidle: using governor menu
May  3 20:12:01 topcrapn kernel: [    0.114240] ACPI FADT declares the system 
doesn't support PCIe ASPM, so disable it
May  3 20:12:01 topcrapn kernel: [    0.114240] ACPI: bus type PCI registered
May  3 20:12:01 topcrapn kernel: [    0.114240] acpiphp: ACPI Hot Plug PCI 
Controller Driver version: 0.5
May  3 20:12:01 topcrapn kernel: [    0.114240] PCI: MMCONFIG for domain 0000 
[bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
May  3 20:12:01 topcrapn kernel: [    0.114240] PCI: MMCONFIG at [mem 
0xf8000000-0xfbffffff] reserved in E820
May  3 20:12:01 topcrapn kernel: [    0.114240] PCI: Using configuration type 1 
for base access
May  3 20:12:01 topcrapn kernel: [    0.114240] core: PMU erratum BJ122, BV98, 
HSD29 worked around, HT is on
May  3 20:12:01 topcrapn kernel: [    0.114339] ENERGY_PERF_BIAS: Set to 
'normal', was 'performance'
May  3 20:12:01 topcrapn kernel: [    0.114504] Kprobes globally optimized
May  3 20:12:01 topcrapn kernel: [    0.114507] HugeTLB registered 2.00 MiB 
page size, pre-allocated 0 pages
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added _OSI(Module Device)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added _OSI(Processor 
Device)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added _OSI(3.0 _SCP 
Extensions)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added _OSI(Processor 
Aggregator Device)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added 
_OSI(Linux-Dell-Video)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added 
_OSI(Linux-Lenovo-NV-HDMI-Audio)
May  3 20:12:01 topcrapn kernel: [    0.279036] ACPI: Added 
_OSI(Linux-HPI-Hybrid-Graphics)
May  3 20:12:01 topcrapn kernel: [    0.288257] ACPI: 5 ACPI AML tables 
successfully acquired and loaded
May  3 20:12:01 topcrapn kernel: [    0.289120] ACPI: [Firmware Bug]: BIOS 
_OSI(Linux) query ignored
May  3 20:12:01 topcrapn kernel: [    0.292599] ACPI: Dynamic OEM Table Load:
May  3 20:12:01 topcrapn kernel: [    0.292607] ACPI: SSDT 0xFFFF8FFCC08A0000 
00083B (v02 PmRef  Cpu0Cst  00003001 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.293335] ACPI: Dynamic OEM Table Load:
May  3 20:12:01 topcrapn kernel: [    0.293340] ACPI: SSDT 0xFFFF8FFCC098A800 
000303 (v02 PmRef  ApIst    00003000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.293937] ACPI: Dynamic OEM Table Load:
May  3 20:12:01 topcrapn kernel: [    0.293941] ACPI: SSDT 0xFFFF8FFEE2699600 
000119 (v02 PmRef  ApCst    00003000 INTL 20061109)
May  3 20:12:01 topcrapn kernel: [    0.295059] ACPI: EC: EC started
May  3 20:12:01 topcrapn kernel: [    0.295060] ACPI: EC: interrupt blocked
May  3 20:12:01 topcrapn kernel: [    1.166745] ACPI: EC: EC_CMD/EC_SC=0x66, 
EC_DATA=0x62
May  3 20:12:01 topcrapn kernel: [    1.166748] ACPI: \_SB_.PCI0.LPCB.EC0_: 
Boot DSDT EC used to handle transactions
May  3 20:12:01 topcrapn kernel: [    1.166748] ACPI: Interpreter enabled
May  3 20:12:01 topcrapn kernel: [    1.166770] ACPI: (supports S0 S3 S4 S5)
May  3 20:12:01 topcrapn kernel: [    1.166772] ACPI: Using IOAPIC for 
interrupt routing
May  3 20:12:01 topcrapn kernel: [    1.166800] PCI: Using host bridge windows 
from ACPI; if necessary, use "pci=nocrs" and report a bug
May  3 20:12:01 topcrapn kernel: [    1.167037] ACPI: Enabled 6 GPEs in block 
00 to 3F
May  3 20:12:01 topcrapn kernel: [    1.174210] ACPI: PCI Root Bridge [PCI0] 
(domain 0000 [bus 00-3e])
May  3 20:12:01 topcrapn kernel: [    1.174216] acpi PNP0A08:00: _OSC: OS 
supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
May  3 20:12:01 topcrapn kernel: [    1.174325] acpi PNP0A08:00: _OSC failed 
(AE_ERROR); disabling ASPM
May  3 20:12:01 topcrapn kernel: [    1.174726] PCI host bridge to bus 0000:00
May  3 20:12:01 topcrapn kernel: [    1.174728] pci_bus 0000:00: root bus 
resource [io  0x0000-0x0cf7 window]
May  3 20:12:01 topcrapn kernel: [    1.174729] pci_bus 0000:00: root bus 
resource [io  0x0d00-0xffff window]
May  3 20:12:01 topcrapn kernel: [    1.174731] pci_bus 0000:00: root bus 
resource [mem 0x000a0000-0x000bffff window]
May  3 20:12:01 topcrapn kernel: [    1.174732] pci_bus 0000:00: root bus 
resource [mem 0xdfa00000-0xfeafffff window]
May  3 20:12:01 topcrapn kernel: [    1.174733] pci_bus 0000:00: root bus 
resource [bus 00-3e]
May  3 20:12:01 topcrapn kernel: [    1.174745] pci 0000:00:00.0: [8086:0154] 
type 00 class 0x060000
May  3 20:12:01 topcrapn kernel: [    1.174827] pci 0000:00:02.0: [8086:0166] 
type 00 class 0x030000
May  3 20:12:01 topcrapn kernel: [    1.174835] pci 0000:00:02.0: reg 0x10: 
[mem 0xf0000000-0xf03fffff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.174840] pci 0000:00:02.0: reg 0x18: 
[mem 0xe0000000-0xefffffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.174844] pci 0000:00:02.0: reg 0x20: [io 
 0x5000-0x503f]
May  3 20:12:01 topcrapn kernel: [    1.174952] pci 0000:00:14.0: [8086:1e31] 
type 00 class 0x0c0330
May  3 20:12:01 topcrapn kernel: [    1.174971] pci 0000:00:14.0: reg 0x10: 
[mem 0xf3700000-0xf370ffff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.175042] pci 0000:00:14.0: PME# 
supported from D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.175128] pci 0000:00:16.0: [8086:1e3a] 
type 00 class 0x078000
May  3 20:12:01 topcrapn kernel: [    1.175148] pci 0000:00:16.0: reg 0x10: 
[mem 0xf3715000-0xf371500f 64bit]
May  3 20:12:01 topcrapn kernel: [    1.175224] pci 0000:00:16.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.175306] pci 0000:00:1a.0: [8086:1e2d] 
type 00 class 0x0c0320
May  3 20:12:01 topcrapn kernel: [    1.175322] pci 0000:00:1a.0: reg 0x10: 
[mem 0xf371a000-0xf371a3ff]
May  3 20:12:01 topcrapn kernel: [    1.175405] pci 0000:00:1a.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.175491] pci 0000:00:1b.0: [8086:1e20] 
type 00 class 0x040300
May  3 20:12:01 topcrapn kernel: [    1.175508] pci 0000:00:1b.0: reg 0x10: 
[mem 0xf3710000-0xf3713fff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.175587] pci 0000:00:1b.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.175680] pci 0000:00:1c.0: [8086:1e10] 
type 01 class 0x060400
May  3 20:12:01 topcrapn kernel: [    1.175771] pci 0000:00:1c.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.175868] pci 0000:00:1c.1: [8086:1e12] 
type 01 class 0x060400
May  3 20:12:01 topcrapn kernel: [    1.175959] pci 0000:00:1c.1: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.176054] pci 0000:00:1c.3: [8086:1e16] 
type 01 class 0x060400
May  3 20:12:01 topcrapn kernel: [    1.176144] pci 0000:00:1c.3: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.176242] pci 0000:00:1d.0: [8086:1e26] 
type 00 class 0x0c0320
May  3 20:12:01 topcrapn kernel: [    1.176258] pci 0000:00:1d.0: reg 0x10: 
[mem 0xf3719000-0xf37193ff]
May  3 20:12:01 topcrapn kernel: [    1.176343] pci 0000:00:1d.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.176429] pci 0000:00:1f.0: [8086:1e57] 
type 00 class 0x060100
May  3 20:12:01 topcrapn kernel: [    1.176612] pci 0000:00:1f.2: [8086:1e03] 
type 00 class 0x010601
May  3 20:12:01 topcrapn kernel: [    1.176625] pci 0000:00:1f.2: reg 0x10: [io 
 0x5088-0x508f]
May  3 20:12:01 topcrapn kernel: [    1.176633] pci 0000:00:1f.2: reg 0x14: [io 
 0x509c-0x509f]
May  3 20:12:01 topcrapn kernel: [    1.176640] pci 0000:00:1f.2: reg 0x18: [io 
 0x5080-0x5087]
May  3 20:12:01 topcrapn kernel: [    1.176647] pci 0000:00:1f.2: reg 0x1c: [io 
 0x5098-0x509b]
May  3 20:12:01 topcrapn kernel: [    1.176655] pci 0000:00:1f.2: reg 0x20: [io 
 0x5060-0x507f]
May  3 20:12:01 topcrapn kernel: [    1.176662] pci 0000:00:1f.2: reg 0x24: 
[mem 0xf3718000-0xf37187ff]
May  3 20:12:01 topcrapn kernel: [    1.176705] pci 0000:00:1f.2: PME# 
supported from D3hot
May  3 20:12:01 topcrapn kernel: [    1.176783] pci 0000:00:1f.3: [8086:1e22] 
type 00 class 0x0c0500
May  3 20:12:01 topcrapn kernel: [    1.176800] pci 0000:00:1f.3: reg 0x10: 
[mem 0xf3714000-0xf37140ff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.176820] pci 0000:00:1f.3: reg 0x20: [io 
 0xefa0-0xefbf]
May  3 20:12:01 topcrapn kernel: [    1.177065] pci 0000:03:00.0: [10ec:5229] 
type 00 class 0xff0000
May  3 20:12:01 topcrapn kernel: [    1.177148] pci 0000:03:00.0: reg 0x10: 
[mem 0xf2f00000-0xf2f00fff]
May  3 20:12:01 topcrapn kernel: [    1.177705] pci 0000:03:00.0: supports D1 D2
May  3 20:12:01 topcrapn kernel: [    1.177706] pci 0000:03:00.0: PME# 
supported from D1 D2 D3hot
May  3 20:12:01 topcrapn kernel: [    1.178022] pci 0000:00:1c.0: PCI bridge to 
[bus 03]
May  3 20:12:01 topcrapn kernel: [    1.178027] pci 0000:00:1c.0:   bridge 
window [io  0x4000-0x4fff]
May  3 20:12:01 topcrapn kernel: [    1.178030] pci 0000:00:1c.0:   bridge 
window [mem 0xf2f00000-0xf36fffff]
May  3 20:12:01 topcrapn kernel: [    1.178036] pci 0000:00:1c.0:   bridge 
window [mem 0xf0400000-0xf0bfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.178154] pci 0000:04:00.0: [8086:0888] 
type 00 class 0x028000
May  3 20:12:01 topcrapn kernel: [    1.178208] pci 0000:04:00.0: reg 0x10: 
[mem 0xf2600000-0xf2601fff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.178487] pci 0000:04:00.0: PME# 
supported from D0 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.178664] pci 0000:00:1c.1: PCI bridge to 
[bus 04]
May  3 20:12:01 topcrapn kernel: [    1.178668] pci 0000:00:1c.1:   bridge 
window [io  0x3000-0x3fff]
May  3 20:12:01 topcrapn kernel: [    1.178672] pci 0000:00:1c.1:   bridge 
window [mem 0xf2600000-0xf2efffff]
May  3 20:12:01 topcrapn kernel: [    1.178678] pci 0000:00:1c.1:   bridge 
window [mem 0xf0c00000-0xf13fffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.178836] pci 0000:05:00.0: [10ec:8168] 
type 00 class 0x020000
May  3 20:12:01 topcrapn kernel: [    1.178925] pci 0000:05:00.0: reg 0x10: [io 
 0x2000-0x20ff]
May  3 20:12:01 topcrapn kernel: [    1.179042] pci 0000:05:00.0: reg 0x18: 
[mem 0xf1d00000-0xf1d00fff 64bit]
May  3 20:12:01 topcrapn kernel: [    1.179112] pci 0000:05:00.0: reg 0x20: 
[mem 0xf1400000-0xf1403fff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.179570] pci 0000:05:00.0: supports D1 D2
May  3 20:12:01 topcrapn kernel: [    1.179571] pci 0000:05:00.0: PME# 
supported from D0 D1 D2 D3hot D3cold
May  3 20:12:01 topcrapn kernel: [    1.179966] pci 0000:00:1c.3: PCI bridge to 
[bus 05]
May  3 20:12:01 topcrapn kernel: [    1.179969] pci 0000:00:1c.3:   bridge 
window [io  0x2000-0x2fff]
May  3 20:12:01 topcrapn kernel: [    1.179973] pci 0000:00:1c.3:   bridge 
window [mem 0xf1d00000-0xf25fffff]
May  3 20:12:01 topcrapn kernel: [    1.179978] pci 0000:00:1c.3:   bridge 
window [mem 0xf1400000-0xf1cfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.180674] ACPI: PCI Interrupt Link [LNKA] 
(IRQs 1 3 4 5 6 10 *11 12 14 15)
May  3 20:12:01 topcrapn kernel: [    1.180724] ACPI: PCI Interrupt Link [LNKB] 
(IRQs 1 3 4 5 6 10 *11 12 14 15)
May  3 20:12:01 topcrapn kernel: [    1.180772] ACPI: PCI Interrupt Link [LNKC] 
(IRQs 1 3 4 5 6 10 11 12 14 15) *7
May  3 20:12:01 topcrapn kernel: [    1.180820] ACPI: PCI Interrupt Link [LNKD] 
(IRQs 1 3 4 5 6 *10 11 12 14 15)
May  3 20:12:01 topcrapn kernel: [    1.180867] ACPI: PCI Interrupt Link [LNKE] 
(IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
May  3 20:12:01 topcrapn kernel: [    1.180913] ACPI: PCI Interrupt Link [LNKF] 
(IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
May  3 20:12:01 topcrapn kernel: [    1.180961] ACPI: PCI Interrupt Link [LNKG] 
(IRQs 1 3 4 5 6 *10 11 12 14 15)
May  3 20:12:01 topcrapn kernel: [    1.181009] ACPI: PCI Interrupt Link [LNKH] 
(IRQs 1 3 4 5 6 10 11 12 14 15) *7
May  3 20:12:01 topcrapn kernel: [    1.181166] ACPI: EC: interrupt unblocked
May  3 20:12:01 topcrapn kernel: [    1.181167] ACPI: EC: event unblocked
May  3 20:12:01 topcrapn kernel: [    1.181172] ACPI: EC: EC_CMD/EC_SC=0x66, 
EC_DATA=0x62
May  3 20:12:01 topcrapn kernel: [    1.181173] ACPI: EC: GPE=0x17
May  3 20:12:01 topcrapn kernel: [    1.181175] ACPI: \_SB_.PCI0.LPCB.EC0_: 
Boot DSDT EC initialization complete
May  3 20:12:01 topcrapn kernel: [    1.181176] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: 
Used to handle transactions and events
May  3 20:12:01 topcrapn kernel: [    1.181232] iommu: Default domain type: 
Translated 
May  3 20:12:01 topcrapn kernel: [    1.181834] pci 0000:00:02.0: vgaarb: 
setting as boot VGA device
May  3 20:12:01 topcrapn kernel: [    1.181834] pci 0000:00:02.0: vgaarb: VGA 
device added: decodes=io+mem,owns=io+mem,locks=none
May  3 20:12:01 topcrapn kernel: [    1.181834] pci 0000:00:02.0: vgaarb: 
bridge control possible
May  3 20:12:01 topcrapn kernel: [    1.181834] vgaarb: loaded
May  3 20:12:01 topcrapn kernel: [    1.181899] EDAC MC: Ver: 3.0.0
May  3 20:12:01 topcrapn kernel: [    1.182013] NetLabel: Initializing
May  3 20:12:01 topcrapn kernel: [    1.182013] NetLabel:  domain hash size = 
128
May  3 20:12:01 topcrapn kernel: [    1.182013] NetLabel:  protocols = 
UNLABELED CIPSOv4 CALIPSO
May  3 20:12:01 topcrapn kernel: [    1.182013] NetLabel:  unlabeled traffic 
allowed by default
May  3 20:12:01 topcrapn kernel: [    1.182013] PCI: Using ACPI for IRQ routing
May  3 20:12:01 topcrapn kernel: [    1.183204] PCI: pci_cache_line_size set to 
64 bytes
May  3 20:12:01 topcrapn kernel: [    1.183338] e820: reserve RAM buffer [mem 
0x0009d000-0x0009ffff]
May  3 20:12:01 topcrapn kernel: [    1.183340] e820: reserve RAM buffer [mem 
0x40004000-0x43ffffff]
May  3 20:12:01 topcrapn kernel: [    1.183341] e820: reserve RAM buffer [mem 
0xc6a14000-0xc7ffffff]
May  3 20:12:01 topcrapn kernel: [    1.183342] e820: reserve RAM buffer [mem 
0x41e600000-0x41fffffff]
May  3 20:12:01 topcrapn kernel: [    1.184086] hpet0: at MMIO 0xfed00000, IRQs 
2, 8, 0, 0, 0, 0, 0, 0
May  3 20:12:01 topcrapn kernel: [    1.184093] hpet0: 8 comparators, 64-bit 
14.318180 MHz counter
May  3 20:12:01 topcrapn kernel: [    1.189821] clocksource: Switched to 
clocksource tsc-early
May  3 20:12:01 topcrapn kernel: [    1.199593] VFS: Disk quotas dquot_6.6.0
May  3 20:12:01 topcrapn kernel: [    1.199610] VFS: Dquot-cache hash table 
entries: 512 (order 0, 4096 bytes)
May  3 20:12:01 topcrapn kernel: [    1.199721] AppArmor: AppArmor Filesystem 
Enabled
May  3 20:12:01 topcrapn kernel: [    1.199739] pnp: PnP ACPI init
May  3 20:12:01 topcrapn kernel: [    1.199880] system 00:00: [io  
0x0680-0x069f] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199882] system 00:00: [io  
0x1000-0x100f] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199883] system 00:00: [io  0xffff] has 
been reserved
May  3 20:12:01 topcrapn kernel: [    1.199885] system 00:00: [io  0xffff] has 
been reserved
May  3 20:12:01 topcrapn kernel: [    1.199886] system 00:00: [io  
0x0400-0x0453] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199887] system 00:00: [io  
0x0458-0x047f] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199888] system 00:00: [io  
0x0500-0x057f] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199890] system 00:00: [io  
0x164e-0x164f] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199891] system 00:00: [io  
0x06fc-0x06ff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199892] system 00:00: [io  
0x0700-0x0703] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199899] system 00:00: Plug and Play 
ACPI device, IDs PNP0c02 (active)
May  3 20:12:01 topcrapn kernel: [    1.199919] pnp 00:01: Plug and Play ACPI 
device, IDs PNP0b00 (active)
May  3 20:12:01 topcrapn kernel: [    1.199964] system 00:02: [io  
0x0454-0x0457] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.199967] system 00:02: Plug and Play 
ACPI device, IDs INT3f0d PNP0c02 (active)
May  3 20:12:01 topcrapn kernel: [    1.200231] pnp 00:03: Plug and Play ACPI 
device, IDs PTL0001 PNP0303 (active)
May  3 20:12:01 topcrapn kernel: [    1.200271] pnp 00:04: Plug and Play ACPI 
device, IDs LEN2001 PNP0f13 (active)
May  3 20:12:01 topcrapn kernel: [    1.200369] system 00:05: [mem 
0xfed1c000-0xfed1ffff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200371] system 00:05: [mem 
0xfed10000-0xfed17fff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200372] system 00:05: [mem 
0xfed18000-0xfed18fff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200374] system 00:05: [mem 
0xfed19000-0xfed19fff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200375] system 00:05: [mem 
0xf8000000-0xfbffffff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200376] system 00:05: [mem 
0xfed20000-0xfed3ffff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200378] system 00:05: [mem 
0xfed90000-0xfed93fff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200379] system 00:05: [mem 
0xfed45000-0xfed8ffff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200380] system 00:05: [mem 
0xff000000-0xffffffff] could not be reserved
May  3 20:12:01 topcrapn kernel: [    1.200382] system 00:05: [mem 
0xfee00000-0xfeefffff] could not be reserved
May  3 20:12:01 topcrapn kernel: [    1.200383] system 00:05: [mem 
0xfffff000-0xffffffff] has been reserved
May  3 20:12:01 topcrapn kernel: [    1.200387] system 00:05: Plug and Play 
ACPI device, IDs PNP0c02 (active)
May  3 20:12:01 topcrapn kernel: [    1.200542] pnp: PnP ACPI: found 6 devices
May  3 20:12:01 topcrapn kernel: [    1.206333] clocksource: acpi_pm: mask: 
0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May  3 20:12:01 topcrapn kernel: [    1.206392] NET: Registered protocol family 
2
May  3 20:12:01 topcrapn kernel: [    1.206543] tcp_listen_portaddr_hash hash 
table entries: 8192 (order: 5, 131072 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    1.206641] TCP established hash table 
entries: 131072 (order: 8, 1048576 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    1.206864] TCP bind hash table entries: 
65536 (order: 8, 1048576 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    1.206945] TCP: Hash tables configured 
(established 131072 bind 65536)
May  3 20:12:01 topcrapn kernel: [    1.206997] UDP hash table entries: 8192 
(order: 6, 262144 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    1.207042] UDP-Lite hash table entries: 
8192 (order: 6, 262144 bytes, linear)
May  3 20:12:01 topcrapn kernel: [    1.207153] NET: Registered protocol family 
1
May  3 20:12:01 topcrapn kernel: [    1.207158] NET: Registered protocol family 
44
May  3 20:12:01 topcrapn kernel: [    1.207169] pci 0000:00:1c.0: PCI bridge to 
[bus 03]
May  3 20:12:01 topcrapn kernel: [    1.207174] pci 0000:00:1c.0:   bridge 
window [io  0x4000-0x4fff]
May  3 20:12:01 topcrapn kernel: [    1.207179] pci 0000:00:1c.0:   bridge 
window [mem 0xf2f00000-0xf36fffff]
May  3 20:12:01 topcrapn kernel: [    1.207183] pci 0000:00:1c.0:   bridge 
window [mem 0xf0400000-0xf0bfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207188] pci 0000:00:1c.1: PCI bridge to 
[bus 04]
May  3 20:12:01 topcrapn kernel: [    1.207191] pci 0000:00:1c.1:   bridge 
window [io  0x3000-0x3fff]
May  3 20:12:01 topcrapn kernel: [    1.207196] pci 0000:00:1c.1:   bridge 
window [mem 0xf2600000-0xf2efffff]
May  3 20:12:01 topcrapn kernel: [    1.207200] pci 0000:00:1c.1:   bridge 
window [mem 0xf0c00000-0xf13fffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207206] pci 0000:00:1c.3: PCI bridge to 
[bus 05]
May  3 20:12:01 topcrapn kernel: [    1.207208] pci 0000:00:1c.3:   bridge 
window [io  0x2000-0x2fff]
May  3 20:12:01 topcrapn kernel: [    1.207213] pci 0000:00:1c.3:   bridge 
window [mem 0xf1d00000-0xf25fffff]
May  3 20:12:01 topcrapn kernel: [    1.207217] pci 0000:00:1c.3:   bridge 
window [mem 0xf1400000-0xf1cfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207224] pci_bus 0000:00: resource 4 [io 
 0x0000-0x0cf7 window]
May  3 20:12:01 topcrapn kernel: [    1.207225] pci_bus 0000:00: resource 5 [io 
 0x0d00-0xffff window]
May  3 20:12:01 topcrapn kernel: [    1.207226] pci_bus 0000:00: resource 6 
[mem 0x000a0000-0x000bffff window]
May  3 20:12:01 topcrapn kernel: [    1.207227] pci_bus 0000:00: resource 7 
[mem 0xdfa00000-0xfeafffff window]
May  3 20:12:01 topcrapn kernel: [    1.207229] pci_bus 0000:03: resource 0 [io 
 0x4000-0x4fff]
May  3 20:12:01 topcrapn kernel: [    1.207230] pci_bus 0000:03: resource 1 
[mem 0xf2f00000-0xf36fffff]
May  3 20:12:01 topcrapn kernel: [    1.207231] pci_bus 0000:03: resource 2 
[mem 0xf0400000-0xf0bfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207232] pci_bus 0000:04: resource 0 [io 
 0x3000-0x3fff]
May  3 20:12:01 topcrapn kernel: [    1.207233] pci_bus 0000:04: resource 1 
[mem 0xf2600000-0xf2efffff]
May  3 20:12:01 topcrapn kernel: [    1.207234] pci_bus 0000:04: resource 2 
[mem 0xf0c00000-0xf13fffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207235] pci_bus 0000:05: resource 0 [io 
 0x2000-0x2fff]
May  3 20:12:01 topcrapn kernel: [    1.207236] pci_bus 0000:05: resource 1 
[mem 0xf1d00000-0xf25fffff]
May  3 20:12:01 topcrapn kernel: [    1.207237] pci_bus 0000:05: resource 2 
[mem 0xf1400000-0xf1cfffff 64bit pref]
May  3 20:12:01 topcrapn kernel: [    1.207319] pci 0000:00:02.0: Video device 
with shadowed ROM at [mem 0x000c0000-0x000dffff]
May  3 20:12:01 topcrapn kernel: [    1.207865] PCI: CLS 64 bytes, default 64
May  3 20:12:01 topcrapn kernel: [    1.207910] Trying to unpack rootfs image 
as initramfs...
May  3 20:12:01 topcrapn kernel: [    1.977244] Freeing initrd memory: 55564K
May  3 20:12:01 topcrapn kernel: [    1.977255] PCI-DMA: Using software bounce 
buffering for IO (SWIOTLB)
May  3 20:12:01 topcrapn kernel: [    1.977257] software IO TLB: mapped [mem 
0x00000000c2a14000-0x00000000c6a14000] (64MB)
May  3 20:12:01 topcrapn kernel: [    1.977691] Initialise system trusted 
keyrings
May  3 20:12:01 topcrapn kernel: [    1.977700] Key type blacklist registered
May  3 20:12:01 topcrapn kernel: [    1.977752] workingset: timestamp_bits=36 
max_order=22 bucket_order=0
May  3 20:12:01 topcrapn kernel: [    1.978813] zbud: loaded
May  3 20:12:01 topcrapn kernel: [    1.978966] integrity: Platform Keyring 
initialized
May  3 20:12:01 topcrapn kernel: [    1.978968] Key type asymmetric registered
May  3 20:12:01 topcrapn kernel: [    1.978969] Asymmetric key parser 'x509' 
registered
May  3 20:12:01 topcrapn kernel: [    1.978978] Block layer SCSI generic (bsg) 
driver version 0.4 loaded (major 251)
May  3 20:12:01 topcrapn kernel: [    1.979016] io scheduler mq-deadline 
registered
May  3 20:12:01 topcrapn kernel: [    1.979632] shpchp: Standard Hot Plug PCI 
Controller Driver version: 0.4
May  3 20:12:01 topcrapn kernel: [    1.979644] intel_idle: MWAIT substates: 
0x21120
May  3 20:12:01 topcrapn kernel: [    1.979645] intel_idle: v0.5.1 model 0x3A
May  3 20:12:01 topcrapn kernel: [    1.979821] intel_idle: Local APIC timer is 
reliable in all C-states
May  3 20:12:01 topcrapn kernel: [    1.980383] thermal LNXTHERM:00: registered 
as thermal_zone0
May  3 20:12:01 topcrapn kernel: [    1.980384] ACPI: Thermal Zone [TZ01] (30 C)
May  3 20:12:01 topcrapn kernel: [    1.980515] Serial: 8250/16550 driver, 4 
ports, IRQ sharing enabled
May  3 20:12:01 topcrapn kernel: [    1.981077] Linux agpgart interface v0.103
May  3 20:12:01 topcrapn kernel: [    1.981107] AMD-Vi: AMD IOMMUv2 driver by 
Joerg Roedel <jroe...@suse.de>
May  3 20:12:01 topcrapn kernel: [    1.981107] AMD-Vi: AMD IOMMUv2 
functionality not available on this system
May  3 20:12:01 topcrapn kernel: [    1.981352] i8042: PNP: PS/2 Controller 
[PNP0303:PS2K,PNP0f13:MOU] at 0x60,0x64 irq 1,12
May  3 20:12:01 topcrapn kernel: [    1.992142] serio: i8042 KBD port at 
0x60,0x64 irq 1
May  3 20:12:01 topcrapn kernel: [    1.992146] serio: i8042 AUX port at 
0x60,0x64 irq 12
May  3 20:12:01 topcrapn kernel: [    1.992274] mousedev: PS/2 mouse device 
common for all mice
May  3 20:12:01 topcrapn kernel: [    1.992519] rtc_cmos 00:01: RTC can wake 
from S4
May  3 20:12:01 topcrapn kernel: [    1.992730] rtc_cmos 00:01: registered as 
rtc0
May  3 20:12:01 topcrapn kernel: [    1.992783] rtc_cmos 00:01: setting system 
clock to 2021-05-03T20:11:58 UTC (1620072718)
May  3 20:12:01 topcrapn kernel: [    1.992799] rtc_cmos 00:01: alarms up to 
one month, y3k, 242 bytes nvram, hpet irqs
May  3 20:12:01 topcrapn kernel: [    1.992808] intel_pstate: Intel P-state 
driver initializing
May  3 20:12:01 topcrapn kernel: [    1.993046] ledtrig-cpu: registered to 
indicate activity on CPUs
May  3 20:12:01 topcrapn kernel: [    1.993800] NET: Registered protocol family 
10
May  3 20:12:01 topcrapn kernel: [    2.000779] Segment Routing with IPv6
May  3 20:12:01 topcrapn kernel: [    2.000827] mip6: Mobile IPv6
May  3 20:12:01 topcrapn kernel: [    2.000832] NET: Registered protocol family 
17
May  3 20:12:01 topcrapn kernel: [    2.000981] mpls_gso: MPLS GSO support
May  3 20:12:01 topcrapn kernel: [    2.001232] microcode: sig=0x306a9, 
pf=0x10, revision=0x21
May  3 20:12:01 topcrapn kernel: [    2.001245] microcode: Microcode Update 
Driver: v2.2.
May  3 20:12:01 topcrapn kernel: [    2.001249] IPI shorthand broadcast: enabled
May  3 20:12:01 topcrapn kernel: [    2.001259] sched_clock: Marking stable 
(1999373524, 1780340)->(2005745277, -4591413)
May  3 20:12:01 topcrapn kernel: [    2.001334] registered taskstats version 1
May  3 20:12:01 topcrapn kernel: [    2.001336] Loading compiled-in X.509 
certificates
May  3 20:12:01 topcrapn kernel: [    2.003941] input: AT Translated Set 2 
keyboard as /devices/platform/i8042/serio0/input/input0
May  3 20:12:01 topcrapn kernel: [    2.035273] Loaded X.509 cert 'Debian 
Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
May  3 20:12:01 topcrapn kernel: [    2.035287] Loaded X.509 cert 'Debian 
Secure Boot Signer 2021 - linux: 4b6ef5abca669825178e052c84667ccbc0531f8c'
May  3 20:12:01 topcrapn kernel: [    2.035307] zswap: loaded using pool 
lzo/zbud
May  3 20:12:01 topcrapn kernel: [    2.035497] Key type ._fscrypt registered
May  3 20:12:01 topcrapn kernel: [    2.035498] Key type .fscrypt registered
May  3 20:12:01 topcrapn kernel: [    2.035498] Key type fscrypt-provisioning 
registered
May  3 20:12:01 topcrapn kernel: [    2.035526] AppArmor: AppArmor sha1 policy 
hashing enabled
May  3 20:12:01 topcrapn kernel: [    2.036755] Freeing unused kernel image 
(initmem) memory: 2400K
May  3 20:12:01 topcrapn kernel: [    2.061964] Write protecting the kernel 
read-only data: 22528k
May  3 20:12:01 topcrapn kernel: [    2.062478] Freeing unused kernel image 
(text/rodata gap) memory: 2040K
May  3 20:12:01 topcrapn kernel: [    2.062625] Freeing unused kernel image 
(rodata/data gap) memory: 536K
May  3 20:12:01 topcrapn kernel: [    2.115632] x86/mm: Checked W+X mappings: 
passed, no W+X pages found.
May  3 20:12:01 topcrapn kernel: [    2.115634] x86/mm: Checking user space 
page tables
May  3 20:12:01 topcrapn kernel: [    2.161238] x86/mm: Checked W+X mappings: 
passed, no W+X pages found.
May  3 20:12:01 topcrapn kernel: [    2.161244] Run /init as init process
May  3 20:12:01 topcrapn kernel: [    2.161245]   with arguments:
May  3 20:12:01 topcrapn kernel: [    2.161246]     /init
May  3 20:12:01 topcrapn kernel: [    2.161246]     splash
May  3 20:12:01 topcrapn kernel: [    2.161247]   with environment:
May  3 20:12:01 topcrapn kernel: [    2.161247]     HOME=/
May  3 20:12:01 topcrapn kernel: [    2.161248]     TERM=linux
May  3 20:12:01 topcrapn kernel: [    2.161248]     
BOOT_IMAGE=/boot/vmlinuz-5.10.0-0.bpo.5-amd64
May  3 20:12:01 topcrapn kernel: [    2.221649] input: Power Button as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
May  3 20:12:01 topcrapn kernel: [    2.221685] ACPI: Power Button [PWRB]
May  3 20:12:01 topcrapn kernel: [    2.221750] input: Lid Switch as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input3
May  3 20:12:01 topcrapn kernel: [    2.233990] ACPI: Lid Switch [LID0]
May  3 20:12:01 topcrapn kernel: [    2.234060] input: Power Button as 
/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
May  3 20:12:01 topcrapn kernel: [    2.236076] ACPI Warning: SystemIO range 
0x0000000000000428-0x000000000000042F conflicts with OpRegion 
0x0000000000000400-0x000000000000047F (\PMIO) (20200925/utaddress-213)
May  3 20:12:01 topcrapn kernel: [    2.236083] ACPI: If an ACPI driver is 
available for this device, you should use it instead of the native driver
May  3 20:12:01 topcrapn kernel: [    2.236086] ACPI Warning: SystemIO range 
0x0000000000000540-0x000000000000054F conflicts with OpRegion 
0x0000000000000500-0x0000000000000563 (\GPIO) (20200925/utaddress-213)
May  3 20:12:01 topcrapn kernel: [    2.236091] ACPI: If an ACPI driver is 
available for this device, you should use it instead of the native driver
May  3 20:12:01 topcrapn kernel: [    2.236092] ACPI Warning: SystemIO range 
0x0000000000000530-0x000000000000053F conflicts with OpRegion 
0x0000000000000500-0x0000000000000563 (\GPIO) (20200925/utaddress-213)
May  3 20:12:01 topcrapn kernel: [    2.236097] ACPI: If an ACPI driver is 
available for this device, you should use it instead of the native driver
May  3 20:12:01 topcrapn kernel: [    2.236098] ACPI Warning: SystemIO range 
0x0000000000000500-0x000000000000052F conflicts with OpRegion 
0x0000000000000500-0x0000000000000563 (\GPIO) (20200925/utaddress-213)
May  3 20:12:01 topcrapn kernel: [    2.236103] ACPI: If an ACPI driver is 
available for this device, you should use it instead of the native driver
May  3 20:12:01 topcrapn kernel: [    2.236104] lpc_ich: Resource conflict(s) 
found affecting gpio_ich
May  3 20:12:01 topcrapn kernel: [    2.241990] ACPI: Power Button [PWRF]
May  3 20:12:01 topcrapn kernel: [    2.264654] r8169 0000:05:00.0: can't 
disable ASPM; OS doesn't have ASPM control
May  3 20:12:01 topcrapn kernel: [    2.271446] i801_smbus 0000:00:1f.3: SMBus 
using PCI interrupt
May  3 20:12:01 topcrapn kernel: [    2.271663] i2c i2c-0: 2/2 memory slots 
populated (from DMI)
May  3 20:12:01 topcrapn kernel: [    2.276644] ACPI: bus type USB registered
May  3 20:12:01 topcrapn kernel: [    2.276678] usbcore: registered new 
interface driver usbfs
May  3 20:12:01 topcrapn kernel: [    2.276688] usbcore: registered new 
interface driver hub
May  3 20:12:01 topcrapn kernel: [    2.276703] usbcore: registered new device 
driver usb
May  3 20:12:01 topcrapn kernel: [    2.278248] i2c i2c-0: Successfully 
instantiated SPD at 0x50
May  3 20:12:01 topcrapn kernel: [    2.278668] SCSI subsystem initialized
May  3 20:12:01 topcrapn kernel: [    2.287412] ehci_hcd: USB 2.0 'Enhanced' 
Host Controller (EHCI) Driver
May  3 20:12:01 topcrapn kernel: [    2.288338] ehci-pci: EHCI PCI platform 
driver
May  3 20:12:01 topcrapn kernel: [    2.288511] ehci-pci 0000:00:1a.0: EHCI 
Host Controller
May  3 20:12:01 topcrapn kernel: [    2.288519] ehci-pci 0000:00:1a.0: new USB 
bus registered, assigned bus number 1
May  3 20:12:01 topcrapn kernel: [    2.288532] ehci-pci 0000:00:1a.0: debug 
port 2
May  3 20:12:01 topcrapn kernel: [    2.292439] ehci-pci 0000:00:1a.0: cache 
line size of 64 is not supported
May  3 20:12:01 topcrapn kernel: [    2.296190] libphy: r8169: probed
May  3 20:12:01 topcrapn kernel: [    2.296707] r8169 0000:05:00.0 eth0: 
RTL8168evl/8111evl, 28:d2:44:40:78:fd, XID 2c9, IRQ 28
May  3 20:12:01 topcrapn kernel: [    2.296710] r8169 0000:05:00.0 eth0: jumbo 
features [frames: 9194 bytes, tx checksumming: ko]
May  3 20:12:01 topcrapn kernel: [    2.309739] ehci-pci 0000:00:1a.0: irq 16, 
io mem 0xf371a000
May  3 20:12:01 topcrapn kernel: [    2.317133] libata version 3.00 loaded.
May  3 20:12:01 topcrapn kernel: [    2.321024] ahci 0000:00:1f.2: version 3.0
May  3 20:12:01 topcrapn kernel: [    2.325834] ehci-pci 0000:00:1a.0: USB 2.0 
started, EHCI 1.00
May  3 20:12:01 topcrapn kernel: [    2.325901] usb usb1: New USB device found, 
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
May  3 20:12:01 topcrapn kernel: [    2.325903] usb usb1: New USB device 
strings: Mfr=3, Product=2, SerialNumber=1
May  3 20:12:01 topcrapn kernel: [    2.325905] usb usb1: Product: EHCI Host 
Controller
May  3 20:12:01 topcrapn kernel: [    2.325906] usb usb1: Manufacturer: Linux 
5.10.0-0.bpo.5-amd64 ehci_hcd
May  3 20:12:01 topcrapn kernel: [    2.325908] usb usb1: SerialNumber: 
0000:00:1a.0
May  3 20:12:01 topcrapn kernel: [    2.326099] hub 1-0:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.326107] hub 1-0:1.0: 3 ports detected
May  3 20:12:01 topcrapn kernel: [    2.326322] xhci_hcd 0000:00:14.0: xHCI 
Host Controller
May  3 20:12:01 topcrapn kernel: [    2.326335] xhci_hcd 0000:00:14.0: new USB 
bus registered, assigned bus number 2
May  3 20:12:01 topcrapn kernel: [    2.327395] xhci_hcd 0000:00:14.0: hcc 
params 0x20007181 hci version 0x100 quirks 0x000000000000b930
May  3 20:12:01 topcrapn kernel: [    2.327400] xhci_hcd 0000:00:14.0: cache 
line size of 64 is not supported
May  3 20:12:01 topcrapn kernel: [    2.327537] usb usb2: New USB device found, 
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
May  3 20:12:01 topcrapn kernel: [    2.327539] usb usb2: New USB device 
strings: Mfr=3, Product=2, SerialNumber=1
May  3 20:12:01 topcrapn kernel: [    2.327540] usb usb2: Product: xHCI Host 
Controller
May  3 20:12:01 topcrapn kernel: [    2.327540] usb usb2: Manufacturer: Linux 
5.10.0-0.bpo.5-amd64 xhci-hcd
May  3 20:12:01 topcrapn kernel: [    2.327541] usb usb2: SerialNumber: 
0000:00:14.0
May  3 20:12:01 topcrapn kernel: [    2.327655] hub 2-0:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.327669] hub 2-0:1.0: 4 ports detected
May  3 20:12:01 topcrapn kernel: [    2.328101] xhci_hcd 0000:00:14.0: xHCI 
Host Controller
May  3 20:12:01 topcrapn kernel: [    2.328105] xhci_hcd 0000:00:14.0: new USB 
bus registered, assigned bus number 3
May  3 20:12:01 topcrapn kernel: [    2.328109] xhci_hcd 0000:00:14.0: Host 
supports USB 3.0 SuperSpeed
May  3 20:12:01 topcrapn kernel: [    2.328148] ehci-pci 0000:00:1d.0: EHCI 
Host Controller
May  3 20:12:01 topcrapn kernel: [    2.328173] usb usb3: New USB device found, 
idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
May  3 20:12:01 topcrapn kernel: [    2.328175] usb usb3: New USB device 
strings: Mfr=3, Product=2, SerialNumber=1
May  3 20:12:01 topcrapn kernel: [    2.328177] usb usb3: Product: xHCI Host 
Controller
May  3 20:12:01 topcrapn kernel: [    2.328178] usb usb3: Manufacturer: Linux 
5.10.0-0.bpo.5-amd64 xhci-hcd
May  3 20:12:01 topcrapn kernel: [    2.328180] usb usb3: SerialNumber: 
0000:00:14.0
May  3 20:12:01 topcrapn kernel: [    2.328295] hub 3-0:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.328308] hub 3-0:1.0: 4 ports detected
May  3 20:12:01 topcrapn kernel: [    2.328994] ehci-pci 0000:00:1d.0: new USB 
bus registered, assigned bus number 4
May  3 20:12:01 topcrapn kernel: [    2.329007] ehci-pci 0000:00:1d.0: debug 
port 2
May  3 20:12:01 topcrapn kernel: [    2.331272] ahci 0000:00:1f.2: AHCI 
0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
May  3 20:12:01 topcrapn kernel: [    2.331275] ahci 0000:00:1f.2: flags: 64bit 
ncq pm led clo pio slum part ems apst 
May  3 20:12:01 topcrapn kernel: [    2.332903] ehci-pci 0000:00:1d.0: cache 
line size of 64 is not supported
May  3 20:12:01 topcrapn kernel: [    2.332918] ehci-pci 0000:00:1d.0: irq 23, 
io mem 0xf3719000
May  3 20:12:01 topcrapn kernel: [    2.343704] scsi host0: ahci
May  3 20:12:01 topcrapn kernel: [    2.343850] scsi host1: ahci
May  3 20:12:01 topcrapn kernel: [    2.343948] scsi host2: ahci
May  3 20:12:01 topcrapn kernel: [    2.344042] scsi host3: ahci
May  3 20:12:01 topcrapn kernel: [    2.344131] scsi host4: ahci
May  3 20:12:01 topcrapn kernel: [    2.344221] scsi host5: ahci
May  3 20:12:01 topcrapn kernel: [    2.344257] ata1: SATA max UDMA/133 abar 
m2048@0xf3718000 port 0xf3718100 irq 29
May  3 20:12:01 topcrapn kernel: [    2.344258] ata2: DUMMY
May  3 20:12:01 topcrapn kernel: [    2.344260] ata3: SATA max UDMA/133 abar 
m2048@0xf3718000 port 0xf3718200 irq 29
May  3 20:12:01 topcrapn kernel: [    2.344261] ata4: DUMMY
May  3 20:12:01 topcrapn kernel: [    2.344262] ata5: DUMMY
May  3 20:12:01 topcrapn kernel: [    2.344262] ata6: DUMMY
May  3 20:12:01 topcrapn kernel: [    2.345835] ehci-pci 0000:00:1d.0: USB 2.0 
started, EHCI 1.00
May  3 20:12:01 topcrapn kernel: [    2.345897] usb usb4: New USB device found, 
idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
May  3 20:12:01 topcrapn kernel: [    2.345899] usb usb4: New USB device 
strings: Mfr=3, Product=2, SerialNumber=1
May  3 20:12:01 topcrapn kernel: [    2.345901] usb usb4: Product: EHCI Host 
Controller
May  3 20:12:01 topcrapn kernel: [    2.345902] usb usb4: Manufacturer: Linux 
5.10.0-0.bpo.5-amd64 ehci_hcd
May  3 20:12:01 topcrapn kernel: [    2.345904] usb usb4: SerialNumber: 
0000:00:1d.0
May  3 20:12:01 topcrapn kernel: [    2.346019] hub 4-0:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.346026] hub 4-0:1.0: 3 ports detected
May  3 20:12:01 topcrapn kernel: [    2.418150] i915 0000:00:02.0: vgaarb: 
deactivate vga console
May  3 20:12:01 topcrapn kernel: [    2.419048] Console: switching to colour 
dummy device 80x25
May  3 20:12:01 topcrapn kernel: [    2.419945] i915 0000:00:02.0: vgaarb: 
changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
May  3 20:12:01 topcrapn kernel: [    2.433499] i915 0000:00:02.0: [drm] LVDS 
was detected, not registering eDP
May  3 20:12:01 topcrapn kernel: [    2.453364] [drm] Initialized i915 1.6.0 
20200917 for 0000:00:02.0 on minor 0
May  3 20:12:01 topcrapn kernel: [    2.453899] ACPI: Video Device [VID] 
(multi-head: yes  rom: no  post: no)
May  3 20:12:01 topcrapn kernel: [    2.454166] input: Video Bus as 
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
May  3 20:12:01 topcrapn kernel: [    2.468936] fbcon: i915drmfb (fb0) is 
primary device
May  3 20:12:01 topcrapn kernel: [    2.553024] battery: ACPI: Battery Slot 
[BAT0] (battery present)
May  3 20:12:01 topcrapn kernel: [    2.657111] ata1: SATA link up 6.0 Gbps 
(SStatus 133 SControl 300)
May  3 20:12:01 topcrapn kernel: [    2.657576] ata1.00: ACPI cmd 
ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
May  3 20:12:01 topcrapn kernel: [    2.657581] ata1.00: ACPI cmd 
f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May  3 20:12:01 topcrapn kernel: [    2.657584] ata1.00: ACPI cmd 
ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May  3 20:12:01 topcrapn kernel: [    2.657879] ata1.00: supports DRM functions 
and may not be fully accessible
May  3 20:12:01 topcrapn kernel: [    2.658834] ata1.00: ATA-11: Samsung SSD 
860 QVO 1TB, RVQ01B6Q, max UDMA/133
May  3 20:12:01 topcrapn kernel: [    2.658837] ata1.00: 1953525168 sectors, 
multi 1: LBA48 NCQ (depth 32), AA
May  3 20:12:01 topcrapn kernel: [    2.661176] ata1.00: ACPI cmd 
ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
May  3 20:12:01 topcrapn kernel: [    2.661182] ata1.00: ACPI cmd 
f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May  3 20:12:01 topcrapn kernel: [    2.661185] ata1.00: ACPI cmd 
ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May  3 20:12:01 topcrapn kernel: [    2.661214] ata3: SATA link up 1.5 Gbps 
(SStatus 113 SControl 300)
May  3 20:12:01 topcrapn kernel: [    2.661741] ata1.00: supports DRM functions 
and may not be fully accessible
May  3 20:12:01 topcrapn kernel: [    2.661872] usb 1-1: new high-speed USB 
device number 2 using ehci-pci
May  3 20:12:01 topcrapn kernel: [    2.663408] ata3.00: ACPI cmd 
ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
May  3 20:12:01 topcrapn kernel: [    2.663413] ata3.00: ACPI cmd 
f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May  3 20:12:01 topcrapn kernel: [    2.663416] ata3.00: ACPI cmd 
ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May  3 20:12:01 topcrapn kernel: [    2.663750] ata1.00: configured for UDMA/133
May  3 20:12:01 topcrapn kernel: [    2.664989] ata3.00: ATAPI: HL-DT-ST DVDRAM 
GU70N, LE22, max UDMA/133
May  3 20:12:01 topcrapn kernel: [    2.667505] ata3.00: ACPI cmd 
ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
May  3 20:12:01 topcrapn kernel: [    2.667510] ata3.00: ACPI cmd 
f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
May  3 20:12:01 topcrapn kernel: [    2.667513] ata3.00: ACPI cmd 
ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
May  3 20:12:01 topcrapn kernel: [    2.669076] ata3.00: configured for UDMA/133
May  3 20:12:01 topcrapn kernel: [    2.674103] scsi 0:0:0:0: Direct-Access     
ATA      Samsung SSD 860  1B6Q PQ: 0 ANSI: 5
May  3 20:12:01 topcrapn kernel: [    2.680561] scsi 2:0:0:0: CD-ROM            
HL-DT-ST DVDRAM GU70N     LE22 PQ: 0 ANSI: 5
May  3 20:12:01 topcrapn kernel: [    2.681883] usb 4-1: new high-speed USB 
device number 2 using ehci-pci
May  3 20:12:01 topcrapn kernel: [    2.818275] usb 1-1: New USB device found, 
idVendor=8087, idProduct=0024, bcdDevice= 0.00
May  3 20:12:01 topcrapn kernel: [    2.818279] usb 1-1: New USB device 
strings: Mfr=0, Product=0, SerialNumber=0
May  3 20:12:01 topcrapn kernel: [    2.819042] hub 1-1:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.819208] hub 1-1:1.0: 6 ports detected
May  3 20:12:01 topcrapn kernel: [    2.838531] usb 4-1: New USB device found, 
idVendor=8087, idProduct=0024, bcdDevice= 0.00
May  3 20:12:01 topcrapn kernel: [    2.838535] usb 4-1: New USB device 
strings: Mfr=0, Product=0, SerialNumber=0
May  3 20:12:01 topcrapn kernel: [    2.839111] hub 4-1:1.0: USB hub found
May  3 20:12:01 topcrapn kernel: [    2.839206] hub 4-1:1.0: 8 ports detected
May  3 20:12:01 topcrapn kernel: [    2.981732] psmouse serio1: synaptics: 
queried max coordinates: x [..5044], y [..3398]
May  3 20:12:01 topcrapn kernel: [    2.993891] tsc: Refined TSC clocksource 
calibration: 2594.106 MHz
May  3 20:12:01 topcrapn kernel: [    2.993908] clocksource: tsc: mask: 
0xffffffffffffffff max_cycles: 0x25647bfab01, max_idle_ns: 440795211785 ns
May  3 20:12:01 topcrapn kernel: [    2.993959] clocksource: Switched to 
clocksource tsc
May  3 20:12:01 topcrapn kernel: [    3.029657] psmouse serio1: synaptics: 
queried min coordinates: x [1024..], y [1024..]
May  3 20:12:01 topcrapn kernel: [    3.029667] psmouse serio1: synaptics: 
Trying to set up SMBus access
May  3 20:12:01 topcrapn kernel: [    3.105917] usb 1-1.3: new full-speed USB 
device number 3 using ehci-pci
May  3 20:12:01 topcrapn kernel: [    3.219231] usb 1-1.3: New USB device 
found, idVendor=8087, idProduct=07da, bcdDevice=78.69
May  3 20:12:01 topcrapn kernel: [    3.219235] usb 1-1.3: New USB device 
strings: Mfr=0, Product=0, SerialNumber=0
May  3 20:12:01 topcrapn kernel: [    3.260712] Console: switching to colour 
frame buffer device 170x48
May  3 20:12:01 topcrapn kernel: [    3.282276] i915 0000:00:02.0: [drm] fb0: 
i915drmfb frame buffer device
May  3 20:12:01 topcrapn kernel: [    3.302302] usb 1-1.6: new high-speed USB 
device number 4 using ehci-pci
May  3 20:12:01 topcrapn kernel: [    3.314850] ata1.00: Enabling 
discard_zeroes_data
May  3 20:12:01 topcrapn kernel: [    3.315033] sd 0:0:0:0: [sda] 1953525168 
512-byte logical blocks: (1.00 TB/932 GiB)
May  3 20:12:01 topcrapn kernel: [    3.315045] sd 0:0:0:0: [sda] Write Protect 
is off
May  3 20:12:01 topcrapn kernel: [    3.315047] sd 0:0:0:0: [sda] Mode Sense: 
00 3a 00 00
May  3 20:12:01 topcrapn kernel: [    3.315061] sd 0:0:0:0: [sda] Write cache: 
enabled, read cache: enabled, doesn't support DPO or FUA
May  3 20:12:01 topcrapn kernel: [    3.344940]  sda: sda1 sda2 sda3
May  3 20:12:01 topcrapn kernel: [    3.345283] ata1.00: Enabling 
discard_zeroes_data
May  3 20:12:01 topcrapn kernel: [    3.346329] sd 0:0:0:0: [sda] supports TCG 
Opal
May  3 20:12:01 topcrapn kernel: [    3.346334] sd 0:0:0:0: [sda] Attached SCSI 
disk
May  3 20:12:01 topcrapn kernel: [    3.364359] sr 2:0:0:0: [sr0] scsi3-mmc 
drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
May  3 20:12:01 topcrapn kernel: [    3.364366] cdrom: Uniform CD-ROM driver 
Revision: 3.20
May  3 20:12:01 topcrapn kernel: [    3.414972] sr 2:0:0:0: Attached scsi 
CD-ROM sr0
May  3 20:12:01 topcrapn kernel: [    3.425577] usb 1-1.6: New USB device 
found, idVendor=5986, idProduct=0397, bcdDevice=14.57
May  3 20:12:01 topcrapn kernel: [    3.425580] usb 1-1.6: New USB device 
strings: Mfr=1, Product=2, SerialNumber=0
May  3 20:12:01 topcrapn kernel: [    3.425582] usb 1-1.6: Product: Integrated 
Camera
May  3 20:12:01 topcrapn kernel: [    3.425584] usb 1-1.6: Manufacturer: 
Vimicro corp.
May  3 20:12:01 topcrapn kernel: [    3.864279] process '/usr/bin/fstype' 
started with executable stack
May  3 20:12:01 topcrapn kernel: [    3.869029] PM: Image not found (code -22)
May  3 20:12:01 topcrapn kernel: [    3.976795] EXT4-fs (sda2): mounted 
filesystem with ordered data mode. Opts: (null)
May  3 20:12:01 topcrapn kernel: [    4.047504] Not activating Mandatory Access 
Control as /sbin/tomoyo-init does not exist.
May  3 20:12:01 topcrapn kernel: [    4.465358] EXT4-fs (sda2): re-mounted. 
Opts: errors=remount-ro
May  3 20:12:01 topcrapn kernel: [    4.490590] RPC: Registered named UNIX 
socket transport module.
May  3 20:12:01 topcrapn kernel: [    4.490593] RPC: Registered udp transport 
module.
May  3 20:12:01 topcrapn kernel: [    4.490594] RPC: Registered tcp transport 
module.
May  3 20:12:01 topcrapn kernel: [    4.490594] RPC: Registered tcp NFSv4.1 
backchannel transport module.
May  3 20:12:01 topcrapn kernel: [    4.490874] lp: driver loaded but no 
devices found
May  3 20:12:01 topcrapn kernel: [    4.497454] ppdev: user-space parallel port 
driver
May  3 20:12:01 topcrapn kernel: [    4.628121] audit: type=1400 
audit(1620087121.131:2): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="libreoffice-xpdfimport" pid=310 
comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.632837] audit: type=1400 
audit(1620087121.135:3): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="/usr/bin/man" pid=307 comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.632842] audit: type=1400 
audit(1620087121.135:4): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="man_filter" pid=307 comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.632845] audit: type=1400 
audit(1620087121.135:5): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="man_groff" pid=307 comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.644585] audit: type=1400 
audit(1620087121.147:6): apparmor="STATUS" operation="profile_load" 
profile="unconfined" 
name="/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session" pid=308 
comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.644590] audit: type=1400 
audit(1620087121.147:7): apparmor="STATUS" operation="profile_load" 
profile="unconfined" 
name="/usr/lib/x86_64-linux-gnu/lightdm/lightdm-guest-session//chromium" 
pid=308 comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.644805] audit: type=1400 
audit(1620087121.147:8): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="libreoffice-oopslash" pid=315 comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.654989] audit: type=1400 
audit(1620087121.159:9): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="/usr/sbin/cups-browsed" pid=317 
comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.661470] audit: type=1400 
audit(1620087121.163:10): apparmor="STATUS" operation="profile_load" 
profile="unconfined" name="/usr/lib/telepathy/mission-control-5" pid=314 
comm="apparmor_parser"
May  3 20:12:01 topcrapn kernel: [    4.742669] loop: module loaded
May  3 20:12:01 topcrapn kernel: [    4.885483] ACPI: AC Adapter [AC] (off-line)
May  3 20:12:01 topcrapn kernel: [    4.932395] Non-volatile memory driver v1.3
May  3 20:12:01 topcrapn kernel: [    4.960212] thinkpad_acpi: ThinkPad ACPI 
Extras v0.26
May  3 20:12:01 topcrapn kernel: [    4.960214] thinkpad_acpi: 
http://ibm-acpi.sf.net/
May  3 20:12:01 topcrapn kernel: [    4.960215] thinkpad_acpi: ThinkPad BIOS 
HEET36WW (1.17 ), EC unknown
May  3 20:12:01 topcrapn kernel: [    4.960216] thinkpad_acpi: Lenovo ThinkPad 
Edge E431, model 6277CTO
May  3 20:12:01 topcrapn kernel: [    4.969310] at24 0-0050: supply vcc not 
found, using dummy regulator
May  3 20:12:01 topcrapn kernel: [    4.978664] input: PC Speaker as 
/devices/platform/pcspkr/input/input7
May  3 20:12:01 topcrapn kernel: [    4.979310] at24 0-0050: 256 byte spd 
EEPROM, read-only
May  3 20:12:01 topcrapn kernel: [    4.980069] thinkpad_acpi: This ThinkPad 
has standard ACPI backlight brightness control, supported by the ACPI video 
driver
May  3 20:12:01 topcrapn kernel: [    4.980071] thinkpad_acpi: Disabling 
thinkpad-acpi brightness events by default...
May  3 20:12:01 topcrapn kernel: [    4.985024] thinkpad_acpi: rfkill switch 
tpacpi_bluetooth_sw: radio is unblocked
May  3 20:12:01 topcrapn kernel: [    4.987319] cfg80211: Loading compiled-in 
X.509 certificates for regulatory database
May  3 20:12:01 topcrapn kernel: [    4.988341] cfg80211: Loaded X.509 cert 
'b...@debian.org: 577e021cb980e0e820821ba7b54b4961b8b4fadf'
May  3 20:12:01 topcrapn kernel: [    4.988573] cfg80211: Loaded X.509 cert 
'romain.per...@gmail.com: 3abbc6ec146e09d1b6016ab9d6cf71dd233f0328'
May  3 20:12:01 topcrapn kernel: [    4.988818] cfg80211: Loaded X.509 cert 
'sforshee: 00b28ddf47aef9cea7'
May  3 20:12:01 topcrapn kernel: [    4.990166] mc: Linux media interface: v0.10
May  3 20:12:01 topcrapn kernel: [    4.990432] platform regulatory.0: 
firmware: direct-loading firmware regulatory.db
May  3 20:12:01 topcrapn kernel: [    4.991180] platform regulatory.0: 
firmware: direct-loading firmware regulatory.db.p7s
May  3 20:12:01 topcrapn kernel: [    4.992426] sd 0:0:0:0: Attached scsi 
generic sg0 type 0
May  3 20:12:01 topcrapn kernel: [    4.992699] sr 2:0:0:0: Attached scsi 
generic sg1 type 5
May  3 20:12:01 topcrapn kernel: [    5.007429] iTCO_vendor_support: 
vendor-support=0
May  3 20:12:01 topcrapn kernel: [    5.009868] thinkpad_acpi: battery 1 
registered (start 0, stop 100)
May  3 20:12:01 topcrapn kernel: [    5.009877] battery: new extension: 
ThinkPad Battery Extension
May  3 20:12:01 topcrapn kernel: [    5.009939] input: ThinkPad Extra Buttons 
as /devices/platform/thinkpad_acpi/input/input8
May  3 20:12:01 topcrapn kernel: [    5.032606] iTCO_wdt: Intel TCO WatchDog 
Timer Driver v1.11
May  3 20:12:01 topcrapn kernel: [    5.032654] iTCO_wdt: Found a Panther Point 
TCO device (Version=2, TCOBASE=0x0460)
May  3 20:12:01 topcrapn kernel: [    5.032798] iTCO_wdt: initialized. 
heartbeat=30 sec (nowayout=0)
May  3 20:12:01 topcrapn kernel: [    5.037575] rmi4_smbus 0-002c: registering 
SMbus-connected sensor
May  3 20:12:01 topcrapn kernel: [    5.047553] videodev: Linux video capture 
interface: v2.00
May  3 20:12:01 topcrapn kernel: [    5.083592] Intel(R) Wireless WiFi driver 
for Linux
May  3 20:12:01 topcrapn kernel: [    5.083780] iwlwifi 0000:04:00.0: can't 
disable ASPM; OS doesn't have ASPM control
May  3 20:12:01 topcrapn kernel: [    5.090194] RAPL PMU: API unit is 2^-32 
Joules, 3 fixed counters, 163840 ms ovfl timer
May  3 20:12:01 topcrapn kernel: [    5.090198] RAPL PMU: hw unit of domain 
pp0-core 2^-16 Joules
May  3 20:12:01 topcrapn kernel: [    5.090199] RAPL PMU: hw unit of domain 
package 2^-16 Joules
May  3 20:12:01 topcrapn kernel: [    5.090200] RAPL PMU: hw unit of domain 
pp1-gpu 2^-16 Joules
May  3 20:12:01 topcrapn kernel: [    5.102933] iwlwifi 0000:04:00.0: firmware: 
direct-loading firmware iwlwifi-2030-6.ucode
May  3 20:12:01 topcrapn kernel: [    5.103134] iwlwifi 0000:04:00.0: loaded 
firmware version 18.168.6.1 2030-6.ucode op_mode iwldvm
May  3 20:12:01 topcrapn kernel: [    5.103155] iwlwifi 0000:04:00.0: firmware: 
failed to load iwl-debug-yoyo.bin (-2)
May  3 20:12:01 topcrapn kernel: [    5.103159] firmware_class: See 
https://wiki.debian.org/Firmware for information about missing firmware
May  3 20:12:01 topcrapn kernel: [    5.110682] rmi4_f01 rmi4-00.fn01: found 
RMI device, manufacturer: Synaptics, product: TM2691-001, fw id: 0
May  3 20:12:01 topcrapn kernel: [    5.121848] cryptd: max_cpu_qlen set to 1000
May  3 20:12:01 topcrapn kernel: [    5.159889] input: Synaptics TM2691-001 as 
/devices/rmi4-00/input/input9
May  3 20:12:01 topcrapn kernel: [    5.174133] serio: RMI4 PS/2 pass-through 
port at rmi4-00.fn03
May  3 20:12:01 topcrapn kernel: [    5.241922] Adding 16777192k swap on 
/dev/sda3.  Priority:-2 extents:1 across:16777192k SSFS
May  3 20:12:01 topcrapn kernel: [    5.254341] AVX version of gcm_enc/dec 
engaged.
May  3 20:12:01 topcrapn kernel: [    5.254342] AES CTR mode by8 optimization 
enabled
May  3 20:12:01 topcrapn kernel: [    5.302321] uvcvideo: Found UVC 1.00 device 
Integrated Camera (5986:0397)
May  3 20:12:01 topcrapn kernel: [    5.313306] input: Integrated Camera: 
Integrated C as 
/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input11
May  3 20:12:01 topcrapn kernel: [    5.313393] usbcore: registered new 
interface driver uvcvideo
May  3 20:12:01 topcrapn kernel: [    5.313395] USB Video Class driver (1.1.1)
May  3 20:12:01 topcrapn kernel: [    5.379558] iwlwifi 0000:04:00.0: 
CONFIG_IWLWIFI_DEBUG disabled
May  3 20:12:01 topcrapn kernel: [    5.379561] iwlwifi 0000:04:00.0: 
CONFIG_IWLWIFI_DEBUGFS disabled
May  3 20:12:01 topcrapn kernel: [    5.379563] iwlwifi 0000:04:00.0: 
CONFIG_IWLWIFI_DEVICE_TRACING disabled
May  3 20:12:01 topcrapn kernel: [    5.379565] iwlwifi 0000:04:00.0: Detected 
Intel(R) Centrino(R) Wireless-N 2230 BGN, REV=0xC8
May  3 20:12:01 topcrapn kernel: [    5.414260] snd_hda_intel 0000:00:1b.0: 
bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May  3 20:12:01 topcrapn kernel: [    5.421966] ieee80211 phy0: Selected rate 
control algorithm 'iwl-agn-rs'
May  3 20:12:01 topcrapn kernel: [    5.457868] alg: No test for 
fips(ansi_cprng) (fips_ansi_cprng)
May  3 20:12:02 topcrapn kernel: [    5.495416] snd_hda_codec_conexant 
hdaudioC0D0: CX20590: BIOS auto-probing.
May  3 20:12:02 topcrapn kernel: [    5.497114] snd_hda_codec_conexant 
hdaudioC0D0: autoconfig for CX20590: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) 
type:speaker
May  3 20:12:02 topcrapn kernel: [    5.497117] snd_hda_codec_conexant 
hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May  3 20:12:02 topcrapn kernel: [    5.497119] snd_hda_codec_conexant 
hdaudioC0D0:    hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
May  3 20:12:02 topcrapn kernel: [    5.497120] snd_hda_codec_conexant 
hdaudioC0D0:    mono: mono_out=0x0
May  3 20:12:02 topcrapn kernel: [    5.497121] snd_hda_codec_conexant 
hdaudioC0D0:    inputs:
May  3 20:12:02 topcrapn kernel: [    5.497123] snd_hda_codec_conexant 
hdaudioC0D0:      Internal Mic=0x23
May  3 20:12:02 topcrapn kernel: [    5.497124] snd_hda_codec_conexant 
hdaudioC0D0:      Mic=0x1a
May  3 20:12:02 topcrapn kernel: [    5.500941] intel_rapl_common: Found RAPL 
domain package
May  3 20:12:02 topcrapn kernel: [    5.500945] intel_rapl_common: Found RAPL 
domain core
May  3 20:12:02 topcrapn kernel: [    5.500946] intel_rapl_common: Found RAPL 
domain uncore
May  3 20:12:02 topcrapn kernel: [    5.500953] intel_rapl_common: RAPL 
package-0 domain package locked by BIOS
May  3 20:12:02 topcrapn kernel: [    5.542525] input: HDA Intel PCH Mic as 
/devices/pci0000:00/0000:00:1b.0/sound/card0/input12
May  3 20:12:02 topcrapn kernel: [    5.543629] input: HDA Intel PCH Headphone 
as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
May  3 20:12:02 topcrapn kernel: [    5.543732] input: HDA Intel PCH 
HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
May  3 20:12:02 topcrapn kernel: [    5.543814] input: HDA Intel PCH 
HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
May  3 20:12:02 topcrapn kernel: [    5.559565] psmouse serio2: trackpoint: IBM 
TrackPoint firmware: 0x0e, buttons: 3/3
May  3 20:12:02 topcrapn kernel: [    5.644091] Bluetooth: Core ver 2.22
May  3 20:12:02 topcrapn kernel: [    5.644128] NET: Registered protocol family 
31
May  3 20:12:02 topcrapn kernel: [    5.644129] Bluetooth: HCI device and 
connection manager initialized
May  3 20:12:02 topcrapn kernel: [    5.644223] Bluetooth: HCI socket layer 
initialized
May  3 20:12:02 topcrapn kernel: [    5.644226] Bluetooth: L2CAP socket layer 
initialized
May  3 20:12:02 topcrapn kernel: [    5.644232] Bluetooth: SCO socket layer 
initialized
May  3 20:12:02 topcrapn kernel: [    5.659312] input: TPPS/2 IBM TrackPoint as 
/devices/rmi4-00/rmi4-00.fn03/serio2/input/input10
May  3 20:12:02 topcrapn kernel: [    5.665812] usbcore: registered new 
interface driver btusb
May  3 20:12:02 topcrapn kernel: [    5.672289] Bluetooth: hci0: unexpected 
event for opcode 0x0000
May  3 20:12:02 topcrapn kernel: [    5.756207] Bluetooth: BNEP (Ethernet 
Emulation) ver 1.3
May  3 20:12:02 topcrapn kernel: [    5.756211] Bluetooth: BNEP filters: 
protocol multicast
May  3 20:12:02 topcrapn kernel: [    5.756216] Bluetooth: BNEP socket layer 
initialized
May  3 20:12:02 topcrapn kernel: [    5.845688] NET: Registered protocol family 
38
May  3 20:12:02 topcrapn kernel: [    6.008863] r8169 0000:05:00.0: firmware: 
failed to load rtl_nic/rtl8168e-3.fw (-2)
May  3 20:12:02 topcrapn kernel: [    6.008868] r8169 0000:05:00.0: Direct 
firmware load for rtl_nic/rtl8168e-3.fw failed with error -2
May  3 20:12:02 topcrapn kernel: [    6.008871] r8169 0000:05:00.0: Unable to 
load firmware rtl_nic/rtl8168e-3.fw (-2)
May  3 20:12:02 topcrapn kernel: [    6.009368] RTL8211E Gigabit Ethernet 
r8169-500:00: attached PHY driver [RTL8211E Gigabit Ethernet] 
(mii_bus:phy_addr=r8169-500:00, irq=IGNORE)
May  3 20:12:02 topcrapn kernel: [    6.075650] r8169 0000:05:00.0 eth0: Link 
is Down
May  3 20:12:02 topcrapn kernel: [    6.097487] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:02 topcrapn kernel: [    6.370686] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:02 topcrapn kernel: [    6.461179] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:03 topcrapn kernel: [    6.735502] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:04 topcrapn kernel: [    7.514650] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:04 topcrapn kernel: [    7.791970] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:12:04 topcrapn kernel: [    8.475680] wlan0: authenticate with 
04:f0:21:23:2d:7d
May  3 20:12:04 topcrapn kernel: [    8.479041] wlan0: send auth to 
04:f0:21:23:2d:7d (try 1/3)
May  3 20:12:05 topcrapn kernel: [    8.585873] wlan0: send auth to 
04:f0:21:23:2d:7d (try 2/3)
May  3 20:12:05 topcrapn kernel: [    8.588535] wlan0: authenticated
May  3 20:12:05 topcrapn kernel: [    8.589893] wlan0: associate with 
04:f0:21:23:2d:7d (try 1/3)
May  3 20:12:05 topcrapn kernel: [    8.593468] wlan0: RX AssocResp from 
04:f0:21:23:2d:7d (capab=0x431 status=0 aid=4)
May  3 20:12:05 topcrapn kernel: [    8.625725] wlan0: associated
May  3 20:12:05 topcrapn kernel: [    8.718247] IPv6: ADDRCONF(NETDEV_CHANGE): 
wlan0: link becomes ready
May  3 20:12:11 topcrapn kernel: [   15.171850] Bluetooth: RFCOMM TTY layer 
initialized
May  3 20:12:11 topcrapn kernel: [   15.171857] Bluetooth: RFCOMM socket layer 
initialized
May  3 20:12:11 topcrapn kernel: [   15.171864] Bluetooth: RFCOMM ver 1.11
May  3 20:12:26 topcrapn kernel: [   30.206310] broken atomic modeset userspace 
detected, disabling atomic
May  3 20:12:27 topcrapn kernel: [   30.755502] fuse: init (API version 7.32)
May  3 20:12:27 topcrapn kernel: [   31.051560] rfkill: input handler disabled
May  3 20:11:12 topcrapn kernel: [   74.625356] PM: suspend entry (deep)
May  3 20:11:13 topcrapn kernel: [   75.006644] Filesystems sync: 0.381 seconds
May  3 20:11:13 topcrapn kernel: [   75.006809] (NULL device *): firmware: 
direct-loading firmware regulatory.db
May  3 20:11:13 topcrapn kernel: [   75.006810] (NULL device *): firmware: 
direct-loading firmware regulatory.db.p7s
May  3 20:11:13 topcrapn kernel: [   75.006968] (NULL device *): firmware: 
direct-loading firmware iwlwifi-2030-6.ucode
May  3 20:11:13 topcrapn kernel: [   75.145898] Freezing user space processes 
... (elapsed 0.002 seconds) done.
May  3 20:11:13 topcrapn kernel: [   75.148269] OOM killer disabled.
May  3 20:11:13 topcrapn kernel: [   75.148270] Freezing remaining freezable 
tasks ... (elapsed 0.001 seconds) done.
May  3 20:11:13 topcrapn kernel: [   75.149470] printk: Suspending console(s) 
(use no_console_suspend to debug)
May  3 20:11:13 topcrapn kernel: [   75.149898] wlan0: deauthenticating from 
04:f0:21:23:2d:7d by local choice (Reason: 3=DEAUTH_LEAVING)
May  3 20:11:13 topcrapn kernel: [   75.150212] rmi4_f03 rmi4-00.fn03: 
rmi_f03_pt_write: Failed to write to F03 TX register (-6).
May  3 20:11:13 topcrapn kernel: [   75.150214] psmouse serio2: Failed to 
disable mouse on rmi4-00.fn03/serio0
May  3 20:11:13 topcrapn kernel: [   75.150542] rmi4_f03 rmi4-00.fn03: 
rmi_f03_pt_write: Failed to write to F03 TX register (-6).
May  3 20:11:13 topcrapn kernel: [   75.150872] rmi4_f03 rmi4-00.fn03: 
rmi_f03_pt_write: Failed to write to F03 TX register (-6).
May  3 20:11:13 topcrapn kernel: [   75.151374] rmi4_f01 rmi4-00.fn01: Failed 
to write sleep mode: -6.
May  3 20:11:13 topcrapn kernel: [   75.151377] rmi4_f01 rmi4-00.fn01: Suspend 
failed with code -6.
May  3 20:11:13 topcrapn kernel: [   75.151379] rmi4_physical rmi4-00: Failed 
to suspend functions: -6
May  3 20:11:13 topcrapn kernel: [   75.151385] rmi4_smbus 0-002c: Failed to 
suspend device: -6
May  3 20:11:13 topcrapn kernel: [   75.151394] PM: dpm_run_callback(): 
rmi_smb_suspend+0x0/0x30 [rmi_smbus] returns -6
May  3 20:11:13 topcrapn kernel: [   75.151397] PM: Device 0-002c failed to 
suspend: error -6
May  3 20:11:13 topcrapn kernel: [   75.186622] PM: Some devices failed to 
suspend, or early wake event detected
May  3 20:11:13 topcrapn kernel: [   75.200519] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:13 topcrapn kernel: [   75.203896] rmi4_f03 rmi4-00.fn03: 
rmi_f03_pt_write: Failed to write to F03 TX register (-6).
May  3 20:11:13 topcrapn kernel: [   75.204324] rmi4_physical rmi4-00: 
rmi_driver_clear_irq_bits: Failed to change enabled interrupts!
May  3 20:11:13 topcrapn kernel: [   75.475961] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:13 topcrapn kernel: [   75.539118] OOM killer enabled.
May  3 20:11:13 topcrapn kernel: [   75.539120] Restarting tasks ... done.
May  3 20:11:13 topcrapn kernel: [   75.545169] rmi4_physical rmi4-00: 
rmi_driver_set_irq_bits: Failed to change enabled interrupts!
May  3 20:11:13 topcrapn kernel: [   75.545180] psmouse: probe of serio2 failed 
with error -1
May  3 20:11:13 topcrapn kernel: [   75.849805] PM: suspend exit
May  3 20:11:13 topcrapn kernel: [   75.850002] PM: suspend entry (s2idle)
May  3 20:11:13 topcrapn kernel: [   75.858029] Filesystems sync: 0.008 seconds
May  3 20:11:14 topcrapn kernel: [   75.870790] Freezing user space processes 
... (elapsed 0.002 seconds) done.
May  3 20:11:14 topcrapn kernel: [   75.872858] OOM killer disabled.
May  3 20:11:14 topcrapn kernel: [   75.872859] Freezing remaining freezable 
tasks ... (elapsed 0.001 seconds) done.
May  3 20:11:14 topcrapn kernel: [   75.874231] printk: Suspending console(s) 
(use no_console_suspend to debug)
May  3 20:11:14 topcrapn kernel: [   75.875157] rmi4_f01 rmi4-00.fn01: Failed 
to write sleep mode: -6.
May  3 20:11:14 topcrapn kernel: [   75.875159] rmi4_f01 rmi4-00.fn01: Suspend 
failed with code -6.
May  3 20:11:14 topcrapn kernel: [   75.875160] rmi4_physical rmi4-00: Failed 
to suspend functions: -6
May  3 20:11:14 topcrapn kernel: [   75.875162] rmi4_smbus 0-002c: Failed to 
suspend device: -6
May  3 20:11:14 topcrapn kernel: [   75.875166] PM: dpm_run_callback(): 
rmi_smb_suspend+0x0/0x30 [rmi_smbus] returns -6
May  3 20:11:14 topcrapn kernel: [   75.875167] PM: Device 0-002c failed to 
suspend: error -6
May  3 20:11:14 topcrapn kernel: [   75.895957] PM: Some devices failed to 
suspend, or early wake event detected
May  3 20:11:14 topcrapn kernel: [   75.909711] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:14 topcrapn kernel: [   76.183671] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:14 topcrapn kernel: [   76.246889] OOM killer enabled.
May  3 20:11:14 topcrapn kernel: [   76.246890] Restarting tasks ... done.
May  3 20:11:14 topcrapn kernel: [   76.248627] rmi4_physical rmi4-00: 
rmi_driver_set_irq_bits: Failed to change enabled interrupts!
May  3 20:11:14 topcrapn kernel: [   76.248639] psmouse: probe of serio2 failed 
with error -1
May  3 20:11:14 topcrapn kernel: [   76.441700] PM: suspend exit
May  3 20:11:14 topcrapn kernel: [   76.552919] r8169 0000:05:00.0: firmware: 
failed to load rtl_nic/rtl8168e-3.fw (-2)
May  3 20:11:14 topcrapn kernel: [   76.552925] r8169 0000:05:00.0: Direct 
firmware load for rtl_nic/rtl8168e-3.fw failed with error -2
May  3 20:11:14 topcrapn kernel: [   76.552929] r8169 0000:05:00.0: Unable to 
load firmware rtl_nic/rtl8168e-3.fw (-2)
May  3 20:11:14 topcrapn kernel: [   76.553421] RTL8211E Gigabit Ethernet 
r8169-500:00: attached PHY driver [RTL8211E Gigabit Ethernet] 
(mii_bus:phy_addr=r8169-500:00, irq=IGNORE)
May  3 20:11:14 topcrapn kernel: [   76.640620] r8169 0000:05:00.0 eth0: Link 
is Down
May  3 20:11:14 topcrapn kernel: [   76.652307] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:14 topcrapn kernel: [   76.932027] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:15 topcrapn kernel: [   77.036874] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:15 topcrapn kernel: [   77.320368] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:16 topcrapn kernel: [   78.025483] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:16 topcrapn kernel: [   78.307569] iwlwifi 0000:04:00.0: Radio 
type=0x2-0x0-0x0
May  3 20:11:17 topcrapn kernel: [   78.942598] wlan0: authenticate with 
04:f0:21:23:2d:7d
May  3 20:11:17 topcrapn kernel: [   78.946329] wlan0: send auth to 
04:f0:21:23:2d:7d (try 1/3)
May  3 20:11:17 topcrapn kernel: [   78.948441] wlan0: authenticated
May  3 20:11:17 topcrapn kernel: [   78.953860] wlan0: associate with 
04:f0:21:23:2d:7d (try 1/3)
May  3 20:11:17 topcrapn kernel: [   78.957306] wlan0: RX AssocResp from 
04:f0:21:23:2d:7d (capab=0x431 status=0 aid=4)
May  3 20:11:17 topcrapn kernel: [   78.984316] wlan0: associated
May  3 20:11:17 topcrapn kernel: [   78.992550] IPv6: ADDRCONF(NETDEV_CHANGE): 
wlan0: link becomes ready
May  3 20:12:08 topcrapn kernel: [  130.833555] rfkill: input handler enabled

Reply via email to