You are not logged in.

#1 2019-02-05 16:47:34

Grenville
Member
Registered: 2018-09-24
Posts: 36

[solved] A Question About Linux-lts

I notice that the combined size of the packages for linux-lts and linux-lts-headers has grown significantly recently.

The combined size of the update download has gone up from around 68mb to just under 84mb and the installed size has increased by 27mb.

This seems like a huge increase and boot times for older kit seems to have increased substantially.

I understand that the kernel tends to grow in size as more hardware is integrated into the code but why the sudden increase?

Best regards!

Marked solved at OPs request

Last edited by WorMzy (2019-02-12 10:25:39)

Offline

#2 2019-02-05 18:23:53

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,739

Re: [solved] A Question About Linux-lts

Out of curiosity, I went to the packages tab, went to linux-lts, and looked tt the differences when it went from 4.14 to 4.19.
Found this: https://git.archlinux.org/svntogit/pack … 291705f45d

Scroll down.  There are significant changes to the kernel configuration file.   More than I want to repost here.
You might look into a custom kernel if there are new things you do not need or want.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#3 2019-02-05 18:36:43

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: [solved] A Question About Linux-lts

You can use `make localmodconfig` if you do build your own kernel which will significantly reduce the size of the package.  See the wiki for modprobed-db for some examples.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#4 2019-02-05 19:27:15

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

graysky wrote:

You can use `make localmodconfig` if you do build your own kernel which will significantly reduce the size of the package.  See the wiki for modprobed-db for some examples.

That sounds fantastic.

Presumably it only probes for modules your PC requires and ignores the many it does not, which results in quicker boot times and avoids probing for newly added modules for kit you don't have?

It sounds like it might help solve my recent problems associated with kernel updates.

Thanks!

Offline

#5 2019-02-05 19:42:10

loqs
Member
Registered: 2014-03-06
Posts: 17,192

Re: [solved] A Question About Linux-lts

Grenville wrote:

Presumably it only probes for modules your PC requires and ignores the many it does not, which results in quicker boot times and avoids probing for newly added modules for kit you don't have?

A module would only be loaded if there a match against its one of its aliases for hardware supports or it was manually loaded or needed by another module.
The module.alias list would be much smaller with only the modules from localmodconfig but the result may not be measurably faster.

Offline

#6 2019-02-05 21:12:20

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: [solved] A Question About Linux-lts

Right... doubt you will notice much of a speed increase (compiled in vs probing a small module) on an modern CPU but your original post was commenting on the size of the package which will definitely be impacted.  I don't see how boot time would be affected.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#7 2019-02-06 16:59:27

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

graysky wrote:

Right... doubt you will notice much of a speed increase (compiled in vs probing a small module) on an modern CPU but your original post was commenting on the size of the package which will definitely be impacted.  I don't see how boot time would be affected.

Experiment bears that out.

I had made some wrong assumptions.

It is a minimal installation plus cinnamon and it takes 6 minutes for a reboot, 2 minutes longer than the original installation using an older kernel.

It will be interesting comparing other distros.

Thanks for your help!

Offline

#8 2019-02-06 19:38:53

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,595
Website

Re: [solved] A Question About Linux-lts

6 minutes?!  Are you running Arch an a kerosene powered cheese grater???


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#9 2019-02-06 22:04:18

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

You can overclock those w/ using ethanol as fuel ;-)

@Grenville, 6 minutes sounds ridiculous for a local reboot - are there any remote filesystems involved?
To be sure: this *is* archlinux (like archlinux-archlinux) and not one of the more silly derivates that run mkinitcpio w/ every reboot?
Any other shutdown scripts that might have an impact here?

Offline

#10 2019-02-07 15:46:32

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

You can overclock those w/ using ethanol as fuel ;-)

@Grenville, 6 minutes sounds ridiculous for a local reboot - are there any remote filesystems involved?
To be sure: this *is* archlinux (like archlinux-archlinux) and not one of the more silly derivates that run mkinitcpio w/ every reboot?
Any other shutdown scripts that might have an impact here?

No, it is a fresh minimal install of Arch using commands typed in by my very own fat fingers.

Cheers!

Offline

#11 2019-02-07 15:51:08

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

Then what takes 6 minutes on a reboot?
Is this more spent in the shutdown or the boot?
In case of the latter: "systemd-analyze critical-chain"?

Offline

#12 2019-02-07 18:08:16

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

Then what takes 6 minutes on a reboot?
Is this more spent in the shutdown or the boot?
In case of the latter: "systemd-analyze critical-chain"?

~]$ systemd-analyze critical-chain
The time after the unit is active or started is printed after the "@" character.
The time the unit takes to start is printed after the "+" character.

graphical.target @2.310s
└─lightdm.service @2.224s +85ms
  └─systemd-user-sessions.service @2.209s +12ms
    └─nss-user-lookup.target @2.321s

The boot takes longest and most of the extra time is between logging in and the desktop fully deploying.

Offline

#13 2019-02-07 19:22:05

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

between logging in and the desktop

Is *not* the boot process.
Your desktop session starts slow and that could be due to all kinds of things, predominantly because it starts a lot of slow services or restores a lot of slow processes (browsers) or whatnot.
Even more weird would be any kernel impact here.

loginctl session-status

right after the login finished.

Offline

#14 2019-02-08 11:22:15

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

between logging in and the desktop

Is *not* the boot process.
Your desktop session starts slow and that could be due to all kinds of things, predominantly because it starts a lot of slow services or restores a lot of slow processes (browsers) or whatnot.
Even more weird would be any kernel impact here.

loginctl session-status

right after the login finished.

Produces this:

 Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73394s: Application 'cinnamon-settings-daemon-color.desktop' failed to register before timeout
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73397s: Application 'cinnamon-settings-daemon-wacom.desktop' failed to register before timeout
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73399s: Application 'cinnamon-settings-daemon-orientation.desktop' failed to register before ti>
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73401s: Application 'cinnamon-settings-daemon-background.desktop' failed to register before tim>
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73404s: Application 'cinnamon-settings-daemon-housekeeping.desktop' failed to register before t>
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73406s: Application 'cinnamon-settings-daemon-cursor.desktop' failed to register before timeout
Feb 08 10:55:54 cinnamon-session[434]: WARNING: t+30.73409s: Application 'cinnamon-settings-daemon-xrandr.desktop' failed to register before timeout
Feb 08 10:56:24 cinnamon-session[434]: WARNING: t+60.75360s: Application 'cinnamon.desktop' failed to register before timeout
Feb 08 10:56:24 cinnamon-session[434]: CRITICAL: t+60.75412s: We failed, but the fail whale is dead. Sorry....
Feb 08 10:58:00 /cinnamon-killer-daemon[623]: Bound Cinnamon restart to <Control><Alt>Escape.

It might be noted that the cinnamon-settings-daemon hangs when shutting down on the previous working install if I update the kernel.

Offline

#15 2019-02-08 12:19:25

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

How is that the output of "loginctl session-status"?
There's https://bbs.archlinux.org/viewtopic.php?id=242845 - in doubt please post a complete journal.

Offline

#16 2019-02-08 16:28:58

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

How is that the output of "loginctl session-status"?
There's https://bbs.archlinux.org/viewtopic.php?id=242845 - in doubt please post a complete journal.

 [ ~]$ loginctl session-status
2 -(1000)
           Since: Fri 2019-02-08 15:56:37 UTC; 5min ago
          Leader: 410 (lightdm)
            Seat: seat0; vc7
         Display: :0
         Service: lightdm; type x11; class user
         Desktop: cinnamon
           State: active
            Unit: session-2.scope
                  ├─410 lightdm --session-child 12 19
                  ├─427 cinnamon-session --session cinnamon
                  ├─490 /usr/lib/cinnamon-settings-daemon/csd-print-notificatio>
                  ├─491 /usr/lib/cinnamon-settings-daemon/csd-media-keys
                  ├─492 /usr/lib/cinnamon-settings-daemon/csd-screensaver-proxy
                  ├─493 /usr/lib/cinnamon-settings-daemon/csd-a11y-settings
                  ├─494 /usr/lib/cinnamon-settings-daemon/csd-mouse
                  ├─497 /usr/lib/cinnamon-settings-daemon/csd-xrandr
                  ├─500 /usr/lib/cinnamon-settings-daemon/csd-a11y-keyboard
                  ├─504 /usr/lib/cinnamon-settings-daemon/csd-xsettings
                  ├─508 /usr/lib/cinnamon-settings-daemon/csd-clipboard
                  ├─513 /usr/lib/cinnamon-settings-daemon/csd-power
                  ├─516 /usr/lib/cinnamon-settings-daemon/csd-background
                  ├─517 /usr/lib/cinnamon-settings-daemon/csd-orientation
                  ├─518 /usr/lib/cinnamon-settings-daemon/csd-cursor
                  ├─520 /usr/lib/cinnamon-settings-daemon/csd-housekeeping
                  ├─522 /usr/lib/cinnamon-settings-daemon/csd-automount
                  ├─524 /usr/lib/cinnamon-settings-daemon/csd-wacom
                  ├─526 /usr/lib/cinnamon-settings-daemon/csd-color
                  ├─532 /usr/lib/cinnamon-settings-daemon/csd-sound
                  ├─543 /usr/lib/cinnamon-settings-daemon/csd-keyboard
                  ├─564 /usr/lib/cinnamon-settings-daemon/csd-printer
                  ├─612 /usr/bin/python3 /usr/bin/cinnamon-launcher
                  ├─646 /usr/lib/geoclue-2.0/demos/agent
                  ├─654 nm-applet
                  ├─655 /usr/bin/python3 /usr/bin/cinnamon-killer-daemon
                  ├─656 /usr/lib/polkit-gnome/polkit-gnome-authentication-agent>
                  ├─662 cinnamon-screensaver
                  ├─686 cinnamon --replace
                  ├─744 nemo-desktop
                  ├─773 nemo /run/media/destry/3E21-32E5
                  ├─808 pluma /run/media/destry/3E21-32E5/Output
                  ├─815 mate-terminal
                  ├─823 bash
                  ├─825 loginctl session-status
                  └─826 less

Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77171s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77177s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77183s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77189s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77195s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77205s: Applicati>
Feb 08 15:57:08  cinnamon-session[427]: WARNING: t+30.77211s: Applicati>
Feb 08 15:57:38  cinnamon-session[427]: WARNING: t+60.79086s: Applicati>
Feb 08 15:57:38 cinnamon-session[427]: CRITICAL: t+60.79142s: We faile>
Feb 08 15:59:14  /cinnamon-killer-daemon[655]: Bound Cinnamon restart t>
lines 34-56/56 (END)

Offline

#17 2019-02-08 16:36:10

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

Did you check the link and whether you're facing a similar issue?

Offline

#18 2019-02-08 18:52:19

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

Did you check the link and whether you're facing a similar issue?

The problem doesn't sound the same as my own but it may be a related issue.

There are a lot of suggestions on the Intel page of the Wiki, and I'll have to read and try and grasp the concepts.

Thanks for your help!

Offline

#19 2019-02-08 20:37:51

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

He's got a kernel related issue that impedes his desktop session from starting which by sheer coincident is cinnamon…
Post a complete journal.

Offline

#20 2019-02-11 15:57:24

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

He's got a kernel related issue that impedes his desktop session from starting which by sheer coincident is cinnamon…
Post a complete journal.

Could you remind me what command I should use to get the full journal?

Thanks!

Last edited by Grenville (2019-02-11 15:57:50)

Offline

#21 2019-02-11 16:08:50

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,783
Website

Re: [solved] A Question About Linux-lts


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Online

#22 2019-02-11 18:51:46

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

He's got a kernel related issue that impedes his desktop session from starting which by sheer coincident is cinnamon…
Post a complete journal.

Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]: === Applying Configuratio>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Clone: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: Laptop attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: on
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: 1280
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: 800
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: 60
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: true
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: 0 0
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:   Output: (null) attached>
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      status: off
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      width: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      height: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      rate: -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      primary: false
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]:      position: -1 -1
Feb 11 18:38:00 dellarch /usr/lib/gdm-x-session[602]: [cinnamon-settings-daemon>
Feb 11 18:38:00 dellarch dbus-daemon[609]: [session uid=1000 pid=609] Activatin>
Feb 11 18:38:00 dellarch systemd[562]: Starting Virtual filesystem service - di>
Feb 11 18:38:00 dellarch dbus-daemon[280]: [system] Activating via systemd: ser>
Feb 11 18:38:00 dellarch systemd[1]: Starting Disk Manager...
Feb 11 18:38:00 dellarch udisksd[765]: udisks daemon version 2.8.1 starting
Feb 11 18:38:01 dellarch dbus-daemon[280]: [system] Successfully activated serv>
Feb 11 18:38:01 dellarch systemd[1]: Started Disk Manager.
Feb 11 18:38:01 dellarch audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 se>
Feb 11 18:38:01 dellarch udisksd[765]: Acquired the name org.freedesktop.UDisks>
Feb 11 18:38:01 dellarch kernel: audit: type=1130 audit(1549910281.040:49): pid>
Feb 11 18:38:01 dellarch dbus-daemon[609]: [session uid=1000 pid=609] Successfu>
Feb 11 18:38:01 dellarch systemd[562]: Started Virtual filesystem service - dis>
Feb 11 18:38:10 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:38:10 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:38:10 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:38:10 dellarch kernel: WARNING: CPU: 1 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:38:10 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:38:10 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:38:10 dellarch kernel: CPU: 1 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:38:10 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:38:10 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:38:10 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:38:10 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:38:10 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:38:10 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:38:10 dellarch kernel: RBP: 0000000000000001 R08: 0000000000000455 R0>
Feb 11 18:38:10 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:38:10 dellarch kernel: R13: 0000000009000789 R14: ffff8ea0ee0aa978 R1>
Feb 11 18:38:10 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc10000>
Feb 11 18:38:10 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:38:10 dellarch kernel: CR2: 000055e8b5c0de60 CR3: 000000009eb76000 CR>
Feb 11 18:38:10 dellarch kernel: Call Trace:
Feb 11 18:38:10 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:38:10 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:38:10 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:38:10 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:38:10 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:38:10 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:38:10 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:38:10 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:38:10 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:38:10 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:38:10 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:38:10 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:38:10 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:38:10 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:38:10 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:38:10 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:38:10 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:38:10 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:38:10 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:38:10 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:38:10 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:38:10 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:38:10 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:38:10 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:38:10 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:38:10 dellarch kernel: ---[ end trace 9fe7868d72c47390 ]---
Feb 11 18:38:21 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:38:29 dellarch /usr/lib/gdm-x-session[602]: cinnamon-session[611]: WA>
Feb 11 18:38:29 dellarch cinnamon-session[611]: WARNING: t+61.04178s: Applicati>
Feb 11 18:38:29 dellarch /usr/lib/gdm-x-session[602]: cinnamon-session[611]: CR>
Feb 11 18:38:29 dellarch cinnamon-session[611]: CRITICAL: t+61.04226s: We faile>
Feb 11 18:38:29 dellarch polkit-gnome-au[788]: Locale not supported by C librar>
                                                       Using the fallback 'C' l>
Feb 11 18:38:29 dellarch nm-applet[786]: Locale not supported by C library.
                                                 Using the fallback 'C' locale.
Feb 11 18:38:29 dellarch nemo-desktop[783]: Locale not supported by C library.
                                                    Using the fallback 'C' loca>
Feb 11 18:38:31 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:38:41 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:38:41 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:38:41 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:38:41 dellarch kernel: WARNING: CPU: 1 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:38:41 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:38:41 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:38:41 dellarch kernel: CPU: 1 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:38:41 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:38:41 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:38:41 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:38:41 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:38:41 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:38:41 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:38:41 dellarch kernel: RBP: 0000000000000001 R08: 0000000000000485 R0>
Feb 11 18:38:41 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:38:41 dellarch kernel: R13: 000000000b00078a R14: ffff8ea0ee0aa978 R1>
Feb 11 18:38:41 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc10000>
Feb 11 18:38:41 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:38:41 dellarch kernel: CR2: 00007f602c0b6028 CR3: 000000009eb76000 CR>
Feb 11 18:38:41 dellarch kernel: Call Trace:
Feb 11 18:38:41 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:38:41 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:38:41 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:38:41 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:38:41 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:38:41 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:38:41 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:38:41 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:38:41 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:38:41 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:38:41 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:38:41 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:38:41 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:38:41 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:38:41 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:38:41 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:38:41 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:38:41 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:38:41 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:38:41 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:38:41 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:38:41 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:38:41 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:38:41 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:38:41 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:38:41 dellarch kernel: ---[ end trace 9fe7868d72c47391 ]---
Feb 11 18:38:51 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:39:02 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:39:12 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:39:12 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:39:12 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:39:12 dellarch kernel: WARNING: CPU: 1 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:39:12 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:39:12 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:39:12 dellarch kernel: CPU: 1 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:39:12 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:39:12 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:39:12 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:39:12 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:39:12 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:39:12 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:39:12 dellarch kernel: RBP: 0000000000000001 R08: 00000000000004b5 R0>
Feb 11 18:39:12 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:39:12 dellarch kernel: R13: 000000000d00078b R14: ffff8ea0ee0aa978 R1>
Feb 11 18:39:12 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc10000>
Feb 11 18:39:12 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:39:12 dellarch kernel: CR2: 00007fa6e4f5ac98 CR3: 000000009eb76000 CR>
Feb 11 18:39:12 dellarch kernel: Call Trace:
Feb 11 18:39:12 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:39:12 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:39:12 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:39:12 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:39:12 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:39:12 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:39:12 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:39:12 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:39:12 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:39:12 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:39:12 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:39:12 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:39:12 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:39:12 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:39:12 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:39:12 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:39:12 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:39:12 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:39:12 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:39:12 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:39:12 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:39:12 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:39:12 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:39:12 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:39:12 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:39:12 dellarch kernel: ---[ end trace 9fe7868d72c47392 ]---
Feb 11 18:39:22 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:39:32 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:39:32 dellarch /usr/lib/gdm-x-session[602]: Unable to init server: Co>
Feb 11 18:39:32 dellarch /usr/lib/gdm-x-session[602]: Could not parse arguments>
Feb 11 18:39:32 dellarch nm-applet[786]: cannot open display: :1
Feb 11 18:39:33 dellarch /usr/lib/gdm-x-session[602]: Warning:          Unsuppo>
Feb 11 18:39:33 dellarch /usr/lib/gdm-x-session[602]:                   X11 can>
Feb 11 18:39:33 dellarch /usr/lib/gdm-x-session[602]:                   This wa>
Feb 11 18:39:33 dellarch cinnamon-launch[748]: Locale not supported by C librar>
                                                       Using the fallback 'C' l>
Feb 11 18:39:33 dellarch cinnamon-killer[787]: Locale not supported by C librar>
                                                       Using the fallback 'C' l>
Feb 11 18:39:33 dellarch /usr/lib/gdm-x-session[602]: Internal error:   Could n>
Feb 11 18:39:33 dellarch polkitd[311]: Registered Authentication Agent for unix>
Feb 11 18:39:33 dellarch cinnamon-screen[790]: Locale not supported by C librar>
                                                       Using the fallback 'C' l>
Feb 11 18:39:44 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:39:44 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:39:44 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:39:44 dellarch kernel: WARNING: CPU: 1 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:39:44 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:39:44 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:39:44 dellarch kernel: CPU: 1 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:39:44 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:39:44 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:39:44 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:39:44 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:39:44 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:39:44 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:39:44 dellarch kernel: RBP: 0000000000000001 R08: 00000000000004e5 R0>
Feb 11 18:39:44 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:39:44 dellarch kernel: R13: 000000000f00078c R14: ffff8ea0ee0aa978 R1>
Feb 11 18:39:44 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc10000>
Feb 11 18:39:44 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:39:44 dellarch kernel: CR2: 00007fa6e4f5ac98 CR3: 000000009eb76000 CR>
Feb 11 18:39:44 dellarch kernel: Call Trace:
Feb 11 18:39:44 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:39:44 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:39:44 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:39:44 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:39:44 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:39:44 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:39:44 dellarch kernel:  ? __switch_to_asm+0x40/0x70
Feb 11 18:39:44 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:39:44 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:39:44 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:39:44 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:39:44 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:39:44 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:39:44 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:39:44 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:39:44 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:39:44 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:39:44 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:39:44 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:39:44 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:39:44 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:39:44 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:39:44 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:39:44 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:39:44 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:39:44 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:39:44 dellarch kernel: ---[ end trace 9fe7868d72c47393 ]---
Feb 11 18:39:54 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:40:04 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:40:04 dellarch gsd-color[445]: no xrandr-LVDS1 device found: Failed t>
Feb 11 18:40:04 dellarch /cinnamon-killer-daemon[787]: Bound Cinnamon restart t>
Feb 11 18:40:04 dellarch csd-color[700]: no xrandr-cPATH device found: Failed t>
Feb 11 18:40:04 dellarch gsd-color[445]: failed to set screen _ICC_PROFILE: Fai>
Feb 11 18:40:05 dellarch /usr/lib/gdm-x-session[602]: Cinnamon warning: Locale >
Feb 11 18:40:05 dellarch cinnamon[815]: Locale not supported by C library.
                                                Using the fallback 'C' locale.
Feb 11 18:40:15 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:40:15 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:40:15 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:40:15 dellarch kernel: WARNING: CPU: 0 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:40:15 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:40:15 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:40:15 dellarch kernel: CPU: 0 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:40:15 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:40:15 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:40:15 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:40:15 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:40:15 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:40:15 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:40:15 dellarch kernel: RBP: 0000000000000001 R08: 0000000000000516 R0>
Feb 11 18:40:15 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:40:15 dellarch kernel: R13: 000000001100078d R14: ffff8ea0ee0aa978 R1>
Feb 11 18:40:15 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc00000>
Feb 11 18:40:15 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:40:15 dellarch kernel: CR2: 00007fa6e4f5ac98 CR3: 000000009eb76000 CR>
Feb 11 18:40:15 dellarch kernel: Call Trace:
Feb 11 18:40:15 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:40:15 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:40:15 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:40:15 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:40:15 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:40:15 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:40:15 dellarch kernel:  ? __switch_to_asm+0x40/0x70
Feb 11 18:40:15 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:40:15 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:40:15 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:40:15 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:40:15 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:40:15 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:40:15 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:40:15 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:40:15 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:40:15 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:40:15 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:40:15 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:40:15 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:40:15 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:40:15 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:40:15 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:40:15 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:40:15 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:40:15 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:40:15 dellarch kernel: ---[ end trace 9fe7868d72c47394 ]---
Feb 11 18:40:25 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:40:36 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:40:37 dellarch NetworkManager[284]: <info>  [1549910437.5554] device >
Feb 11 18:40:37 dellarch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp12s0: link is no>
Feb 11 18:40:37 dellarch NetworkManager[284]: <info>  [1549910437.6876] device >
Feb 11 18:40:37 dellarch NetworkManager[284]: <info>  [1549910437.7237] device >
Feb 11 18:40:37 dellarch wpa_supplicant[347]: wlp12s0: Reject scan trigger sinc>
Feb 11 18:40:46 dellarch kernel: [drm:drm_atomic_helper_wait_for_flip_done [drm>
Feb 11 18:40:46 dellarch kernel: ------------[ cut here ]------------
Feb 11 18:40:46 dellarch kernel: vblank wait timed out on crtc 1
Feb 11 18:40:46 dellarch kernel: WARNING: CPU: 1 PID: 604 at drivers/gpu/drm/dr>
Feb 11 18:40:46 dellarch kernel: Modules linked in: fuse i915 arc4 iwl3945 iwle>
Feb 11 18:40:46 dellarch kernel:  crc16 mbcache jbd2 fscrypto sr_mod cdrom sd_m>
Feb 11 18:40:46 dellarch kernel: CPU: 1 PID: 604 Comm: Xorg Tainted: G        W>
Feb 11 18:40:46 dellarch kernel: Hardware name: Dell Inc. Latitude D630        >
Feb 11 18:40:46 dellarch kernel: RIP: 0010:drm_wait_one_vblank+0x15c/0x170 [drm]
Feb 11 18:40:46 dellarch kernel: Code: fc 0f 0b e9 32 ff ff ff 48 89 e6 4c 89 f>
Feb 11 18:40:46 dellarch kernel: RSP: 0018:ffffac9281bb79b0 EFLAGS: 00010282
Feb 11 18:40:46 dellarch kernel: RAX: 0000000000000000 RBX: ffff8ea0f0248000 RC>
Feb 11 18:40:46 dellarch kernel: RDX: 0000000000000007 RSI: 0000000000000096 RD>
Feb 11 18:40:46 dellarch kernel: RBP: 0000000000000001 R08: 0000000000000548 R0>
Feb 11 18:40:46 dellarch kernel: R10: 0000000000000000 R11: 0000000000000001 R1>
Feb 11 18:40:46 dellarch kernel: R13: 000000001300078e R14: ffff8ea0ee0aa978 R1>
Feb 11 18:40:46 dellarch kernel: FS:  00007f8d2f368dc0(0000) GS:ffff8ea0fc10000>
Feb 11 18:40:46 dellarch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050>
Feb 11 18:40:46 dellarch kernel: CR2: 00007f602c1ac048 CR3: 000000009eb76000 CR>
Feb 11 18:40:46 dellarch kernel: Call Trace:
Feb 11 18:40:46 dellarch kernel:  ? wait_woken+0x80/0x80
Feb 11 18:40:46 dellarch kernel:  intel_get_load_detect_pipe+0x373/0x3b0 [i915]
Feb 11 18:40:46 dellarch kernel:  intel_tv_detect+0x12d/0x4a0 [i915]
Feb 11 18:40:46 dellarch kernel:  ? gmbus_xfer+0x5a/0xa0 [i915]
Feb 11 18:40:46 dellarch kernel:  drm_helper_probe_single_connector_modes+0xd3/>
Feb 11 18:40:46 dellarch kernel:  drm_mode_getconnector+0x433/0x460 [drm]
Feb 11 18:40:46 dellarch kernel:  ? __switch_to_asm+0x40/0x70
Feb 11 18:40:46 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:40:46 dellarch kernel:  drm_ioctl_kernel+0xa7/0xf0 [drm]
Feb 11 18:40:46 dellarch kernel:  drm_ioctl+0x333/0x3e0 [drm]
Feb 11 18:40:46 dellarch kernel:  ? drm_connector_property_set_ioctl+0x60/0x60 >
Feb 11 18:40:46 dellarch kernel:  do_vfs_ioctl+0xa4/0x630
Feb 11 18:40:46 dellarch kernel:  ? syscall_slow_exit_work+0x18b/0x1a0
Feb 11 18:40:46 dellarch kernel:  ? __se_sys_newfstat+0x5f/0x70
Feb 11 18:40:46 dellarch kernel:  ? syscall_trace_enter+0x1d3/0x2c0
Feb 11 18:40:46 dellarch kernel:  ksys_ioctl+0x60/0x90
Feb 11 18:40:46 dellarch kernel:  __x64_sys_ioctl+0x16/0x20
Feb 11 18:40:46 dellarch kernel:  do_syscall_64+0x4e/0x100
Feb 11 18:40:46 dellarch kernel:  entry_SYSCALL_64_after_hwframe+0x44/0xa9
Feb 11 18:40:46 dellarch kernel: RIP: 0033:0x7f8d319bf80b
Feb 11 18:40:46 dellarch kernel: Code: 0f 1e fa 48 8b 05 55 b6 0c 00 64 c7 00 2>
Feb 11 18:40:46 dellarch kernel: RSP: 002b:00007ffd2843f328 EFLAGS: 00000246 OR>
Feb 11 18:40:46 dellarch kernel: RAX: ffffffffffffffda RBX: 000055b120094e00 RC>
Feb 11 18:40:46 dellarch kernel: RDX: 00007ffd2843f370 RSI: 00000000c05064a7 RD>
Feb 11 18:40:46 dellarch kernel: RBP: 00007ffd2843f370 R08: 0000000000000000 R0>
Feb 11 18:40:46 dellarch kernel: R10: 0000000000000280 R11: 0000000000000246 R1>
Feb 11 18:40:46 dellarch kernel: R13: 000000000000000c R14: 00000000c05064a7 R1>
Feb 11 18:40:46 dellarch kernel: ---[ end trace 9fe7868d72c47395 ]---
Feb 11 18:40:56 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:41:06 dellarch kernel: [drm:drm_atomic_helper_wait_for_dependencies [>
Feb 11 18:41:06 dellarch /usr/lib/gdm-x-session[602]: Cinnamon warning: Failed >
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: About to start Cinnamon
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Cinnamon.Ap>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] loading def>
Feb 11 18:41:07 dellarch /usr/lib/gdm-x-session[602]: Cinnamon warning: Could n>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] PlacesManag>
Feb 11 18:41:07 dellarch cinnamon[815]: cogl npot texture sizes SUPPORTED
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] loaded at M>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: Cinnamon started at Mon Feb 11 >
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] ExtensionSy>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] DeskletMana>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] SearchProvi>
Feb 11 18:41:07 dellarch /usr/lib/gdm-x-session[602]: openGL version 2.1 Mesa 1>
Feb 11 18:41:07 dellarch /usr/lib/gdm-x-session[602]: MetaSyncRing disabled: co>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Role locked>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Role locked>
Feb 11 18:41:07 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Role locked>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Loaded appl>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] AppletManag>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] Cinnamon to>
Feb 11 18:41:08 dellarch cinnamon[815]: JS LOG: Unknown network device type, is>
Feb 11 18:41:09 dellarch /usr/lib/gdm-x-session[602]: Cinnamon warning: Failed >
Feb 11 18:41:23 dellarch kernel: usb 2-1: new high-speed USB device number 3 us>
Feb 11 18:41:23 dellarch kernel: usb 2-1: New USB device found, idVendor=058f, >
Feb 11 18:41:23 dellarch kernel: usb 2-1: New USB device strings: Mfr=1, Produc>
Feb 11 18:41:23 dellarch kernel: usb 2-1: Product: Mass Storage
Feb 11 18:41:23 dellarch kernel: usb 2-1: Manufacturer: Generic
Feb 11 18:41:23 dellarch kernel: usb 2-1: SerialNumber: 01C11A6C
Feb 11 18:41:23 dellarch kernel: usb-storage 2-1:1.0: USB Mass Storage device d>
Feb 11 18:41:23 dellarch kernel: scsi host4: usb-storage 2-1:1.0
Feb 11 18:41:23 dellarch kernel: usbcore: registered new interface driver usb-s>
Feb 11 18:41:23 dellarch kernel: usbcore: registered new interface driver uas
Feb 11 18:41:24 dellarch kernel: scsi 4:0:0:0: Direct-Access     Generic  Flash>
Feb 11 18:41:24 dellarch kernel: sd 4:0:0:0: [sdb] 61440000 512-byte logical bl>
Feb 11 18:41:24 dellarch kernel: sd 4:0:0:0: [sdb] Write Protect is off
Feb 11 18:41:24 dellarch kernel: sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
Feb 11 18:41:24 dellarch kernel: sd 4:0:0:0: [sdb] Write cache: disabled, read >
Feb 11 18:41:24 dellarch kernel:  sdb: sdb1
Feb 11 18:41:24 dellarch kernel: sd 4:0:0:0: [sdb] Attached SCSI removable disk
Feb 11 18:41:25 dellarch udisksd[765]: Mounted /dev/sdb1 at /run/media/destry/3>
Feb 11 18:41:25 dellarch nemo[871]: Locale not supported by C library.
                                            Using the fallback 'C' locale.
Feb 11 18:41:25 dellarch nemo[871]: Failed to register client: GDBus.Error:org.>
Feb 11 18:41:25 dellarch nemo[871]: Current gtk theme is not known to have nemo>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: g_base64_encode_step: assertion 'in != NULL>
Feb 11 18:41:25 dellarch nemo[871]: The theme appears to have no nemo support. >
Feb 11 18:41:25 dellarch dbus-daemon[609]: [session uid=1000 pid=609] Activatin>
Feb 11 18:41:25 dellarch systemd[562]: Starting Virtual filesystem metadata ser>
Feb 11 18:41:25 dellarch dbus-daemon[609]: [session uid=1000 pid=609] Successfu>
Feb 11 18:41:25 dellarch systemd[562]: Started Virtual filesystem metadata serv>
Feb 11 18:41:28 dellarch cinnamon[815]: JS LOG: [LookingGlass/info] PlacesManag>
Feb 11 18:41:38 dellarch /usr/lib/gdm-x-session[602]: Cinnamon warning: Log lev>
lines 2773-2795/2795 (END)

Offline

#23 2019-02-11 18:55:23

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

For the future, try

sudo journalctl -b |  curl -F c=@- https://ptpb.pw

but did you notice that you've the very same drm_mode_getconnector issue as the other thread…?

Offline

#24 2019-02-11 19:58:53

Grenville
Member
Registered: 2018-09-24
Posts: 36

Re: [solved] A Question About Linux-lts

seth wrote:

For the future, try

sudo journalctl -b |  curl -F c=@- https://ptpb.pw

but did you notice that you've the very same drm_mode_getconnector issue as the other thread…?


Re: the drm_mode_getconnector issue. I have no idea what the significance would be, except it has something to do with the X Server, which is part of the framework for the desktop GUI. The packages I installed were xf86-input-libinput xorg-server xorg-xinit mesa. xorg-server-utils has been withdrawn. Is there anything I've missed?

Offline

#25 2019-02-11 20:07:16

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: [solved] A Question About Linux-lts

Did you actually bother to read the thread I linked before?

Offline

Board footer

Powered by FluxBB