Bug 33384 - [915GM] Random X crashes
Summary: [915GM] Random X crashes
Status: RESOLVED DUPLICATE of bug 30032
Alias: None
Product: xorg
Classification: Unclassified
Component: Driver/intel (show other bugs)
Version: unspecified
Hardware: x86 (IA32) Linux (All)
: medium normal
Assignee: Chris Wilson
QA Contact: Xorg Project Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-23 10:49 UTC by persson
Modified: 2011-01-24 13:57 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments
Xorg.0.log (26.29 KB, text/plain)
2011-01-23 10:49 UTC, persson
no flags Details
dmesg output (31.32 KB, text/plain)
2011-01-23 10:51 UTC, persson
no flags Details
VBIOS dump (64.00 KB, application/octet-stream)
2011-01-23 10:54 UTC, persson
no flags Details
glxinfo output (11.64 KB, text/plain)
2011-01-23 11:01 UTC, persson
no flags Details
intel_gpu_dump output (compressed) (218.20 KB, text/plain)
2011-01-23 11:06 UTC, persson
no flags Details
GDB backtrace upon SIGSEGV (356.58 KB, application/octet-stream)
2011-01-23 11:47 UTC, persson
no flags Details

Description persson 2011-01-23 10:49:51 UTC
Created attachment 42340 [details]
Xorg.0.log

Please note I'm not at all sure whether this is an Intel driver, X, or hardware bug.

Basically, on my eeepc 900, using the i915 driver (xf86-video-intel) X randomly crashes, usually when the user is doing something (not when the desktop is idle). I've seen the same behavior with X 1.9.2 and 1.9.3.901 (1.9.4 RC 1) and versions 2.13 and 2.14 of the Intel driver. It's not exactly reproducible, but it can usually be triggered with good likeliness by either watching youtube videos with firefox, or performing a skype call (it also crashed while doing other things).

The common "feature" of these crashes is that there is absolutely nothing at all in any log. I'm just dropped back to the command line.

Here is more information.

- Graphic chip: 00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 04)

- System Architecture: i686

- Kernel version: 2.6.37-ARCH (same problem with 2.6.36-ARCH)

- pkg-config --modversion libdrm
2.4.23

- Linux distro is Arch Linux

Will provide more verbose files/logs as attachments.
Comment 1 persson 2011-01-23 10:51:32 UTC
Created attachment 42341 [details]
dmesg output
Comment 2 persson 2011-01-23 10:54:53 UTC
Created attachment 42342 [details]
VBIOS dump
Comment 3 persson 2011-01-23 11:01:32 UTC
Created attachment 42343 [details]
glxinfo output
Comment 4 Chris Wilson 2011-01-23 11:04:56 UTC
Did you check Xorg.0.log.old? Might be worth connecting a second machine and keeping gdb attached.
Comment 5 persson 2011-01-23 11:06:52 UTC
Created attachment 42344 [details]
intel_gpu_dump output (compressed)
Comment 6 persson 2011-01-23 11:09:52 UTC
(In reply to comment #4)
> Did you check Xorg.0.log.old? Might be worth connecting a second machine and
> keeping gdb attached.

Since I've restarted X many times, Xorg.0.log.old is the same as Xorg.0.log. I will go ahead and run the debugging tools.
Comment 7 persson 2011-01-23 11:47:50 UTC
Created attachment 42346 [details]
GDB backtrace upon SIGSEGV

Unfortunately, in Arch Linux it's not so easy to get debugging symbols. Packages have to be specifically rebuilt with debugging information on, and the eeepc is not up to the task of building big programs. If the included backtrace does not help, I will do my best to try to find a way of getting debug info somehow.
Comment 8 Chris Wilson 2011-01-23 12:04:26 UTC
Symbols are garbage, but the gist is there: infinite recursion. So what's your setup? Compositing WM using GL or Xrender, or just a plain WM? And the trigger is mostly skype or flash?
Comment 9 persson 2011-01-23 12:47:17 UTC
(In reply to comment #8)
> Symbols are garbage, but the gist is there: infinite recursion. So what's your
> setup? Compositing WM using GL or Xrender, or just a plain WM? And the trigger
> is mostly skype or flash?

The desktop is vanilla XFCE as installed by Arch Linux. I did not consciously enable compositing, nor do I know how to check whether I'm using GL or Xrender (but I can certainly run commands and paste the output if directed to do so). I'm not using an xorg.conf file, everything is detected automagically.

Since the backtrace had loads of references to librecord.so, as a further test I looked for a way to disable loading the record module (just to see if it made some difference); not finding information, I went the crude way and renamed /usr/lib/xorg/modules/extensions/librecord.so. After that, restarting X gave an error about it being unable to load librecord.so (as expected), but, surprise, the desktop has been stable (knocking wood). I've been able to mess around with youtube videos and skype as much as I could (even both together at the same time) and I haven't been able to crash it again.

Of course, I'm not sure what librecord.so provides, nor do I know whether what I did could cause other problems. One thing I've noted is that without librecord.so I am no longer able to use the eeepc's integrated webcam.
Comment 10 Julien Cristau 2011-01-24 02:49:26 UTC
The record issue looks like a dupe of bug#30032.
Comment 11 persson 2011-01-24 04:07:25 UTC
(In reply to comment #10)
> The record issue looks like a dupe of bug#30032.

Dang! I'm in fact using x11vnc on the eeepc. I couldn't imagine that this could cause problems, so I did not look for that keyword when searching.
I will try to run it with -noxrecord and report back. Thanks!

(I'm still curious as to how to properly tell X to not load certain modules, though)
Comment 12 Chris Wilson 2011-01-24 04:40:37 UTC
man xorg.conf:
...
MODULE SECTION
...
       Disable  "modulename"
              This instructs the server to not load the module called  module‐
              name.   Some  modules  are  loaded by default in the server, and
              this overrides that default. If a Load instruction is given  for
              the  same  module,  it overrides the Disable instruction and the
              module is loaded. The module name given should be  the  module's
              standard  name,  not  the  module  file  name.  As with the Load
              instruction, the standard name is case-sensitive, and  does  not
              include the "lib" prefix, or the ".a", ".o", or ".so" suffixes.

*** This bug has been marked as a duplicate of bug 30032 ***
Comment 13 persson 2011-01-24 06:17:34 UTC
(In reply to comment #12)
> man xorg.conf:
> ...
> MODULE SECTION
> ...
>        Disable  "modulename"

Thanks.
Comment 14 persson 2011-01-24 13:57:18 UTC
(In reply to comment #11)
> (In reply to comment #10)
> > The record issue looks like a dupe of bug#30032.
> 
> Dang! I'm in fact using x11vnc on the eeepc. I couldn't imagine that this could
> cause problems, so I did not look for that keyword when searching.
> I will try to run it with -noxrecord and report back. Thanks!

Bingo. With x11vnc -noxrecord I have no crash. Thank you!


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.