Summary: | kwin crashed on login | ||
---|---|---|---|
Product: | [Plasma] kwin | Reporter: | Christopher Dancy <christoforever> |
Component: | scene-opengl | Assignee: | KWin default assignee <kwin-bugs-null> |
Status: | RESOLVED DOWNSTREAM | ||
Severity: | crash | CC: | abhijeet.linux, astrid.kristiaan, berner, bugs, bugzilla, cockerpuig, darthsteel, echo, Ekkehard.Blanz, frosetti80, hrvoje.senjan, ivannanospam-maybe, jakub77a, jbrav.hax, kde-bugs, leopin, lpetcu, mino05351, mmpsy, msoos, njsj.sp, rafaelmendonca, shadhk, suarezsebastianmartin, wim.mintiens |
Priority: | NOR | Keywords: | regression |
Version: | 4.10.0 | Flags: | mgraesslin:
Catalyst+
|
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
Asked info
New crash information added by DrKonqi New crash information added by DrKonqi New crash information added by DrKonqi New crash information added by DrKonqi |
Description
Christopher Dancy
2013-02-07 14:49:05 UTC
*** Bug 314194 has been marked as a duplicate of this bug. *** Question: does this only happen on the first attempt to run or all the time, ie. can you enable GL compositing at all? I don't have compositing enabled as my lenovo T500 goes wonky when I've attempted to do so in the past. Opening "Desktop Effects - System Settings" I'm greeted with the below message. It should be noted that after my system was upgraded to 4.10 I did 1 restart and everything was fine. Then I shutdown just before going to bed. When I powered back up again this morning that was the message I was presented with. I've since rebooted a few times (and shutdown as well) and the issue has not happened since. Possibly a 1-off config error that corrected itself? Desktop effects are not available on this system due to the following technical issues: ------------------------------ OpenGL compositing (the default) has crashed KWin in the past. This was most likely due to a driver bug. If you think that you have meanwhile upgraded to a stable driver, you can reset this protection but be aware that this might result in an immediate crash! Alternatively, you might want to use the XRender backend instead. On Thu, Feb 7, 2013 at 10:59 AM, Thomas Lübking <thomas.luebking@gmail.com>wrote: > https://bugs.kde.org/show_bug.cgi?id=314602 > > --- Comment #2 from Thomas Lübking <thomas.luebking@gmail.com> --- > Question: does this only happen on the first attempt to run or all the > time, > ie. can you enable GL compositing at all? > > -- > You are receiving this mail because: > You reported the bug. > Scratch that. fglrx is just broken. (see dupe) adding info from other bug report: and the reason for the regression: commit 950b8a63f7ba23c486b02c5a2c720b68275e4a97 Author: Martin Gräßlin <mgraesslin@kde.org> Date: Wed Oct 3 10:28:43 2012 +0200 Do not resolve glx functions specified in GLX 1.3 According to the OpenGL ABI for Linux GLX 1.3 is a minimum requirement. Therefore we do not need to resolve the symbols which are present in that version. KWin did always require at least 1.3, for all the resolved functions there were checks in the Scene, but they might have been incorrect. Instead now the GLX version is checked and OpenGL compositing is blocked if there is not at least GLX 1.3. REVIEW: 106704 diff --git a/kwin/glxbackend.cpp b/kwin/glxbackend.cpp index a9228f7..8b2360a 100644 --- a/kwin/glxbackend.cpp +++ b/kwin/glxbackend.cpp @@ -68,12 +68,10 @@ GlxBackend::~GlxBackend() void GlxBackend::init() { initGLX(); - // check for FBConfig support - if (!hasGLExtension("GLX_SGIX_fbconfig") || !glXGetFBConfigAttrib || !glXGetFBConfigs || - !glXGetVisualFromFBConfig || !glXCreatePixmap || !glXDestroyPixmap || - !glXCreateWindow || !glXDestroyWindow) { - setFailed("GLX_SGIX_fbconfig or required GLX functions missing"); - return; // error + // require at least GLX 1.3 + if (!hasGLXVersion(1, 3)) { + setFailed("Requires at least GLX 1.3"); + return; } if (!initDrawableConfigs()) { setFailed("Could not initialize the drawable configs"); so looks like the driver "supports" GLX 1.3 without providing the required function calls. Can someone apply a patch to test whether it still crashes? If yes I'm going to provide a patch to ensure that it doesn't crash, but I cannot test it here as I'm not on that driver. It will not allow to enable OpenGL, but will at least not crash. I will not revert the commit listed above as it's not our bug. I did some research again and found: > 3.4. The libraries must export all OpenGL 1.2, GLU 1.3, GLX 1.3, and ARB_multitexture entry points statically. [1] and the following function definition in GLX 1.3 specification [2] > GLXFBConfig *glXGetFBConfigs(Display *dpy, int screen, int *nelements); and for the reference the line that crashes in KWin [3] int cnt; GLXFBConfig *fbconfigs = glXGetFBConfigs(display(), DefaultScreen(display()), &cnt); as we can see, it's correct: Display* as first param, int as second and int* as third. [1] http://www.opengl.org/registry/ABI/ [2] http://www.opengl.org/registry/doc/glx1.3.pdf , Chapter 3.3.3 Configuration Management, page 16 of internal page numbering [3] http://quickgit.kde.org/?p=kde-workspace.git&a=blob&h=be1149780c42b331af9b0ebb3a05c26345dd0cec&hb=30802f8bcd2651a7afec2eef87fea6e5097ad1a8&f=kwin%2Fglxbackend.cpp line 323 This is weird ! I switched back to open source drivers then again back to the catalyst-legacy. Somehow, kwin hasn't crashed yet. . . Could be downstream bug about installing libGL - did you reboot after altering the dirver? @ Thomas Lübking, I didn't do anything special and yeah i restarted a couple of times. Works fine. @Christopher please ensure this is not a downstream error (broken update process) @omeringen please attach new "qdbus org.kde.kwin /KWin supportInformation" and glxinfo qdbus : http://pastie.org/6097224 glxinfo : http://pastie.org/6097227 Ok, thanks - same output (for glxinfo) @Christopher do ldd `which glxinfo` | grep GL and ldd `which kwin` | grep GL do they point the same libGL.so.1? It's gone again and crashing everytime i click on "Re-enable OpenGL detection". I was checking some options at "general" settings of Desktop Effects. And there is still no debug symbols on arch. Nothing effectively changed, pot. your driver swapping wasn't complete, old libGL still loaded. do readelf -sw /usr/lib/libGL.so | grep glXGetFBConfigs if the symbol is not there, fglrx is simply broken. Whether we should re-work around this needed to be discussed on the mailing list, not in a bug report. Hi, I'm using ArchLinux, KDE 4.10, Catalyst 13.1 legacy drivers and Xorg-server 1.12 . I don't experience any crashes, but Blur and shadow effects for panel are broken. glxinfo : http://paste.kde.org/668180/ qdbus org.kde.kwin /KWin supportInformation : http://paste.kde.org/668192/ ldd `which glxinfo` | grep GL : http://paste.kde.org/668198/ ldd `which kwin` | grep GL : http://paste.kde.org/668204/ readelf -sw /usr/lib/libGL.so | grep glXGetFBConfigs : http://paste.kde.org/668210/ Just to complete my report, I've pasted a few screenshots of different desktop themes and how panel looks like here : http://img.im/a/bfd3e9 As you can see, Air desktop theme is almost broken and opaque. And other themes have blur and transparency but they miss shadows. I also have tested and switched to the open source drivers and everything looks fine there. (In reply to comment #16) > Hi, I'm using ArchLinux, KDE 4.10, Catalyst 13.1 legacy drivers and > Xorg-server 1.12 . I don't experience any crashes, but Blur and shadow > effects for panel are broken. PLEASE do not do that - i just wondered 5 minutes about the problem. You do not experience the same issue the least, so please (prettyplease with sugar on top) do not hook onto other bugs. You encounter bug #179042 It's a problem in Qt stealing the compositing signals. Workaround here: https://git.reviewboard.kde.org/r/107983/ (In reply to comment #18) > (In reply to comment #16) > > Hi, I'm using ArchLinux, KDE 4.10, Catalyst 13.1 legacy drivers and > > Xorg-server 1.12 . I don't experience any crashes, but Blur and shadow > > effects for panel are broken. > > PLEASE do not do that - i just wondered 5 minutes about the problem. > You do not experience the same issue the least, so please (prettyplease with > sugar on top) do not hook onto other bugs. > > You encounter bug #179042 > It's a problem in Qt stealing the compositing signals. > Workaround here: https://git.reviewboard.kde.org/r/107983/ Sorry about that, and thanks for help. So I guess I should wait till Qt 4.8.5 or KDE 4.11 gets released. Still something makes me wonder is that why guys using main line Catalyst drivers or open source Radeon drivers don't experience similar issue, regardless of Qt (4.8.4) or KDE (4.10) version. (In reply to comment #19) > Still something makes me wonder is that why guys using main line Catalyst > drivers or open source Radeon drivers don't experience similar issue, > regardless of Qt (4.8.4) or KDE (4.10) version. This is largely about timing (when compositing is up in the right moment, plasma will notice that - an event is not required) and probably also got more prominent now as kwin starts threaded. The first command gives me "ldd: missing file arguments". The second gives me the following: libEGL.so.1 => /usr/lib/x86_64-linux-gnu/mesa-egl/libEGL.so.1 (0x00007f05285ff000) libGL.so.1 => /usr/lib/fglrx/libGL.so.1 (0x00007f05281cd000) libQtOpenGL.so.4 => /usr/lib/x86_64-linux-gnu/libQtOpenGL.so.4 (0x00007f0521cde000) On Fri, Feb 8, 2013 at 2:10 PM, Thomas Lübking <thomas.luebking@gmail.com>wrote: > https://bugs.kde.org/show_bug.cgi?id=314602 > > --- Comment #13 from Thomas Lübking <thomas.luebking@gmail.com> --- > Ok, thanks - same output (for glxinfo) > > @Christopher > do > ldd `which glxinfo` | grep GL > and > ldd `which kwin` | grep GL > > do they point the same libGL.so.1? > > -- > You are receiving this mail because: > You reported the bug. > (In reply to comment #15) > Nothing effectively changed, pot. your driver swapping wasn't complete, old > libGL still loaded. > > do > readelf -sw /usr/lib/libGL.so | grep glXGetFBConfigs > > if the symbol is not there, fglrx is simply broken. Whether we should > re-work around this needed to be discussed on the mailing list, not in a bug > report. 1785: 00000000000375c0 280 FUNC GLOBAL DEFAULT 10 glXGetFBConfigs Ok, so the symbol is there and exported. Does one of you know valgrind? Created attachment 77092 [details]
Asked info
Maybe not a useful comment, but *when* i am using fglrx legacy (and then i am using it at version 12.6), i have neither seen this crash, nor seen any compositing/or specific effect issue this bug report is about during whole 4.10 release cycle and beyond.
Also did not experience this with a clean/new user config.
Sorry if that's not helpful/or if spamming, just wanted to write if maybe there is some other issue going on (not KWin or driver related).
(In reply to comment #24) > Created attachment 77092 [details] > Asked info > > Maybe not a useful comment, but *when* i am using fglrx legacy (and then i > am using it at version 12.6), i have neither seen this crash, nor seen any > compositing/or specific effect issue this bug report is about during whole > 4.10 release cycle and beyond. > Also did not experience this with a clean/new user config. > > Sorry if that's not helpful/or if spamming, just wanted to write if maybe > there is some other issue going on (not KWin or driver related). Nope, it's still there after reverting back to Catalyst 12.6 legacy driver. No, not spam - pot. pointing a pattern and also the first user to provide the information the correct way ;-) -> I do understand that the legacy fglrx driver *does* work for you also on 4.10 Also i can see that you, omeringen & Siavash all use the same driver version. You got a Mobility Radeon HD 3650 Siavash has a Radeon HD 4800 and omeringen has a Radeon HD 2400 PRO ... @Christopher: what GPU is yours in particular? @Siavash Despite i'm now really thankful (and mabe even more later) for the information you provided, please understand that this here has *nothing* to do with what you experience. That effect is fully understood, the "random" behavior depending on the system is in the cards. output of "lshw -C display": *-display description: VGA compatible controller product: RV635 [Mobility Radeon HD 3650] vendor: Hynix Semiconductor (Hyundai Electronics) physical id: 0 bus info: pci@0000:01:00.0 version: 00 width: 32 bits clock: 33MHz capabilities: pm pciexpress msi vga_controller bus_master cap_list rom configuration: driver=fglrx_pci latency=0 resources: irq:16 memory:c0000000-cfffffff ioport:2000(size=256) memory:bfff0000-bfffffff memory:bff00000-bff1ffff *-display description: Display controller product: Mobile 4 Series Chipset Integrated Graphics Controller vendor: Intel Corporation physical id: 2 bus info: pci@0000:00:02.0 version: 07 width: 64 bits clock: 33MHz capabilities: msi pm bus_master cap_list rom configuration: driver=i915 latency=0 resources: irq:48 memory:f4400000-f47fffff memory:d0000000-dfffffff ioport:1800(size=8) On Sun, Feb 10, 2013 at 12:57 PM, Thomas Lübking <thomas.luebking@gmail.com>wrote: > https://bugs.kde.org/show_bug.cgi?id=314602 > > --- Comment #26 from Thomas Lübking <thomas.luebking@gmail.com> --- > No, not spam - pot. pointing a pattern and also the first user to provide > the > information the correct way ;-) > > -> I do understand that the legacy fglrx driver *does* work for you also on > 4.10 > Also i can see that you, omeringen & Siavash all use the same driver > version. > > You got a Mobility Radeon HD 3650 > Siavash has a Radeon HD 4800 > and omeringen has a Radeon HD 2400 PRO > > ... > > @Christopher: > what GPU is yours in particular? > > -- > You are receiving this mail because: > You reported the bug. > meh. maybe older driver version? -> "glxinfo"? output of "glxinfo": name of display: :0 X Error of failed request: BadRequest (invalid request code or no such operation) Major opcode of failed request: 154 (GLX) Minor opcode of failed request: 19 (X_GLXQueryServerString) Serial number of failed request: 12 Current serial number in output stream: 12 On Sun, Feb 10, 2013 at 3:54 PM, Thomas Lübking <thomas.luebking@gmail.com>wrote: > https://bugs.kde.org/show_bug.cgi?id=314602 > > --- Comment #29 from Thomas Lübking <thomas.luebking@gmail.com> --- > meh. maybe older driver version? > -> "glxinfo"? > > -- > You are receiving this mail because: > You reported the bug. > (In reply to comment #30) > X Error of failed request: BadRequest (invalid request code or no such > operation) > Major opcode of failed request: 154 (GLX) No GLX -> severely broken GL setup. attach the output of LIBGL_DEBUG=verbose glxinfo (if it has more than the above) and also /var/log/Xorg.0.log output of "LIBGL_DEBUG=verbose glxinfo" is same as above. Upon fresh reboot the output of "/var/log/Xorg.0.log" is as follows: [ 22.314] X.Org X Server 1.11.3 Release Date: 2011-12-16 [ 22.314] X Protocol Version 11, Revision 0 [ 22.314] Build Operating System: Linux 2.6.42-34-generic x86_64 Ubuntu [ 22.314] Current Operating System: Linux dancc-kubuntu1204 3.2.0-37-generic #58-Ubuntu SMP Thu Jan 24 15:28:10 UTC 2013 x86_64 [ 22.314] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-37-generic root=UUID=88143f69-65df-4d4e-b54f-7ab789a1ca4e ro quiet splash vt.handoff=7 [ 22.314] Build Date: 17 January 2013 06:14:10AM [ 22.314] xorg-server 2:1.11.4-0ubuntu10.11 (For technical support please see http://www.ubuntu.com/support) [ 22.314] Current version of pixman: 0.24.4 [ 22.314] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 22.314] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 22.314] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 10 16:36:43 2013 [ 22.315] (==) Using config file: "/etc/X11/xorg.conf" [ 22.315] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 22.315] (==) No Layout section. Using the first Screen section. [ 22.315] (**) |-->Screen "Default Screen" (0) [ 22.315] (**) | |-->Monitor "<default monitor>" [ 22.315] (==) No monitor specified for screen "Default Screen". Using a default monitor configuration. [ 22.315] (==) Automatically adding devices [ 22.315] (==) Automatically enabling devices [ 22.315] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist. [ 22.315] Entry deleted from font path. [ 22.315] (==) FontPath set to: /usr/share/fonts/X11/misc, /usr/share/fonts/X11/Type1, built-ins [ 22.315] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules" [ 22.315] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 22.315] (II) Loader magic: 0x7f5135bd6b00 [ 22.315] (II) Module ABI versions: [ 22.315] X.Org ANSI C Emulation: 0.4 [ 22.315] X.Org Video Driver: 11.0 [ 22.315] X.Org XInput driver : 16.0 [ 22.315] X.Org Server Extension : 6.0 [ 22.316] (--) PCI:*(0:0:2:0) 8086:2a42:17aa:2115 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8 [ 22.316] (--) PCI: (0:1:0:0) 1002:9591:17aa:2116 rev 0, Mem @ 0xc0000000/268435456, 0xbfff0000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072 [ 22.316] (II) Open ACPI successful (/var/run/acpid.socket) [ 22.316] (II) "extmod" will be loaded by default. [ 22.316] (II) "dbe" will be loaded by default. [ 22.316] (II) "glx" will be loaded. This was enabled by default and also specified in the config file. [ 22.316] (II) "record" will be loaded by default. [ 22.316] (II) "dri" will be loaded by default. [ 22.316] (II) "dri2" will be loaded by default. [ 22.317] (II) LoadModule: "glx" [ 22.330] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/extensions/libglx.so [ 22.331] (II) Module glx: vendor="Advanced Micro Devices, Inc." [ 22.331] compiled for 6.9.0, module version = 1.0.0 [ 22.331] (II) Loading extension GLX [ 22.331] (II) LoadModule: "extmod" [ 22.350] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so [ 22.350] (II) Module extmod: vendor="X.Org Foundation" [ 22.350] compiled for 1.11.3, module version = 1.0.0 [ 22.350] Module class: X.Org Server Extension [ 22.350] ABI class: X.Org Server Extension, version 6.0 [ 22.350] (II) Loading extension MIT-SCREEN-SAVER [ 22.350] (II) Loading extension XFree86-VidModeExtension [ 22.350] (II) Loading extension XFree86-DGA [ 22.350] (II) Loading extension DPMS [ 22.350] (II) Loading extension XVideo [ 22.350] (II) Loading extension XVideo-MotionCompensation [ 22.350] (II) Loading extension X-Resource [ 22.350] (II) LoadModule: "dbe" [ 22.350] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so [ 22.350] (II) Module dbe: vendor="X.Org Foundation" [ 22.350] compiled for 1.11.3, module version = 1.0.0 [ 22.350] Module class: X.Org Server Extension [ 22.350] ABI class: X.Org Server Extension, version 6.0 [ 22.350] (II) Loading extension DOUBLE-BUFFER [ 22.350] (II) LoadModule: "record" [ 22.351] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so [ 22.351] (II) Module record: vendor="X.Org Foundation" [ 22.351] compiled for 1.11.3, module version = 1.13.0 [ 22.351] Module class: X.Org Server Extension [ 22.351] ABI class: X.Org Server Extension, version 6.0 [ 22.351] (II) Loading extension RECORD [ 22.351] (II) LoadModule: "dri" [ 22.351] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so [ 22.351] (II) Module dri: vendor="X.Org Foundation" [ 22.351] compiled for 1.11.3, module version = 1.0.0 [ 22.351] ABI class: X.Org Server Extension, version 6.0 [ 22.351] (II) Loading extension XFree86-DRI [ 22.351] (II) LoadModule: "dri2" [ 22.351] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so [ 22.351] (II) Module dri2: vendor="X.Org Foundation" [ 22.351] compiled for 1.11.3, module version = 1.2.0 [ 22.351] ABI class: X.Org Server Extension, version 6.0 [ 22.351] (II) Loading extension DRI2 [ 22.351] (==) Matched intel as autoconfigured driver 0 [ 22.351] (==) Matched vesa as autoconfigured driver 1 [ 22.351] (==) Matched fbdev as autoconfigured driver 2 [ 22.351] (==) Assigned the driver to the xf86ConfigLayout [ 22.351] (II) LoadModule: "intel" [ 22.352] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so [ 22.352] (II) Module intel: vendor="X.Org Foundation" [ 22.352] compiled for 1.11.3, module version = 2.17.0 [ 22.352] Module class: X.Org Video Driver [ 22.352] ABI class: X.Org Video Driver, version 11.0 [ 22.352] (II) LoadModule: "vesa" [ 22.352] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so [ 22.352] (II) Module vesa: vendor="X.Org Foundation" [ 22.352] compiled for 1.11.3, module version = 2.3.0 [ 22.352] Module class: X.Org Video Driver [ 22.352] ABI class: X.Org Video Driver, version 11.0 [ 22.352] (II) LoadModule: "fbdev" [ 22.352] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so [ 22.352] (II) Module fbdev: vendor="X.Org Foundation" [ 22.352] compiled for 1.11.3, module version = 0.4.2 [ 22.352] ABI class: X.Org Video Driver, version 11.0 [ 22.352] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale, Sandybridge Desktop (GT1), Sandybridge Desktop (GT2), Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1), Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+), Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2), Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server, Ivybridge Server (GT2) [ 22.353] (II) VESA: driver for VESA chipsets: vesa [ 22.353] (II) FBDEV: driver for framebuffer: fbdev [ 22.353] (++) using VT number 8 [ 22.358] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so [ 22.358] (WW) Falling back to old probe method for vesa [ 22.358] (WW) Falling back to old probe method for fbdev [ 22.358] (II) Loading sub module "fbdevhw" [ 22.358] (II) LoadModule: "fbdevhw" [ 22.358] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so [ 22.358] (II) Module fbdevhw: vendor="X.Org Foundation" [ 22.358] compiled for 1.11.3, module version = 0.0.2 [ 22.358] ABI class: X.Org Video Driver, version 11.0 [ 22.358] drmOpenDevice: node name is /dev/dri/card0 [ 22.358] drmOpenDevice: open result is 9, (OK) [ 22.358] drmOpenByBusid: Searching for BusID pci:0000:00:02.0 [ 22.358] drmOpenDevice: node name is /dev/dri/card0 [ 22.358] drmOpenDevice: open result is 9, (OK) [ 22.358] drmOpenByBusid: drmOpenMinor returns 9 [ 22.358] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 [ 22.358] (II) intel(0): Creating default Display subsection in Screen section "Default Screen" for depth/fbbpp 24/32 [ 22.358] (**) intel(0): Depth 24, (--) framebuffer bpp 32 [ 22.358] (==) intel(0): RGB weight 888 [ 22.358] (==) intel(0): Default visual is TrueColor [ 22.358] (II) intel(0): Integrated Graphics Chipset: Intel(R) GM45 [ 22.358] (--) intel(0): Chipset: "GM45" [ 22.359] (**) intel(0): Relaxed fencing enabled [ 22.359] (**) intel(0): Wait on SwapBuffers? enabled [ 22.359] (**) intel(0): Triple buffering? enabled [ 22.359] (**) intel(0): Framebuffer tiled [ 22.359] (**) intel(0): Pixmaps tiled [ 22.359] (**) intel(0): 3D buffers tiled [ 22.359] (**) intel(0): SwapBuffers wait enabled [ 22.359] (==) intel(0): video overlay key set to 0x101fe [ 22.359] (II) intel(0): Output LVDS1 has no monitor section [ 22.359] (II) intel(0): found backlight control interface /sys/class/backlight/acpi_video1 [ 22.380] (II) intel(0): Output VGA1 has no monitor section [ 22.428] (II) intel(0): Output DP1 has no monitor section [ 22.428] (II) intel(0): EDID for output LVDS1 [ 22.428] (II) intel(0): Manufacturer: LEN Model: 4053 Serial#: 0 [ 22.428] (II) intel(0): Year: 2007 Week: 0 [ 22.428] (II) intel(0): EDID Version: 1.3 [ 22.428] (II) intel(0): Digital Display Input [ 22.428] (II) intel(0): Max Image Size [cm]: horiz.: 33 vert.: 21 [ 22.428] (II) intel(0): Gamma: 2.20 [ 22.428] (II) intel(0): DPMS capabilities: StandBy Suspend Off [ 22.428] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 22.428] (II) intel(0): First detailed timing is preferred mode [ 22.428] (II) intel(0): redX: 0.569 redY: 0.332 greenX: 0.312 greenY: 0.544 [ 22.428] (II) intel(0): blueX: 0.149 blueY: 0.132 whiteX: 0.313 whiteY: 0.329 [ 22.428] (II) intel(0): Manufacturer's mask: 0 [ 22.428] (II) intel(0): Supported detailed timing: [ 22.428] (II) intel(0): clock: 122.0 MHz Image Size: 331 x 207 mm [ 22.428] (II) intel(0): h_active: 1680 h_sync: 1712 h_sync_end 1776 h_blank_end 1904 h_border: 0 [ 22.428] (II) intel(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1066 v_border: 0 [ 22.428] (II) intel(0): Supported detailed timing: [ 22.428] (II) intel(0): clock: 101.7 MHz Image Size: 331 x 207 mm [ 22.428] (II) intel(0): h_active: 1680 h_sync: 1712 h_sync_end 1776 h_blank_end 1904 h_border: 0 [ 22.428] (II) intel(0): v_active: 1050 v_sync: 1051 v_sync_end 1054 v_blanking: 1066 v_border: 0 [ 22.428] (II) intel(0): Unknown vendor-specific block f [ 22.428] (II) intel(0): LTN154P3-L02 [ 22.428] (II) intel(0): EDID (in hex): [ 22.428] (II) intel(0): 00ffffffffffff0030ae534000000000 [ 22.428] (II) intel(0): 0011010380211578eacd7591554f8b26 [ 22.428] (II) intel(0): 21505400000001010101010101010101 [ 22.428] (II) intel(0): 010101010101a82f90e0601a10402040 [ 22.428] (II) intel(0): 13004bcf10000019b72790e0601a1040 [ 22.428] (II) intel(0): 204013004bcf100000190000000f00b3 [ 22.428] (II) intel(0): 0a32b30a281401004ca35033000000fe [ 22.428] (II) intel(0): 004c544e31353450332d4c30320a007e [ 22.428] (II) intel(0): EDID vendor "LEN", prod id 16467 [ 22.428] (II) intel(0): Printing DDC gathered Modelines: [ 22.428] (II) intel(0): Modeline "1680x1050"x0.0 122.00 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (64.1 kHz) [ 22.428] (II) intel(0): Modeline "1680x1050"x0.0 101.67 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (53.4 kHz) [ 22.428] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "576x432" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "680x384" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "720x450" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "800x512" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "840x525" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "960x540" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "960x600" (doublescan mode not supported) [ 22.428] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported) [ 22.428] (II) intel(0): Printing probed modes for output LVDS1 [ 22.428] (II) intel(0): Modeline "1680x1050"x60.1 122.00 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (64.1 kHz) [ 22.428] (II) intel(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz) [ 22.428] (II) intel(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz) [ 22.428] (II) intel(0): Modeline "1680x1050"x50.1 101.67 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (53.4 kHz) [ 22.428] (II) intel(0): Modeline "1600x1024"x60.2 103.12 1600 1600 1656 1664 1024 1024 1029 1030 +hsync +vsync (62.0 kHz) [ 22.428] (II) intel(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz) [ 22.428] (II) intel(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) [ 22.428] (II) intel(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz) [ 22.428] (II) intel(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz) [ 22.428] (II) intel(0): Modeline "1360x768"x59.8 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync (47.7 kHz) [ 22.428] (II) intel(0): Modeline "1360x768"x60.0 72.00 1360 1408 1440 1520 768 771 781 790 +hsync -vsync (47.4 kHz) [ 22.428] (II) intel(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz) [ 22.428] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) [ 22.428] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) [ 22.428] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) [ 22.428] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) [ 22.444] (II) intel(0): EDID for output VGA1 [ 22.492] (II) intel(0): EDID for output DP1 [ 22.492] (II) intel(0): Output LVDS1 connected [ 22.492] (II) intel(0): Output VGA1 disconnected [ 22.492] (II) intel(0): Output DP1 disconnected [ 22.492] (II) intel(0): Using exact sizes for initial modes [ 22.492] (II) intel(0): Output LVDS1 using initial mode 1680x1050 [ 22.492] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. [ 22.492] (II) intel(0): Kernel page flipping support detected, enabling [ 22.492] (**) intel(0): Display dimensions: (330, 210) mm [ 22.492] (**) intel(0): DPI set to (129, 127) [ 22.492] (II) Loading sub module "fb" [ 22.492] (II) LoadModule: "fb" [ 22.492] (II) Loading /usr/lib/xorg/modules/libfb.so [ 22.492] (II) Module fb: vendor="X.Org Foundation" [ 22.492] compiled for 1.11.3, module version = 1.0.0 [ 22.492] ABI class: X.Org ANSI C Emulation, version 0.4 [ 22.492] (II) Loading sub module "dri2" [ 22.492] (II) LoadModule: "dri2" [ 22.492] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so [ 22.492] (II) Module dri2: vendor="X.Org Foundation" [ 22.492] compiled for 1.11.3, module version = 1.2.0 [ 22.492] ABI class: X.Org Server Extension, version 6.0 [ 22.492] (II) UnloadModule: "vesa" [ 22.492] (II) Unloading vesa [ 22.492] (II) UnloadModule: "fbdev" [ 22.492] (II) Unloading fbdev [ 22.492] (II) UnloadModule: "fbdevhw" [ 22.492] (II) Unloading fbdevhw [ 22.492] (==) Depth 24 pixmap format is 32 bpp [ 22.492] (II) intel(0): [DRI2] Setup complete [ 22.492] (II) intel(0): [DRI2] DRI driver: i965 [ 22.493] (II) intel(0): Allocated new frame buffer 1728x1050 stride 7168, tiled [ 22.505] (II) UXA(0): Driver registered support for the following operations: [ 22.505] (II) solid [ 22.505] (II) copy [ 22.505] (II) composite (RENDER acceleration) [ 22.505] (II) put_image [ 22.505] (II) get_image [ 22.505] (==) intel(0): Backing store disabled [ 22.505] (==) intel(0): Silken mouse enabled [ 22.505] (II) intel(0): Initializing HW Cursor [ 22.524] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. [ 22.526] (==) intel(0): DPMS enabled [ 22.526] (==) intel(0): Intel XvMC decoder enabled [ 22.526] (II) intel(0): Set up textured video [ 22.526] (II) intel(0): [XvMC] xvmc_vld driver initialized. [ 22.526] (II) intel(0): direct rendering: DRI2 Enabled [ 22.527] (==) intel(0): hotplug detection: "enabled" [ 22.527] (--) RandR disabled [ 22.527] (II) Initializing built-in extension Generic Event Extension [ 22.527] (II) Initializing built-in extension SHAPE [ 22.527] (II) Initializing built-in extension MIT-SHM [ 22.527] (II) Initializing built-in extension XInputExtension [ 22.527] (II) Initializing built-in extension XTEST [ 22.527] (II) Initializing built-in extension BIG-REQUESTS [ 22.527] (II) Initializing built-in extension SYNC [ 22.527] (II) Initializing built-in extension XKEYBOARD [ 22.527] (II) Initializing built-in extension XC-MISC [ 22.527] (II) Initializing built-in extension SECURITY [ 22.527] (II) Initializing built-in extension XINERAMA [ 22.527] (II) Initializing built-in extension XFIXES [ 22.527] (II) Initializing built-in extension RENDER [ 22.527] (II) Initializing built-in extension RANDR [ 22.527] (II) Initializing built-in extension COMPOSITE [ 22.527] (II) Initializing built-in extension DAMAGE [ 22.531] (EE) GLX error: Can not get required symbols. [ 22.531] (II) intel(0): Setting screen physical size to 444 x 277 [ 22.542] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm [ 22.547] (II) config/udev: Adding input device Power Button (/dev/input/event2) [ 22.547] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 22.547] (II) LoadModule: "evdev" [ 22.547] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.547] (II) Module evdev: vendor="X.Org Foundation" [ 22.547] compiled for 1.11.3, module version = 2.7.0 [ 22.547] Module class: X.Org XInput Driver [ 22.547] ABI class: X.Org XInput driver, version 16.0 [ 22.547] (II) Using input driver 'evdev' for 'Power Button' [ 22.547] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.547] (**) Power Button: always reports core events [ 22.547] (**) evdev: Power Button: Device: "/dev/input/event2" [ 22.547] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 22.547] (--) evdev: Power Button: Found keys [ 22.547] (II) evdev: Power Button: Configuring as keyboard [ 22.547] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2" [ 22.548] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 22.548] (**) Option "xkb_rules" "evdev" [ 22.548] (**) Option "xkb_model" "pc105" [ 22.548] (**) Option "xkb_layout" "us" [ 22.548] (II) config/udev: Adding input device Video Bus (/dev/input/event4) [ 22.548] (**) Video Bus: Applying InputClass "evdev keyboard catchall" [ 22.548] (II) Using input driver 'evdev' for 'Video Bus' [ 22.548] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.548] (**) Video Bus: always reports core events [ 22.548] (**) evdev: Video Bus: Device: "/dev/input/event4" [ 22.548] (--) evdev: Video Bus: Vendor 0 Product 0x6 [ 22.548] (--) evdev: Video Bus: Found keys [ 22.548] (II) evdev: Video Bus: Configuring as keyboard [ 22.548] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input4/event4" [ 22.548] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7) [ 22.548] (**) Option "xkb_rules" "evdev" [ 22.548] (**) Option "xkb_model" "pc105" [ 22.548] (**) Option "xkb_layout" "us" [ 22.549] (II) config/udev: Adding input device Video Bus (/dev/input/event5) [ 22.549] (**) Video Bus: Applying InputClass "evdev keyboard catchall" [ 22.549] (II) Using input driver 'evdev' for 'Video Bus' [ 22.549] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.549] (**) Video Bus: always reports core events [ 22.549] (**) evdev: Video Bus: Device: "/dev/input/event5" [ 22.549] (--) evdev: Video Bus: Vendor 0 Product 0x6 [ 22.549] (--) evdev: Video Bus: Found keys [ 22.549] (II) evdev: Video Bus: Configuring as keyboard [ 22.549] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:07/LNXVIDEO:01/input/input5/event5" [ 22.549] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8) [ 22.549] (**) Option "xkb_rules" "evdev" [ 22.549] (**) Option "xkb_model" "pc105" [ 22.549] (**) Option "xkb_layout" "us" [ 22.549] (II) config/udev: Adding input device Lid Switch (/dev/input/event0) [ 22.549] (II) No input driver specified, ignoring this device. [ 22.549] (II) This device may have been added with another device file. [ 22.549] (II) config/udev: Adding input device Sleep Button (/dev/input/event1) [ 22.549] (**) Sleep Button: Applying InputClass "evdev keyboard catchall" [ 22.549] (II) Using input driver 'evdev' for 'Sleep Button' [ 22.549] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.549] (**) Sleep Button: always reports core events [ 22.549] (**) evdev: Sleep Button: Device: "/dev/input/event1" [ 22.549] (--) evdev: Sleep Button: Vendor 0 Product 0x3 [ 22.549] (--) evdev: Sleep Button: Found keys [ 22.549] (II) evdev: Sleep Button: Configuring as keyboard [ 22.549] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1" [ 22.549] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9) [ 22.549] (**) Option "xkb_rules" "evdev" [ 22.549] (**) Option "xkb_model" "pc105" [ 22.549] (**) Option "xkb_layout" "us" [ 22.550] (II) config/udev: Adding input device UVC Camera (17ef:4807) (/dev/input/event6) [ 22.550] (**) UVC Camera (17ef:4807): Applying InputClass "evdev keyboard catchall" [ 22.550] (II) Using input driver 'evdev' for 'UVC Camera (17ef:4807)' [ 22.550] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.550] (**) UVC Camera (17ef:4807): always reports core events [ 22.550] (**) evdev: UVC Camera (17ef:4807): Device: "/dev/input/event6" [ 22.550] (--) evdev: UVC Camera (17ef:4807): Vendor 0x17ef Product 0x4807 [ 22.550] (--) evdev: UVC Camera (17ef:4807): Found keys [ 22.550] (II) evdev: UVC Camera (17ef:4807): Configuring as keyboard [ 22.550] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.7/usb1/1-6/1-6:1.0/input/input6/event6" [ 22.550] (II) XINPUT: Adding extended input device "UVC Camera (17ef:4807)" (type: KEYBOARD, id 10) [ 22.550] (**) Option "xkb_rules" "evdev" [ 22.550] (**) Option "xkb_model" "pc105" [ 22.550] (**) Option "xkb_layout" "us" [ 22.550] (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10) [ 22.550] (II) No input driver specified, ignoring this device. [ 22.550] (II) This device may have been added with another device file. [ 22.551] (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event11) [ 22.551] (II) No input driver specified, ignoring this device. [ 22.551] (II) This device may have been added with another device file. [ 22.551] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event8) [ 22.551] (II) No input driver specified, ignoring this device. [ 22.551] (II) This device may have been added with another device file. [ 22.551] (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event9) [ 22.551] (II) No input driver specified, ignoring this device. [ 22.551] (II) This device may have been added with another device file. [ 22.551] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3) [ 22.551] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall" [ 22.551] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard' [ 22.551] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.551] (**) AT Translated Set 2 keyboard: always reports core events [ 22.551] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event3" [ 22.551] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1 [ 22.551] (--) evdev: AT Translated Set 2 keyboard: Found keys [ 22.551] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard [ 22.551] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3" [ 22.551] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11) [ 22.551] (**) Option "xkb_rules" "evdev" [ 22.551] (**) Option "xkb_model" "pc105" [ 22.551] (**) Option "xkb_layout" "us" [ 22.556] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12) [ 22.556] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall" [ 22.556] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall" [ 22.556] (II) LoadModule: "synaptics" [ 22.556] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so [ 22.556] (II) Module synaptics: vendor="X.Org Foundation" [ 22.556] compiled for 1.11.3, module version = 1.6.2 [ 22.557] Module class: X.Org XInput Driver [ 22.557] ABI class: X.Org XInput driver, version 16.0 [ 22.557] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad' [ 22.557] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so [ 22.557] (**) SynPS/2 Synaptics TouchPad: always reports core events [ 22.557] (**) Option "Device" "/dev/input/event12" [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5598 [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4670 [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255 [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15 [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7 [ 22.632] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found [ 22.632] (**) SynPS/2 Synaptics TouchPad: always reports core events [ 22.668] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input12/event12" [ 22.668] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12) [ 22.668] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5 [ 22.668] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75 [ 22.668] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.038 [ 22.668] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1 [ 22.668] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1 [ 22.668] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000 [ 22.668] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4 [ 22.668] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found [ 22.668] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0) [ 22.668] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates" [ 22.670] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event7) [ 22.670] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall" [ 22.670] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons' [ 22.670] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 22.670] (**) ThinkPad Extra Buttons: always reports core events [ 22.670] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event7" [ 22.670] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054 [ 22.670] (--) evdev: ThinkPad Extra Buttons: Found keys [ 22.670] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard [ 22.670] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input7/event7" [ 22.670] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13) [ 22.670] (**) Option "xkb_rules" "evdev" [ 22.670] (**) Option "xkb_model" "pc105" [ 22.670] (**) Option "xkb_layout" "us" [ 28.109] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1) [ 28.109] (II) No input driver specified, ignoring this device. [ 28.109] (II) This device may have been added with another device file. [ 28.109] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event13) [ 28.109] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall" [ 28.109] (**) TPPS/2 IBM TrackPoint: Applying InputClass "trackpoint catchall" [ 28.109] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint' [ 28.109] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 28.109] (**) TPPS/2 IBM TrackPoint: always reports core events [ 28.109] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event13" [ 28.109] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa [ 28.109] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons [ 28.109] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes [ 28.109] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes [ 28.109] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse [ 28.109] (**) Option "Emulate3Buttons" "true" [ 28.109] (**) Option "EmulateWheel" "true" [ 28.109] (**) Option "EmulateWheelButton" "2" [ 28.109] (**) Option "YAxisMapping" "4 5" [ 28.109] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5 [ 28.109] (**) Option "XAxisMapping" "6 7" [ 28.109] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7 [ 28.109] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 28.109] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event13" [ 28.109] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14) [ 28.109] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes. [ 28.109] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1 [ 28.109] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0 [ 28.109] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000 [ 28.109] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4 [ 37.826] (II) intel(0): EDID vendor "LEN", prod id 16467 [ 37.826] (II) intel(0): Printing DDC gathered Modelines: [ 37.826] (II) intel(0): Modeline "1680x1050"x0.0 122.00 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (64.1 kHz) [ 37.826] (II) intel(0): Modeline "1680x1050"x0.0 101.67 1680 1712 1776 1904 1050 1051 1054 1066 -hsync -vsync (53.4 kHz) On Sun, Feb 10, 2013 at 4:21 PM, Thomas Lübking <thomas.luebking@gmail.com>wrote: > https://bugs.kde.org/show_bug.cgi?id=314602 > > --- Comment #31 from Thomas Lübking <thomas.luebking@gmail.com> --- > (In reply to comment #30) > > X Error of failed request: BadRequest (invalid request code or no such > > operation) > > Major opcode of failed request: 154 (GLX) > > No GLX -> severely broken GL setup. > > attach the output of > LIBGL_DEBUG=verbose glxinfo > (if it has more than the above) and also /var/log/Xorg.0.log > > -- > You are receiving this mail because: > You reported the bug. > > [ 22.531] (EE) GLX error: Can not get required symbols.
Why is it loading the intel driver?
Mesa+fglrx is probably no option so you've fglrx installed on an intel chip or xf86-video-intel and intel-dri on an AMD chip.
Please post the output of "lspci"
The issue for me is the same that's reported here: http://askubuntu.com/questions/172917/thinkpad-t420s-wont-boot-in-nvs-4200m-enabled. During the initial installation there were issues so through bios I had to change from using nvidia to intel. With that said here is the output of "lspci": 00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07) 00:01.0 PCI bridge: Intel Corporation Mobile 4 Series Chipset PCI Express Graphics Port (rev 07) 00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) 00:03.0 Communication controller: Intel Corporation Mobile 4 Series Chipset MEI Controller (rev 07) 00:03.3 Serial controller: Intel Corporation Mobile 4 Series Chipset AMT SOL Redirection (rev 07) 00:19.0 Ethernet controller: Intel Corporation 82567LM Gigabit Network Connection (rev 03) 00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03) 00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03) 00:1a.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03) 00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03) 00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03) 00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03) 00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03) 00:1c.2 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 3 (rev 03) 00:1c.3 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 4 (rev 03) 00:1c.4 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 5 (rev 03) 00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03) 00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03) 00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03) 00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03) 00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93) 00:1f.0 ISA bridge: Intel Corporation ICH9M-E LPC Interface Controller (rev 03) 00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03) 00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03) 01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV635 [Mobility Radeon HD 3650] 03:00.0 Network controller: Intel Corporation PRO/Wireless 5100 AGN [Shiloh] Network Connection 04:00.0 Memory controller: Intel Corporation Turbo Memory Controller (rev 11) 15:00.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev ba) 15:00.1 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 04) 15:00.2 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter (rev 21) 15:00.4 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter (rev 11) 15:00.5 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 11) (In reply to comment #34) Ok, you've some mixed-mode installation between intel (x11 driver) and fglrx (GL library, pot glx) what will not work (while the radeon xf86-video-ati and ati-dri driver alongside inteld will likely) Either you continue to use the intel chip and uninstall fglrx (and best reinstall mesa) or you continue to use fglrx on the ati chip. Either just uninstall the intel driver and ensure the AMD/Ati chip is enabled in BIOS or configure the X11 server to use fglrx 1. ensure the ati chip is activated in BIOS. 2. adjust your xorg.conf(.d) by adding (conf.d file/s) Section "ServerLayout" Screen 0 "Screen0" 0 0 EndSection Section "Screen" Identifier "Screen0" Device "fglrx" EndSection Section "Device" Identifier "fglrx" Driver "fglrx" EndSection whether and how it's possible to use fglrx AND intel at the same time (optimus/bubmlebee in the nvidia workd), i don't know. This is a downstream error for installing incompatible system parts - your package manager should have noticed that. @omeringen please ensure this is not the case for you, in doubt post your /var/log/Xorg.0.log This is pot. not a duplicate. @Thomas Lübking, Here is /var/log/Xorg.0.log : http://paste.kde.org/669242/ *** Bug 316869 has been marked as a duplicate of this bug. *** *** Bug 318162 has been marked as a duplicate of this bug. *** *** Bug 318874 has been marked as a duplicate of this bug. *** *** Bug 318985 has been marked as a duplicate of this bug. *** Created attachment 79555 [details]
New crash information added by DrKonqi
kwin (4.10.2) on KDE Platform 4.10.2 using Qt 4.8.4
- What I was doing when the application crashed:
It crashes every time after login. Even after trying to enable from Desktop Effects settings.
- Custom settings of the application:
I had installed fglrx Catalyst 13.1 proprietary drivers on Kubuntu 12.04
This was working fine with known crashes related to plasma and windows-menu-bar (I understand this is not related to the current crash)
Anyway, then upgraded the system to 12.10 and then finally to 13.04 in the past two days.
It was working fine until upgrading to 13.04
The output of certain commands:
ldd `which glxinfo` | grep GL
libGL.so.1 => /usr/lib/fglrx/libGL.so.1 (0x00007f9ea15b0000)
ldd `which kwin` | grep GL
libEGL.so.1 => /usr/lib/x86_64-linux-gnu/mesa-egl/libEGL.so.1 (0x00007f11524f0000)
libGL.so.1 => /usr/lib/fglrx/libGL.so.1 (0x00007f11520c0000)
libQtOpenGL.so.4 => /usr/lib/x86_64-linux-gnu/libQtOpenGL.so.4 (0x00007f114b6c0000)
readelf -sw /usr/lib/fglrx/libGL.so.1 | grep glXGetFBConfigs
1782: 0000000000037720 280 FUNC GLOBAL DEFAULT 10 glXGetFBConfigs
glxinfo
name of display: :0
X Error of failed request: BadRequest (invalid request code or no such operation)
Major opcode of failed request: 155 (ATIFGLEXTENSION)
Minor opcode of failed request: 66 ()
Serial number of failed request: 13
Current serial number in output stream: 13
Having said that, I haven't yet tried the latest Catalyst 13.4 drivers. I will update once I have done that.
Also to note is that I have a dual monitor setup.
-- Backtrace (Reduced):
#6 0x00007f8c084a774e in glXGetFBConfigs () from /usr/lib/fglrx/libGL.so.1
#7 0x00007f8c0c9652c8 in KWin::GlxBackend::initDrawableConfigs (this=this@entry=0x1f95e00) at ../../kwin/glxbackend.cpp:323
#8 0x00007f8c0c96590a in KWin::GlxBackend::init (this=0x1f95e00) at ../../kwin/glxbackend.cpp:88
#9 0x00007f8c0c95f4e7 in KWin::SceneOpenGL::createScene () at ../../kwin/scene_opengl.cpp:224
#10 0x00007f8c0c94a205 in KWin::Compositor::slotCompositingOptionsInitialized (this=this@entry=0x1c49270) at ../../kwin/composite.cpp:206
It's an installation error. Check /var/log/Xorg.0.log - you're most likely not using tht fglrx driver but radeon or intel (depending on your HW setup) - /no/ OpenGL application will work, and that's why even glxinfo fails. @Thomas: Thanks. Yes, it did seem to be an installation error. Just for future ref, a little more info. Processor: AMD FX-8150 (my worst decision ever in purchasing a cpu) Gigabyte AMD Radeon HD 6870 I also have the following package installed: xvba-va-driver Anyway, so to update, I purged Catalyst 13.1 and installed 13.4 Seems to be working fine now after a couple of restarts. *** Bug 319214 has been marked as a duplicate of this bug. *** *** Bug 319293 has been marked as a duplicate of this bug. *** *** Bug 318962 has been marked as a duplicate of this bug. *** *** Bug 321472 has been marked as a duplicate of this bug. *** (In reply to comment #26) > No, not spam - pot. pointing a pattern and also the first user to provide > the information the correct way ;-) > > -> I do understand that the legacy fglrx driver *does* work for you also on > 4.10 > Also i can see that you, omeringen & Siavash all use the same driver version. > > You got a Mobility Radeon HD 3650 > Siavash has a Radeon HD 4800 > and omeringen has a Radeon HD 2400 PRO @Thomas, apologies for a *really* late reply, somehow i've missed your comment. Or maybe ignored a mail with *buntu in the title ;-) If time permits, i can try again installing fglrx to see the current behaviour with master. It will require some voodoo magic , as "we" (openSUSE/factory) have already moved to 3.10 kernel and 1.14.x xserver, so i need to dig out the older versions. Wrt. possible cause being installation issue, openSUSE's rpm script creates /etc/ld.so.conf/fglrx.conf file with /usr/X11R6/lib64 /usr/X11R6/lib don't know if other distros have similar mechanism, maybe that's the diff? Or maybe completely non-relevant issue at this point? ;-) (In reply to comment #48) > > No, not spam - pot. pointing a pattern and also the first user to provide > > the information the correct way ;-) Nevermind, I just had to quickly pickup context ;-) See comment #35. The bug is a mixed mode installation between MESA and fglrx, what is either a distro or an fglrx installer bug (wonky lib replacement/shadowing on installation) - depending on how the drivers got un/installed by the package. If SuSE manages libGL variants between MESA and fglrx in a sane way (so they match the loaded X11 driver, eg. by exporting some LD_LIBRARY_PATH on parallel installation), there'll be no issues in this regard. *** Bug 321862 has been marked as a duplicate of this bug. *** *** Bug 322957 has been marked as a duplicate of this bug. *** Created attachment 81607 [details]
New crash information added by DrKonqi
kwin (4.10.5) on KDE Platform 4.10.5 using Qt 4.8.4
Upgraded to 13.04
System locks up on reboot with black screen, flashing cursor (Alt+SysRq required)
Recovery mode => Uninstall fglrx
System boots up into KDE, poor graphics and low resolution
Have catalyst 13.4, 13.1 and 12.6: (AMD Radeon HD4870 1GB / ASUS P8Z68 GEN3 DELUXE)
- 13.4: fglrx installs but doesn't work. No 3d graphics.
- 13.1: system locks up on "startx" (Alt+SysRq required).
- 12.6: will try next.
I only upgraded from 11.04 because I apparently have to in order to use R 3.0+. R 3 runs just find on Windows XP x64 without needing an OS upgrade and without wrecking my graphics.
-- Backtrace (Reduced):
#6 0x00007f83abfdc5ee in glXGetFBConfigs () from /usr/lib/fglrx/libGL.so.1
#7 0x00007f83b0442218 in KWin::GlxBackend::initDrawableConfigs (this=this@entry=0x1cf6fb0) at ../../kwin/glxbackend.cpp:323
#8 0x00007f83b04428ea in KWin::GlxBackend::init (this=0x1cf6fb0) at ../../kwin/glxbackend.cpp:88
#9 0x00007f83b043c437 in KWin::SceneOpenGL::createScene () at ../../kwin/scene_opengl.cpp:224
#10 0x00007f83b0427105 in KWin::Compositor::slotCompositingOptionsInitialized (this=this@entry=0x1bea4f0) at ../../kwin/composite.cpp:206
> Upgraded to 13.04 > System locks up on reboot with black screen, flashing cursor (Alt+SysRq required) HD4xxx is unsupported by later fglrx drivers, you need to install the legacy variant or use the radeon driver (xf86-video-ati) > I only upgraded from 11.04 because I apparently have to in order to use R > 3.0+. > upgrade and without wrecking my graphics. No idea what that's supposed to mean, but it seems rather entirely unrelated to even this "randomly broken fglrx installation" bug (ie. you tell the wrong people about this) (In reply to comment #53) > > Upgraded to 13.04 > > System locks up on reboot with black screen, flashing cursor (Alt+SysRq required) > > HD4xxx is unsupported by later fglrx drivers, you need to install the legacy > variant or use the radeon driver (xf86-video-ati) > > > I only upgraded from 11.04 because I apparently have to in order to use R > > 3.0+. > > upgrade and without wrecking my graphics. > No idea what that's supposed to mean, but it seems rather entirely unrelated > to even this "randomly broken fglrx installation" bug (ie. you tell the > wrong people about this) Thanks! It would be nice if Ubuntu upgrades handled this kind of conflict automatically or at least bothered to warn the user before making their system unbootable! This is the last of many hardware problems that I've had as a result of careless Ubuntu upgrades, Arch Linux is now installing over my Ubuntu partition as I type... *** Bug 323389 has been marked as a duplicate of this bug. *** *** Bug 324335 has been marked as a duplicate of this bug. *** *** Bug 324896 has been marked as a duplicate of this bug. *** *** Bug 325001 has been marked as a duplicate of this bug. *** *** Bug 325545 has been marked as a duplicate of this bug. *** *** Bug 325602 has been marked as a duplicate of this bug. *** Created attachment 83027 [details]
New crash information added by DrKonqi
kwin (4.11.2) on KDE Platform 4.11.2 using Qt 4.8.4
- What I was doing when the application crashed:
I've upgraded 13.04 to 13.10 on my Aspire TimelineX 5820TG
- Unusual behavior I noticed:
I upgraded 13.04 to 13.10 on my Aspire TimelineX 5820TG, after reboot system won't start. Just stop on glowing 'kubuntu' text. I've got hybrid graphic card but it's set on AMD all time. On switchable mode system starts but openGL don't work and 'Video driver for the AMD Radeon and FireGL graphics accelerators' won't install. 'ATI Fire GL' are already installed but there is information: 'This driver is turn on but not in use'. When I tried to switch from openGL 2.0 to 3.1 i see information that this can proceed to crash like in past. When i switch to xrender i can't back to openGL 2.0. But in xrender 10 effects still don't work. Sorry for my (probably) bad grammar.
-- Backtrace (Reduced):
#6 0x00007ff7fdb4fc0e in glXGetFBConfigs () from /usr/lib/fglrx/libGL.so.1
[...]
#8 0x00007ff7fdb50ae9 in glXChooseFBConfigSGIX () from /usr/lib/fglrx/libGL.so.1
#9 0x00007ff8030004b5 in KWin::GlxBackend::initDrawableConfigs (this=this@entry=0x16523a0) at ../../kwin/glxbackend.cpp:302
#10 0x00007ff8030011f1 in KWin::GlxBackend::init (this=0x16523a0) at ../../kwin/glxbackend.cpp:85
#11 0x00007ff802ffc24c in KWin::SceneOpenGL::createScene () at ../../kwin/scene_opengl.cpp:199
Your GL installation is broken, the loaded GL library is from fglrx (catalyst) but apparently your loading some other (vesa, radeon) driver. Since the fglrx libGL is incompatible with the mesa one, each and every OpenGL application will crash. Check the contents of /var/log/Xorg.0.log about what X11 driver is loaded and why. Running "sudo aticonfig --initial -f" *might* fix the setup (towards using fglrx) Created attachment 83174 [details]
New crash information added by DrKonqi
kwin (4.10.5) on KDE Platform 4.10.5 using Qt 4.8.4
- What I was doing when the application crashed:
Trying to use OpenGL compositing type with different cases of proprioritary and free drivers with my ATI Radeon graphic card
-- Backtrace (Reduced):
#7 0xb6379402 in glXGetFBConfigs () from /usr/lib/fglrx/libGL.so.1
#8 0xb767b349 in KWin::GlxBackend::initDrawableConfigs (this=this@entry=0x9256328) at ../../kwin/glxbackend.cpp:323
#9 0xb767bb06 in KWin::GlxBackend::init (this=0x9256328) at ../../kwin/glxbackend.cpp:88
#10 0xb7674a43 in KWin::SceneOpenGL::createScene () at ../../kwin/scene_opengl.cpp:224
#11 0xb765c645 in KWin::Compositor::slotCompositingOptionsInitialized (this=this@entry=0x8d83d68) at ../../kwin/composite.cpp:206
*** Bug 327028 has been marked as a duplicate of this bug. *** *** Bug 329443 has been marked as a duplicate of this bug. *** *** Bug 329698 has been marked as a duplicate of this bug. *** *** Bug 332382 has been marked as a duplicate of this bug. *** *** Bug 338542 has been marked as a duplicate of this bug. *** |