Summary: | KWin crash | ||
---|---|---|---|
Product: | [Plasma] kwin | Reporter: | Samuel Suther <s.suther> |
Component: | general | Assignee: | KWin default assignee <kwin-bugs-null> |
Status: | RESOLVED WORKSFORME | ||
Severity: | crash | Keywords: | drkonqi |
Priority: | NOR | ||
Version: | 5.2.2 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Samuel Suther
2015-08-04 08:46:53 UTC
Crashes right in Qt (also several processes are affected) and looks a either a threading issue or general stack corruption: 1268 for (int j = i; j < eventqueue->size(); ++j) { 1269 xcb_generic_event_t *other = eventqueue->at(j); 1270 if (other && (other->response_type & ~0x80) == XCB_CONFIGURE_NOTIFY 1271 && ((xcb_configure_notify_event_t *)other)->event == (xcb_configure_notify_event_t *)event)->event) Could happen due to the ungrabbing when exiting the screen locker. Wild guesses: - does "cat /etc/hostname" say "localhost"? - does your system maybe run updates while the screensaver is active? - check /var/log/Xorg.0.log for errors - does it also happen if you configure no screen saver (ie. no fancy animations but just the monitor off and a login screen For me it is the intel GPU Driver i915. This workarround solve it for me: Open or create /etc/X11/xorg.conf : Section "Device" Identifier "Intel Graphics" Driver "intel" Option "AccelMethod" "uxa" EndSection |