xorg-server: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 debian/changelog|2 
 debian/patches/20-randr-shadow-crashes.diff |  122 
 debian/patches/series   |1 
 3 files changed, 125 insertions(+)

New commits:
commit a08ce4e725887de263cdad2c8e7b20bf54fab336
Author: Julien Cristau 
Date:   Sun Sep 19 22:59:53 2010 +0200

Fixup patch to apply

diff --git a/debian/patches/20-randr-shadow-crashes.diff 
b/debian/patches/20-randr-shadow-crashes.diff
index 8d58eae..6063b27 100644
--- a/debian/patches/20-randr-shadow-crashes.diff
+++ b/debian/patches/20-randr-shadow-crashes.diff
@@ -50,16 +50,16 @@ diff --git a/hw/xfree86/modes/xf86RandR12.c 
b/hw/xfree86/modes/xf86RandR12.c
 index 043ceee..c17b5fa 100644
 --- a/hw/xfree86/modes/xf86RandR12.c
 +++ b/hw/xfree86/modes/xf86RandR12.c
-@@ -686,7 +686,7 @@ xf86RandR12ScreenSetSize (ScreenPtrpScreen,
+@@ -687,7 +687,7 @@ xf86RandR12ScreenSetSize (ScreenPtrpScreen,
  ScrnInfoPtr   pScrn = XF86SCRNINFO(pScreen);
  xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
- WindowPtr pRoot = pScreen->root;
+ WindowPtr pRoot = WindowTable[pScreen->myNum];
 -PixmapPtr pScrnPix = (*pScreen->GetScreenPixmap)(pScreen);
 +PixmapPtr pScrnPix;
  Bool  ret = FALSE;
  int c;
  
-@@ -727,6 +727,7 @@ xf86RandR12ScreenSetSize (ScreenPtrpScreen,
+@@ -728,6 +728,7 @@ xf86RandR12ScreenSetSize (ScreenPtrpScreen,
}
  }
  
@@ -104,7 +104,7 @@ diff --git a/hw/xfree86/modes/xf86RandR12.c 
b/hw/xfree86/modes/xf86RandR12.c
 index c17b5fa..b334b3c 100644
 --- a/hw/xfree86/modes/xf86RandR12.c
 +++ b/hw/xfree86/modes/xf86RandR12.c
-@@ -728,6 +728,13 @@ xf86RandR12ScreenSetSize (ScreenPtr   pScreen,
+@@ -729,6 +729,13 @@ xf86RandR12ScreenSetSize (ScreenPtr   pScreen,
  }
  
  pScrnPix = (*pScreen->GetScreenPixmap)(pScreen);

commit 12d9d4a3e6304de2b1940e6cdb4317412fe807be
Author: Julien Cristau 
Date:   Sun Sep 19 22:53:29 2010 +0200

Don't crash in randr if the driver changes the screen pixmap on resize

diff --git a/debian/changelog b/debian/changelog
index 89bbb67..fe10aca 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,8 @@ xorg-server (2:1.7.7-7) UNRELEASED; urgency=low
 
   * Use linux-any instead of a list of architecture names for restrictions of
 build-dependencies (closes: #594927).
+  * Add a couple patches by Chris Wilson to avoid crashing in RandR if the
+driver changes the screen pixmap on resize.
 
  -- Julien Cristau   Sun, 12 Sep 2010 21:57:47 +0200
 
diff --git a/debian/patches/20-randr-shadow-crashes.diff 
b/debian/patches/20-randr-shadow-crashes.diff
new file mode 100644
index 000..8d58eae
--- /dev/null
+++ b/debian/patches/20-randr-shadow-crashes.diff
@@ -0,0 +1,122 @@
+From: Chris Wilson 
+To: xorg-de...@lists.x.org
+Subject: [PATCH 1/3] modes: Beware the driver switching root pixmaps
+Date: Tue, 14 Sep 2010 14:13:39 +0100
+Message-Id: <1284470021-16577-2-git-send-email-ch...@chris-wilson.co.uk>
+X-Mailer: git-send-email 1.7.1
+In-Reply-To: <1284470021-16577-1-git-send-email-ch...@chris-wilson.co.uk>
+References: <1284470021-16577-1-git-send-email-ch...@chris-wilson.co.uk>
+Cc: Julien Cristau 
+MIME-Version: 1.0
+Content-Type: text/plain; charset="us-ascii"
+Content-Transfer-Encoding: 7bit
+Content-Length: 2264
+
+Program received signal SIGSEGV, Segmentation fault.
+0x080d4a2d in xf86RandR12ScreenSetSize (pScreen=0x8dca3a0, width=800,
+height=600, mmWidth=210, mmHeight=157)
+at ../../../../hw/xfree86/modes/xf86RandR12.c:731
+731 ../../../../hw/xfree86/modes/xf86RandR12.c: No such file or directory.
+in ../../../../hw/xfree86/modes/xf86RandR12.c
+(gdb) bt full
+height=600, mmWidth=210, mmHeight=157)
+at ../../../../hw/xfree86/modes/xf86RandR12.c:731
+randrp = 0x8dcae68
+pScrn = 0x8dbeb28
+config = 
+pRoot = 0x8e08e30
+pScrnPix = 0xb6d12008
+ret = 1
+c = 
+mmWidth=210, mmHeight=157) at ../../randr/rrscreen.c:185
+No locals.
+at ../../randr/rrscreen.c:307
+pWin = 0x8e08e30
+pScreen = 0x8dca3a0
+i = 
+rc = 0
+../../randr/randr.c:485
+
+Signed-off-by: Chris Wilson 
+Cc: Julien Cristau 
+Tested-by: Julien Cristau 
+Cc: Keith Packard 
+Reviewed-by: Keith Packard 
+---
+ hw/xfree86/modes/xf86RandR12.c |3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/hw/xfree86/modes/xf86RandR12.c b/hw/xfree86/modes/xf86RandR12.c
+index 043ceee..c17b5fa 100644
+--- a/hw/xfree86/modes/xf86RandR12.c
 b/hw/xfree86/modes/xf86RandR12.c
+@@ -686,7 +686,7 @@ xf86RandR12ScreenSetSize (ScreenPtrpScreen,
+ ScrnInfoPtr   pScrn = XF86SCRNINFO(pScreen);
+ xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(pScrn);
+ WindowPtr pRoot = pScreen->root;
+-PixmapPtr pScrnPix = (*pScreen->GetScreenPix

xorg-server: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b519cfc1d8e234d4a0be5e483d2a462bb68e5700
Author: Julien Cristau 
Date:   Mon Sep 20 15:27:20 2010 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index fe10aca..9075a30 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,11 +1,11 @@
-xorg-server (2:1.7.7-7) UNRELEASED; urgency=low
+xorg-server (2:1.7.7-7) unstable; urgency=low
 
   * Use linux-any instead of a list of architecture names for restrictions of
 build-dependencies (closes: #594927).
   * Add a couple patches by Chris Wilson to avoid crashing in RandR if the
 driver changes the screen pixmap on resize.
 
- -- Julien Cristau   Sun, 12 Sep 2010 21:57:47 +0200
+ -- Julien Cristau   Mon, 20 Sep 2010 15:26:56 +0200
 
 xorg-server (2:1.7.7-6) unstable; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxgoy-0001tp...@alioth.debian.org



xorg-server: Changes to 'refs/tags/xorg-server-2_1.7.7-7'

2010-09-20 Thread Julien Cristau
Tag 'xorg-server-2_1.7.7-7' created by Julien Cristau  at 
2010-09-20 13:28 +

Tagging upload of xorg-server 2:1.7.7-7 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAABCAAGBQJMl2F/AAoJEDEBgAUJBeQMQR0QANbylXeoNIymb4VlZHM11yoi
tvjj/lpGhjhpT6l9H8MBwVZLmd0Qw/5KhkcIlZApqc/B4xwZvfw1q73w3zgj9b+F
CeDTLKXZvvhAlsjvxMCVHhZfXBue0lWNNl5fBiUPFnbvC8ewUBMUbxJyRgoTJ0+h
AIcNa4Rbc1/vKzySSWf4RH3BsHGqluaoO+s4CtUMXvTLjGBRxXQdWLsIBPzhbkeU
ggxTwI+Zz1YiHP9MFDQSqaTqEwF56tO6OXCRLe1Sbf33mL9odYLM6jerTn1d09sH
RIMpEJBF3FQv5OPXVKzJjbN4lp9ZsM9cBr4APzOsCCfueyl/gHUIYZ4Bgqhskig+
aKA+29mVdEIb0tZU8FYezkbHuJhGeCAL7J3e5dSjJgCsymOemTfk2ipkctx8d4CT
Wp+5cQoyb+HM3Tcf5oJYSqVa9L/RyY/SpNDaPzXVu7MAXdqx9gllgZ2V+7wW+4jZ
LDN0czuhBBQJPQj/biuJsDeH9aF2+Wi4QgSRk8JmjWXIrwRTk92qkinAkPfey/UB
QQJ7ndFPW5e8aCHydMhnGzhBvA00XBi61UQZ5tW559s1PdrCrFs9D82glvoOKPkr
C/+pHn0ArriN0Ybbj+WKzsm+FKjRqfTsqbRKnZJ+4M5b/ebM2ZY3cjkbcJQz1bx/
+TC7/6FrgHzsp2UsRngc
=qvXO
-END PGP SIGNATURE-

Changes since xorg-server-2_1.7.7-6:
Julien Cristau (4):
  Fix build on sparc64
  Don't crash in randr if the driver changes the screen pixmap on resize
  Fixup patch to apply
  Upload to unstable

---
 debian/changelog|9 ++
 debian/control  |6 -
 debian/patches/20-randr-shadow-crashes.diff |  122 
 debian/patches/series   |1 
 4 files changed, 135 insertions(+), 3 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxgp0-0001vl...@alioth.debian.org



Bug#586922: When pipewalker is launched, the X server crash and stop

2010-09-20 Thread Julien Cristau
On Wed, Jun 23, 2010 at 16:41:45 +0200, Diagonale de Cantor wrote:

> Fatal server error:
> Failed to submit batchbuffer: Input/output error
> 
Hi,

can you still reproduce this with updated kernel
(linux-image-2.6.32-5-686), libdrm (2.4.21) and xserver-xorg-video-intel
(2.12) packages?

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: tagging 586922

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 586922 + moreinfo
Bug #586922 [xserver-xorg-video-intel] When pipewalker is launched, the X 
server crash and stop
Added tag(s) moreinfo.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
586922: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586922
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12849965119727.transcr...@bugs.debian.org



Bug#589207: marked as done (xorg: x server fails after ending screensaver in Gome or if I try to set it up)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 17:30:54 +0200
with message-id <20100920153054.ga22...@patate.is-a-geek.org>
and subject line Re: Bug#589207: xorg: x server fails after ending screensaver 
in Gome or if I try to set it up
has caused the Debian Bug report #589207,
regarding xorg: x server fails after ending screensaver in Gome or if I try to 
set it up
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
589207: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589207
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xorg
Version: 1:7.5+6
Severity: important
Tags: upstream

When screensaver is on and I try to continue to work the screensaver fails down
include whole X server.
It also happens when I try so run graphical setting utility in Gnome, menu
system - options - screensaver.
There is an blue screen with this information:

--- begin ---
FATAL: Module fbcon not found.

Fatal server error:
Failed to submit batchbuffer: Input/output error


X: ../../src/i830_batchbuffer.h:79: intel_batch_emit_dword:
Assertion `pI830->batch_ptr != ((void *)0)' failed.
--- end ---

My hardware is Dell Optiplex GX60 in factory configuration (no changes).
Software is Debian Squeeze.

This error appears approximately for two months on this computer only.

Thank you

Viktor Matys



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.30.2-1   The GNOME terminal emulator applic
ii  libgl1-mesa-dri   7.7.1-3A free implementation of the OpenG
ii  libgl1-mesa-glx [libgl1]  7.7.1-3A free implementation of the OpenG
ii  libglu1-mesa  7.7.1-3The OpenGL utility library (GLU)
ii  x11-apps  7.5+5  X applications
ii  x11-session-utils 7.5+1  X session utilities
ii  x11-utils 7.5+4  X11 utilities
ii  x11-xfs-utils 7.4+1  X font server utilities
ii  x11-xkb-utils 7.5+2  X11 XKB utilities
ii  x11-xserver-utils 7.5+1+b1   X server utilities
ii  xauth 1:1.0.4-1  X authentication utility
ii  xfonts-100dpi 1:1.0.1100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.175 dpi fonts for X
ii  xfonts-base   1:1.0.1standard fonts for X
ii  xfonts-scalable   1:1.0.1-1  scalable fonts for X
ii  xfonts-utils  1:7.5+2X Window System font utility progr
ii  xinit 1.2.0-2X server initialisation tool
ii  xkb-data  1.8-1  X Keyboard Extension (XKB) configu
ii  xorg-docs-core1:1.5-1Core documentation for the X.org X
ii  xserver-xorg  1:7.5+6the X.Org X server
ii  xterm [x-terminal-emulator]   261-1  X terminal emulator

xorg recommends no packages.

Versions of packages xorg suggests:
pn  xorg-docs  (no description available)

-- no debconf information


--- End Message ---
--- Begin Message ---
On Fri, Jul 16, 2010 at 22:06:38 +0200, Viktor Matys wrote:

> Then I deleted directories .gconf, .gconfd, .gnome2 and
> .gnome2_private from my home directory. After reboot screensaver
> works fine, locking and unlocking (ctrl+alt+l) works and the X
> server runs.
> 
> So my problem is solved out. Little unuderstandable way - for me :)
> 
OK, let's close this one out then, thanks for the update.

Cheers,
Julien


signature.asc
Description: Digital signature
--- End Message ---


Bug#590433: marked as done (xserver-xorg-video-intel: fade-to-black as system locks up)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 17:32:13 +0200
with message-id <20100920153213.ga22...@patate.is-a-geek.org>
and subject line Re: Bug#590433: xserver-xorg-video-intel: fade-to-black as 
system locks up
has caused the Debian Bug report #590433,
regarding xserver-xorg-video-intel: fade-to-black as system locks up
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
590433: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590433
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.9.1-4
Severity: important

I've noticed that a moderately recent update to sid has introduced a bug.  The 
symptoms are that,
whilst using an X session, the system no longer responds to keyboard or mouse 
input.  At the same
time, the screen fades to black.

The fade takes approximately 1 second and is in two phrases; each phase has 
roughly the same
duration (roughly half a second).

In the first phase the colour from the monitor "dissolves" leaving the screen 
in shades of grey.  At
the end of this phase, the majority of the pixels are a neutral, mid-grey but 
lighter and darker
pixels are visable.

The second phase has pixels becoming progressively darker.  My impression is 
that this happens by
all pixels with lum. greater than some threshold value being reset to that 
threshold value and that
this threshold lum. decreases over time.  The effect is that, over time, the 
screen becomes more
uniform and darker.

Once the fade has completed, I tried to switch virtual console, to see the 
standard console; however,
this failed.  Switching back to VT-7 (where X is running) also fails to reset 
the display.  The
keyboard is unresponsive (e.g., caps-lock buttom doesn't affect the caps-lock 
LED)

I've not found an action that triggers the problem; it seems to be triggered 
randomly.  It's also
pretty rare: I've only seem the problem 2 or 3 times so the description of 
symptoms is somewhat
unreliable.

I'm using the KDE desktop and the problem has been triggered from clicking 
within an application;
however, I don't know if that is significant.

The laptop is a Dell E4200.

Cheers,

Paul.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Mar 19  2009 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1725304 Jul 15 18:15 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller (rev 07)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 682 Apr 14  2009 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier  "Configured Video Device"
EndSection


Kernel version (/proc/version):
Linux version 2.6.32-5-amd64 (Debian 2.6.32-18) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Sat Jul 24 03:54:06 UTC 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 30308 Jul 26 10:12 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-2-amd64 i686 Debian
Current Operating System: Linux vedrfolnir 2.6.32-5-amd64 #1 SMP Sat Jul 24 
03:54:06 UTC 2010 x86_64
Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-5-amd64 
root=/dev/mapper/vedrfolnir-root ro quiet
Build Date: 15 July 2010  04:10:53PM
xorg-server 2:1.7.7-3 (Cyril Brulebois ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (

Bug#593868: marked as done ([i915] xserver-xorg-video-intel: refuses to start screen found but configuration fail (KMS))

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 17:43:25 +0200
with message-id <20100920154325.ga23...@patate.is-a-geek.org>
and subject line Re: Bug#593868: Added logs
has caused the Debian Bug report #593868,
regarding [i915] xserver-xorg-video-intel: refuses to start screen found but 
configuration fail (KMS)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
593868: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593868
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.12.0-1
Severity: important

Drivers 2.12 cannot be used with debian kernel and KMS enabled.


/etc/modprobe.d/i915-kms.conf:
options i915 modeset=1

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Aug 23  2009 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1725304 Jul 15 18:15 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML 
Express Graphics Controller (rev 03)

/etc/X11/xorg.conf does not exist.

Kernel version (/proc/version):
Linux version 2.6.35-trunk-686 (Debian 2.6.35-1~experimental.2) 
(m...@debian.org) (gcc version 4.4.5 20100728 (prerelease) (Debian 4.4.4-8) ) 
#1 SMP Tue Aug 17 14:30:48 UTC 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 6390 Aug 21 19:37 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-2-amd64 i686 Debian
Current Operating System: Linux thana-portable 2.6.35-trunk-686 #1 SMP Tue Aug 
17 14:30:48 UTC 2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-trunk-686 
root=UUID=8515365c-124e-4e18-ad10-e5df0c80e4b2 ro quiet init=/sbin/bootchartd 
splash
Build Date: 15 July 2010  04:10:53PM
xorg-server 2:1.7.7-3 (Cyril Brulebois ) 
Current version of pixman: 0.18.2
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 21 19:37:01 2010
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |-->Screen "Default Screen Section" (0)
(**) |   |-->Monitor ""
(==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81eaca0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2592:1025:008f Intel Corporation Mobile 
915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0xb008/524288, 
0xc000/268435456, 0xb000/262144, I/O @ 0x1800/8
(--) PCI: (0:0:2:1) 8086:2792:1025:008f Intel Corporation Mobile 
915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0x44c0/524288
(II) Open ACPI successful (/var/run/acpid.socket)
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
compiled for 1.7.7, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension SELinux
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading e

Bug#596085: xserver-xorg-video-intel: partial display corruption / mostly text / Mobile 945GM

2010-09-20 Thread Florian Lohoff
On Wed, Sep 08, 2010 at 05:48:17PM +0100, Chris Wilson wrote:
> On Wed, 8 Sep 2010 18:38:09 +0200, Julien Cristau  wrote:
> > On Wed, Sep  8, 2010 at 17:10:36 +0100, Chris Wilson wrote:
> > > As it looks like uninitialised data, it could be the xserver bug where we
> > > sent damage events prior to flushing the 2D batchbuffer, so that there was
> > > an opportunity for compositing WM to grab garbage.
> > > 
> > That one's plausible, thanks.  Florian, are you running a compositing
> > manager?  If yes, does the corruption happen without that?
> > 
> > Looks like the fix for that one is
> > 8d7b7a0d71e0b89321b3341b781bc8845386def6 and
> > c65f610e12f9df168d5639534ed3c2bd40afffc8?
> 
> And 69d65f9184006eac790efcff78a0e425160e95aa for -intel.
> -Chris

I guess these are git commit id's? Which repository? I failed to find
it in the kernel and the obvious intel drivers git.

I'd like to test possible fixes.

Flo
-- 
Florian Lohoff f...@zz.de


signature.asc
Description: Digital signature


Processed: [bts-link] source package xserver-xorg-video-intel

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #
> # bts-link upstream status pull for source package xserver-xorg-video-intel
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
> # remote status report for #550942 (http://bugs.debian.org/550942)
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=24978
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 550942 + fixed-upstream
Bug #550942 [xserver-xorg-video-intel] [gnome] Mouse pointer invisible directly 
after starting gnome
Bug #550671 [xserver-xorg-video-intel] Mouse pointer disappeared after upgrade 
xserver-xorg-video-intel to 2.9.0-1
Added tag(s) fixed-upstream.
Added tag(s) fixed-upstream.
> usertags 550942 - status-NEW
Bug#550942: [gnome] Mouse pointer invisible directly after starting gnome
Usertags were: status-NEW.
Usertags are now: .
> usertags 550942 + status-RESOLVED resolution-FIXED
Bug#550942: [gnome] Mouse pointer invisible directly after starting gnome
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> # remote status report for #550942 (http://bugs.debian.org/550942)
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=24978
> #  * remote status changed: NEW -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 550942 + fixed-upstream
Bug #550942 [xserver-xorg-video-intel] [gnome] Mouse pointer invisible directly 
after starting gnome
Bug #550671 [xserver-xorg-video-intel] Mouse pointer disappeared after upgrade 
xserver-xorg-video-intel to 2.9.0-1
Ignoring request to alter tags of bug #550942 to the same tags previously set
Ignoring request to alter tags of bug #550671 to the same tags previously set
> usertags 550942 - status-NEW
Bug#550942: [gnome] Mouse pointer invisible directly after starting gnome
Usertags were: status-RESOLVED resolution-FIXED.
Usertags are now: status-RESOLVED resolution-FIXED.
> usertags 550942 + status-RESOLVED resolution-FIXED
Bug#550942: [gnome] Mouse pointer invisible directly after starting gnome
Usertags were: status-RESOLVED resolution-FIXED.
Usertags are now: status-RESOLVED resolution-FIXED.
> # remote status report for #597016 (http://bugs.debian.org/597016)
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=29430
> #  * remote status changed: (?) -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 597016 + fixed-upstream
Bug #597016 [xserver-xorg-video-intel] Xorg crashes when starting sm and typing
Bug #593199 [xserver-xorg-video-intel] xserver-xorg-video-intel: often crashes 
at sm startup
Added tag(s) fixed-upstream.
Added tag(s) fixed-upstream.
> usertags 597016 + status-RESOLVED resolution-FIXED
Bug#597016: Xorg crashes when starting sm and typing
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> # remote status report for #597016 (http://bugs.debian.org/597016)
> #  * https://bugs.freedesktop.org/show_bug.cgi?id=29430
> #  * remote status changed: (?) -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 597016 + fixed-upstream
Bug #597016 [xserver-xorg-video-intel] Xorg crashes when starting sm and typing
Bug #593199 [xserver-xorg-video-intel] xserver-xorg-video-intel: often crashes 
at sm startup
Ignoring request to alter tags of bug #597016 to the same tags previously set
Ignoring request to alter tags of bug #593199 to the same tags previously set
> usertags 597016 + status-RESOLVED resolution-FIXED
Bug#597016: Xorg crashes when starting sm and typing
Usertags were: status-RESOLVED resolution-FIXED.
Usertags are now: status-RESOLVED resolution-FIXED.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
597016: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597016
550942: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550942
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12850005744140.transcr...@bugs.debian.org



[bts-link] source package xserver-xorg-video-intel

2010-09-20 Thread bts-link-upstream
#
# bts-link upstream status pull for source package xserver-xorg-video-intel
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #550942 (http://bugs.debian.org/550942)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=24978
#  * remote status changed: NEW -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 550942 + fixed-upstream
usertags 550942 - status-NEW
usertags 550942 + status-RESOLVED resolution-FIXED

# remote status report for #550942 (http://bugs.debian.org/550942)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=24978
#  * remote status changed: NEW -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 550942 + fixed-upstream
usertags 550942 - status-NEW
usertags 550942 + status-RESOLVED resolution-FIXED

# remote status report for #597016 (http://bugs.debian.org/597016)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=29430
#  * remote status changed: (?) -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 597016 + fixed-upstream
usertags 597016 + status-RESOLVED resolution-FIXED

# remote status report for #597016 (http://bugs.debian.org/597016)
#  * https://bugs.freedesktop.org/show_bug.cgi?id=29430
#  * remote status changed: (?) -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 597016 + fixed-upstream
usertags 597016 + status-RESOLVED resolution-FIXED

thanks


--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100920163612.17876.15857.btsl...@merkel.debian.org



Processed: tagging 595913

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 595913 + moreinfo
Bug #595913 [xserver-xorg-video-intel] xserver-xorg-video-intel: X random 
crashes with 945GM
Added tag(s) moreinfo.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
595913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128500256119208.transcr...@bugs.debian.org



Bug#596236: xserver-xorg-video-intel: xrandr shows extra LVDS output

2010-09-20 Thread Julien Cristau
On Thu, Sep  9, 2010 at 18:02:26 +0300, Krasu wrote:

> Package: xserver-xorg-video-intel
> Version: 2:2.9.1-4
> Severity: important
> 
> xrandr shows extra LVDS output, but I don't have LVDS on my board:
> 
> $ xrandr --version
> xrandr program version   1.3.3
> Server reports RandR version 1.3
> 
> $ xrandr
> Screen 0: minimum 320 x 200, current 1600 x 900, maximum 4096 x 4096
> VGA connected 1600x900+0+0 (normal left inverted right x axis y axis) 443mm x
> 249mm
>1600x900   60.0*+
>1280x1024  60.0
>1440x900   59.9
>1280x800   59.8
>1024x768   60.0
>800x60060.3 56.2
>640x48059.9
> LVDS connected (normal left inverted right x axis y axis)
>1024x768   60.0 +   85.0 75.0 70.1 60.0
>832x62474.6
>800x60085.1 72.2 75.0 60.3 56.2
>640x48085.0 72.8 75.0 59.9
>720x40085.0
>640x40085.1
>640x35085.1
> TMDS-1 disconnected (normal left inverted right x axis y axis)
> HDMI-2 disconnected (normal left inverted right x axis y axis)
> 
[...]
> 00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset
> Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller])
> Subsystem: Intel Corporation Mobile 4 Series Chipset Integrated
> Graphics Controller
> Flags: bus master, fast devsel, latency 0, IRQ 28
> Memory at fe40 (64-bit, non-prefetchable) [size=4M]
> Memory at d000 (64-bit, prefetchable) [size=256M]
> I/O ports at d880 [size=8]
> Expansion ROM at  [disabled]
> Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
> Capabilities: [d0] Power Management version 3
> 
The information included in your bug report was from a different machine
(with nvidia graphics).  Please attach the Xorg log and dmesg output
from the machine with intel graphics.  Also the xrandr output above
suggests you're still using UMS.  Please make sure you have kernel mode
setting enabled.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: tagging 596236, severity of 596236 is normal

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 596236 + moreinfo
Bug #596236 [xserver-xorg-video-intel] xserver-xorg-video-intel: xrandr shows 
extra LVDS output
Added tag(s) moreinfo.
> severity 596236 normal
Bug #596236 [xserver-xorg-video-intel] xserver-xorg-video-intel: xrandr shows 
extra LVDS output
Severity set to 'normal' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
596236: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=596236
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128500292122454.transcr...@bugs.debian.org



xserver-xorg-video-intel: Changes to 'upstream-unstable'

2010-09-20 Thread Julien Cristau
Rebased ref, commits from common ancestor:
commit f63c7df6866fed61551d39209b1a262e2a0c4b28
Author: Zhenyu Wang 
Date:   Fri Sep 17 16:39:12 2010 +0800

Disable swap buffer wait on Sandybridge

MI_LOAD_SCAN_LINE_INCL command is not available on sandybridge.
I haven't got reply on any substitution for it, so turn it off for now.

Signed-off-by: Zhenyu Wang 

diff --git a/src/intel_driver.c b/src/intel_driver.c
index 6087f55..c0ad69e 100644
--- a/src/intel_driver.c
+++ b/src/intel_driver.c
@@ -873,6 +873,9 @@ I830ScreenInit(int scrnIndex, ScreenPtr screen, int argc, 
char **argv)
intel->swapbuffers_wait = FALSE;
}
 
+   if (IS_GEN6(intel))
+   intel->swapbuffers_wait = FALSE;
+
xf86DrvMsg(scrn->scrnIndex, X_CONFIG, "Tiling %sabled\n",
   intel->tiling ? "en" : "dis");
xf86DrvMsg(scrn->scrnIndex, X_CONFIG, "SwapBuffers wait %sabled\n",

commit 55b5fe888002258dd863d41977bfbfcf1a922179
Author: Chris Wilson 
Date:   Thu Sep 16 16:50:13 2010 +0100

Add alternate pci-id for B43

Confirmed by http://en.wikipedia.org/wiki/Intel_GMA

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=30221
Signed-off-by: Chris Wilson 

diff --git a/src/intel_driver.h b/src/intel_driver.h
index 50f176a..b55c8c9 100644
--- a/src/intel_driver.h
+++ b/src/intel_driver.h
@@ -158,6 +158,11 @@
 #define PCI_CHIP_B43_G_BRIDGE  0x2E40
 #endif
 
+#ifndef PCI_CHIP_B43_G1
+#define PCI_CHIP_B43_G10x2E92
+#define PCI_CHIP_B43_G1_BRIDGE 0x2E90
+#endif
+
 #ifndef PCI_CHIP_IGDNG_D_G
 #define PCI_CHIP_IGDNG_D_G 0x0042
 #define PCI_CHIP_IGDNG_D_G_BRIDGE  0x0040
diff --git a/src/intel_module.c b/src/intel_module.c
index d37896e..53e1cb6 100644
--- a/src/intel_module.c
+++ b/src/intel_module.c
@@ -70,6 +70,7 @@ static const SymTabRec _intel_chipsets[] = {
 {PCI_CHIP_Q45_G,   "Q45/Q43"},
 {PCI_CHIP_G41_G,   "G41"},
 {PCI_CHIP_B43_G,   "B43"},
+{PCI_CHIP_B43_G1,  "B43"},
 {PCI_CHIP_IGDNG_D_G,   "Clarkdale"},
 {PCI_CHIP_IGDNG_M_G,   "Arrandale"},
 {PCI_CHIP_SANDYBRIDGE_GT1, "Sandybridge" },

commit 08c2caca48323d6d5701dcef3486f850619d7905
Author: Chris Wilson 
Date:   Sun Sep 12 12:34:51 2010 +0100

uxa: Apply source clipping to blits

Yes, this should be done in the higher layers. Yes, I have written code
to that. No, it is not ready, hence add the sanity check to the
SRC_COPY_BLT.

This isn't the first report that I've seen, but will be the last.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=30120
Reported-by: rezbit@gmail.com
Signed-off-by: Chris Wilson 

diff --git a/src/intel_uxa.c b/src/intel_uxa.c
index 0dcd5d3..ef4c553 100644
--- a/src/intel_uxa.c
+++ b/src/intel_uxa.c
@@ -411,12 +411,39 @@ i830_uxa_copy(PixmapPtr dest, int src_x1, int src_y1, int 
dst_x1,
ScrnInfoPtr scrn = xf86Screens[dest->drawable.pScreen->myNum];
intel_screen_private *intel = intel_get_screen_private(scrn);
uint32_t cmd;
-   int dst_x2, dst_y2;
+   int dst_x2, dst_y2, src_x2, src_y2;
unsigned int dst_pitch, src_pitch;
 
dst_x2 = dst_x1 + w;
dst_y2 = dst_y1 + h;
 
+   /* XXX Fixup extents as a lamentable workaround for missing
+* source clipping in the upper layers.
+*/
+   if (dst_x1 < 0)
+   src_x1 -= dst_x1, dst_x1 = 0;
+   if (dst_y1 < 0)
+   src_y1 -= dst_y1, dst_y1 = 0;
+   if (dst_x2 > dest->drawable.width)
+   dst_x2 = dest->drawable.width;
+   if (dst_y2 > dest->drawable.height)
+   dst_y2 = dest->drawable.height;
+
+   src_x2 = src_x1 + (dst_x2 - dst_x1);
+   src_y2 = src_y1 + (dst_y2 - dst_y1);
+
+   if (src_x1 < 0)
+   dst_x1 -= src_x1, src_x1 = 0;
+   if (src_y1 < 0)
+   dst_y1 -= src_y1, src_y1 = 0;
+   if (src_x2 > intel->render_source->drawable.width)
+   dst_x2 -= src_x2 - intel->render_source->drawable.width;
+   if (src_y2 > intel->render_source->drawable.height)
+   dst_y2 -= src_y2 - intel->render_source->drawable.height;
+
+   if (dst_x2 <= dst_x1 || dst_y2 <= dst_y1)
+   return;
+
dst_pitch = intel_pixmap_pitch(dest);
src_pitch = intel_pixmap_pitch(intel->render_source);
 

commit ae160d7fbfc79e78dad8702efcc55d9c0c25ff67
Author: Chris Wilson 
Date:   Fri Sep 10 13:19:12 2010 +0100

shadow: Simply modify the Screen pixmap header

This is a slightly less risky strategy than having to remember to update
all pointers to the old Screen pixmap.

Signed-off-by: Chris Wilson 

diff --git a/src/intel.h b/src/intel.h
index c258a87..b816aeb 100644
--- a/src/intel.h
+++ b/src/intel.h
@@ -282,9 +282,10 @@ typedef struct intel_screen_private {
long GTTMapSize;
 
void *modes;
-   drm_intel_bo *

xserver-xorg-video-intel: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 ChangeLog   |  817 ++
 configure.ac|  136 
 debian/changelog|   14 
 debian/control  |2 
 debian/patches/i8xx-shadow.diff |   32 
 debian/patches/series   |2 
 debian/patches/shadow-no-dri2.diff  |   33 
 man/Makefile.am |   17 
 man/intel.man   |   14 
 src/Makefile.am |8 
 src/common.h|4 
 src/drmmode_display.c   | 1536 -
 src/i830_render.c   |1 
 src/i915_video.c|7 
 src/intel.h |   58 
 src/intel_batchbuffer.h |3 
 src/intel_display.c | 1611 +
 src/intel_dri.c |   35 
 src/intel_driver.c  |  211 
 src/intel_driver.h  |   34 
 src/intel_memory.c  |8 
 src/intel_module.c  |   65 
 src/intel_transform.c   |   92 
 src/intel_transform.h   |   14 
 src/intel_uxa.c |  375 +
 src/intel_video.c   |  227 
 src/intel_video.h   |3 
 src/legacy/Makefile.am  |3 
 src/legacy/i810/i810.h  |6 
 src/legacy/i810/i810_accel.c|6 
 src/legacy/i810/i810_common.h   |6 
 src/legacy/i810/i810_dri.c  |  128 
 src/legacy/i810/i810_driver.c   |   45 
 src/legacy/i810/i810_video.c|   18 
 src/legacy/i810/xvmc/Makefile.am|4 
 src/legacy/legacy.h |8 
 src/legacy/ums/Makefile.am  |  161 
 src/legacy/ums/brw_defines.h|  874 ---
 src/legacy/ums/brw_structs.h| 1469 -
 src/legacy/ums/ch7017/Makefile.am   |   10 
 src/legacy/ums/ch7017/ch7017.c  |  324 -
 src/legacy/ums/ch7017/ch7017_module.c   |   36 
 src/legacy/ums/ch7017/ch7017_reg.h  |  162 
 src/legacy/ums/ch7xxx/Makefile.am   |   11 
 src/legacy/ums/ch7xxx/ch7xxx.c  |  317 -
 src/legacy/ums/ch7xxx/ch7xxx.h  |   31 
 src/legacy/ums/ch7xxx/ch7xxx_module.c   |   35 
 src/legacy/ums/ch7xxx/ch7xxx_reg.h  |   80 
 src/legacy/ums/ivch/Makefile.am |   10 
 src/legacy/ums/ivch/ivch.c  |  368 -
 src/legacy/ums/ivch/ivch_module.c   |   64 
 src/legacy/ums/ivch/ivch_reg.h  |  291 -
 src/legacy/ums/render_programs/exa_sf.g4a   |  107 
 src/legacy/ums/render_programs/exa_sf.g4b   |   15 
 src/legacy/ums/render_programs/exa_sf_mask.g4a  |  107 
 src/legacy/ums/render_programs/exa_sf_mask.g4b  |   15 
 src/legacy/ums/render_programs/exa_wm.g4i   |  156 
 src/legacy/ums/render_programs/exa_wm_affine.g4i|   44 
 src/legacy/ums/render_programs/exa_wm_ca.g4a|   38 
 src/legacy/ums/render_programs/exa_wm_ca.g4b|4 
 src/legacy/ums/render_programs/exa_wm_ca_srcalpha.g4a   |   37 
 src/legacy/ums/render_programs/exa_wm_ca_srcalpha.g4b   |4 
 src/legacy/ums/render_programs/exa_wm_mask_affine.g4a   |   41 
 src/legacy/ums/render_programs/exa_wm_mask_affine.g4b   |8 
 src/legacy/ums/render_programs/exa_wm_mask_projective.g4a   |   53 
 src/legacy/ums/render_programs/exa_wm_mask_projective.g4b   |   16 
 src/legacy/ums/render_programs/exa_wm_mask_sample_a.g4a |   48 
 src/legacy/ums/render_programs/exa_wm_mask_sample_a.g4b |2 
 src/legacy/ums/render_programs/exa_wm_mask_sample_argb.g4a  |   48 
 src/legacy/ums/render_programs/exa_wm_mask_sample_argb.g4b  |2 
 src/legacy/ums/render_programs/exa_wm_noca.g4a  |   38 
 src/legacy/ums/render_programs/exa_wm_noca.g4b  |4 
 src/l

Bug#596085: xserver-xorg-video-intel: partial display corruption / mostly text / Mobile 945GM

2010-09-20 Thread Julien Cristau
On Mon, Sep 20, 2010 at 18:02:31 +0200, Florian Lohoff wrote:

> On Wed, Sep 08, 2010 at 05:48:17PM +0100, Chris Wilson wrote:
> > On Wed, 8 Sep 2010 18:38:09 +0200, Julien Cristau  
> > wrote:
> > > On Wed, Sep  8, 2010 at 17:10:36 +0100, Chris Wilson wrote:
> > > > As it looks like uninitialised data, it could be the xserver bug where 
> > > > we
> > > > sent damage events prior to flushing the 2D batchbuffer, so that there 
> > > > was
> > > > an opportunity for compositing WM to grab garbage.
> > > > 
> > > That one's plausible, thanks.  Florian, are you running a compositing
> > > manager?  If yes, does the corruption happen without that?
> > > 
> > > Looks like the fix for that one is
> > > 8d7b7a0d71e0b89321b3341b781bc8845386def6 and
> > > c65f610e12f9df168d5639534ed3c2bd40afffc8?
> > 
> > And 69d65f9184006eac790efcff78a0e425160e95aa for -intel.
> > -Chris
> 
> I guess these are git commit id's? Which repository? I failed to find
> it in the kernel and the obvious intel drivers git.
> 
> I'd like to test possible fixes.
> 
The first two are git://anongit.freedesktop.org/git/xorg/xserver and the
third is git://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel.

Cheers,
Julien


signature.asc
Description: Digital signature


xserver-xorg-video-intel: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 debian/patches/i8xx-shadow.diff|2 +-
 debian/patches/shadow-no-dri2.diff |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a4e5ae6ba5724c4b14dca3fe5164c5de19ff2640
Author: Julien Cristau 
Date:   Mon Sep 20 19:35:23 2010 +0200

Fix stupid typo

diff --git a/debian/patches/i8xx-shadow.diff b/debian/patches/i8xx-shadow.diff
index 74788db..c152a79 100644
--- a/debian/patches/i8xx-shadow.diff
+++ b/debian/patches/i8xx-shadow.diff
@@ -29,4 +29,4 @@ Index: xserver-xorg-video-intel/src/intel_driver.c
 + xf86IsOptionSet(intel->Options, OPTION_SHADOW) ? 
X_CONFIG : X_DEFAULT,
   "Shadow buffer enabled,"
   " GPU acceleration disabled.\n");
-   intel->directRenderingType == DRI_DISABLED;
+   intel->directRenderingType = DRI_DISABLED;
diff --git a/debian/patches/shadow-no-dri2.diff 
b/debian/patches/shadow-no-dri2.diff
index f135106..ba8a4d6 100644
--- a/debian/patches/shadow-no-dri2.diff
+++ b/debian/patches/shadow-no-dri2.diff
@@ -19,7 +19,7 @@ Index: xserver-xorg-video-intel/src/intel_driver.c
xf86DrvMsg(scrn->scrnIndex, X_CONFIG,
   "Shadow buffer enabled,"
   " GPU acceleration disabled.\n");
-+  intel->directRenderingType == DRI_DISABLED;
++  intel->directRenderingType = DRI_DISABLED;
}
  
 +#ifdef DRI2


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxklg-0006m7...@alioth.debian.org



libdrm: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 debian/changelog  |6 
 include/drm/drm_mode.h|4 ++
 include/drm/i915_drm.h|4 +-
 include/drm/nouveau_drm.h |1 
 include/drm/radeon_drm.h  |4 ++
 include/drm/vmwgfx_drm.h  |   69 ++
 6 files changed, 85 insertions(+), 3 deletions(-)

New commits:
commit d457902970d1561d0f9d663839ec49a25930ab10
Author: Julien Cristau 
Date:   Mon Sep 20 16:51:13 2010 +0200

Add changelog entry

diff --git a/debian/changelog b/debian/changelog
index acf7005..e980fc9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdrm (2.4.21-1~squeeze3) unstable; urgency=low
+
+  * Update kernel drm headers.
+
+ -- Julien Cristau   Mon, 20 Sep 2010 16:51:11 +0200
+
 libdrm (2.4.21-1~squeeze2) unstable; urgency=low
 
   [ Sven Joachim ]

commit 57ebd699b73a7119cb422e43710f262cae1331a5
Author: Dave Airlie 
Date:   Wed Aug 4 08:41:23 2010 +1000

Copy headers from kernel drm-core-next
(cherry picked from commit 431f7f00db844534dbcf9a63da0d2832a3d91bff)

diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h
index 43009bc..0fc7397 100644
--- a/include/drm/drm_mode.h
+++ b/include/drm/drm_mode.h
@@ -74,6 +74,7 @@
 /* Dithering mode options */
 #define DRM_MODE_DITHERING_OFF 0
 #define DRM_MODE_DITHERING_ON  1
+#define DRM_MODE_DITHERING_AUTO 2
 
 /* Dirty info options */
 #define DRM_MODE_DIRTY_OFF  0
@@ -85,7 +86,7 @@ struct drm_mode_modeinfo {
__u16 hdisplay, hsync_start, hsync_end, htotal, hskew;
__u16 vdisplay, vsync_start, vsync_end, vtotal, vscan;
 
-   __u32 vrefresh; /* vertical refresh * 1000 */
+   __u32 vrefresh;
 
__u32 flags;
__u32 type;
@@ -160,6 +161,7 @@ struct drm_mode_get_encoder {
 #define DRM_MODE_CONNECTOR_HDMIA   11
 #define DRM_MODE_CONNECTOR_HDMIB   12
 #define DRM_MODE_CONNECTOR_TV  13
+#define DRM_MODE_CONNECTOR_eDP 14
 
 struct drm_mode_get_connector {
 
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h
index c040afa..7594413 100644
--- a/include/drm/i915_drm.h
+++ b/include/drm/i915_drm.h
@@ -617,8 +617,8 @@ struct drm_i915_gem_execbuffer2 {
__u32 num_cliprects;
/** This is a struct drm_clip_rect *cliprects */
__u64 cliprects_ptr;
-#define I915_EXEC_RENDER   (1 << 0)
-#define I915_EXEC_BSD  (1 << 1)
+#define I915_EXEC_RENDER (1<<0)
+#define I915_EXEC_BSD(1<<1)
__u64 flags;
__u64 rsvd1;
__u64 rsvd2;
diff --git a/include/drm/nouveau_drm.h b/include/drm/nouveau_drm.h
index a6a9f4a..fe917de 100644
--- a/include/drm/nouveau_drm.h
+++ b/include/drm/nouveau_drm.h
@@ -79,6 +79,7 @@ struct drm_nouveau_gpuobj_free {
 #define NOUVEAU_GETPARAM_CHIPSET_ID  11
 #define NOUVEAU_GETPARAM_VM_VRAM_BASE12
 #define NOUVEAU_GETPARAM_GRAPH_UNITS 13
+#define NOUVEAU_GETPARAM_PTIMER_TIME 14
 struct drm_nouveau_getparam {
uint64_t param;
uint64_t value;
diff --git a/include/drm/radeon_drm.h b/include/drm/radeon_drm.h
index ff97e48..3b762d6 100644
--- a/include/drm/radeon_drm.h
+++ b/include/drm/radeon_drm.h
@@ -902,6 +902,10 @@ struct drm_radeon_cs {
 #define RADEON_INFO_NUM_GB_PIPES   0x01
 #define RADEON_INFO_NUM_Z_PIPES0x02
 #define RADEON_INFO_ACCEL_WORKING  0x03
+#define RADEON_INFO_CRTC_FROM_ID   0x04
+#define RADEON_INFO_ACCEL_WORKING2 0x05
+#define RADEON_INFO_TILING_CONFIG  0x06
+#define RADEON_INFO_WANT_HYPERZ0x07
 
 struct drm_radeon_info {
uint32_trequest;
diff --git a/include/drm/vmwgfx_drm.h b/include/drm/vmwgfx_drm.h
index 47914bd..4d08423 100644
--- a/include/drm/vmwgfx_drm.h
+++ b/include/drm/vmwgfx_drm.h
@@ -50,6 +50,8 @@
 #define DRM_VMW_EXECBUF  12
 #define DRM_VMW_FIFO_DEBUG   13
 #define DRM_VMW_FENCE_WAIT   14
+/* guarded by minor version >= 2 */
+#define DRM_VMW_UPDATE_LAYOUT15
 
 
 /*/
@@ -88,6 +90,49 @@ struct drm_vmw_getparam_arg {
 
 /*/
 /**
+ * DRM_VMW_EXTENSION - Query device extensions.
+ */
+
+/**
+ * struct drm_vmw_extension_rep
+ *
+ * @exists: The queried extension exists.
+ * @driver_ioctl_offset: Ioctl number of the first ioctl in the extension.
+ * @driver_sarea_offset: Offset to any space in the DRI SAREA
+ * used by the extension.
+ * @major: Major version number of the extension.
+ * @minor: Minor version number of the extension.
+ * @pl: Patch level version number of the extension.
+ *
+ * Output argument to the DRM_VMW_EXTENSION Ioctl.
+ */
+
+struct drm_vmw_extension_rep {
+   int32_t exists;
+   uint32_t driver_ioctl_offset;
+   uint32_t driver_sarea_offset;
+   uint32_t major;
+   uint32_t minor;
+   uint32_t pl;
+   uint32_t pad64;
+};
+
+/**
+ * union drm_vmw_extension_arg
+ *
+ * @

libdrm: Changes to 'refs/tags/libdrm-2.4.21-1-squeeze3'

2010-09-20 Thread Julien Cristau
Tag 'libdrm-2.4.21-1-squeeze3' created by Julien Cristau  
at 2010-09-20 17:45 +

Tagging upload of libdrm 2.4.21-1~squeeze3 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAABCAAGBQJMl52+AAoJEDEBgAUJBeQMc9oQALIXzrvF+Q+Zuz0DshTjCpl5
jE3xQ6yacdfvi53AISHDrGOCTg/bcv3gS4AHx7/NE9aizL78sH3PvgCMvQMqMWKR
r6956DxmwIIG8kE1UDYyKyYnSZ6dSWpNyoxuCc2EB4cm4to43286I6LKv9yGpjIU
XHMS/ZIhbYIgpXoxUxx6VSSaZVdLj5UkioPtvLeqmpYUZbnGECia6STwOt9Ki+vr
yJbf6fA+4KNyF8NIjCPjEUgD+bCw7sXRuMp/i4lwEi2kxHs2aw0YuYI+KJmbVE5X
JyuN+re09nYOhC5tkKzJEAN25i2LyMP1px34dG/+x7cWbQEOhBvz5ijZ8FdjeMrZ
jnjj8DJ2PsKNufjnnmhr6kvu+DjPqtm9ReaK5XuLO3qVG5sRvWT7zfk2eUCn3pDD
F7bgY2jvsxu5b55i5h+Kp16DywgAIWNqbYTxCrzGfHje+OC/5YHXR7KAw3QM4hex
llZMuSMsVrKgHJncHMvmD7DIbpg3lOlYsQ06LRf79WcZakUJ28BWlsruJYKTgsUJ
lJe+w32Xc4JEN+ndfNYhpKI/0fNJT7/7oTv2IL2vpEI+O/svppqCBhbfq3aETnbt
ObfWka0+boJHXQJhJgPGwn02UVOA9q2l/V637vU6ECz2LGh1XeuuXsN4OrFVyp/9
jdx9Ju+hsXZynHJI+bWn
=6q+H
-END PGP SIGNATURE-

Changes since libdrm-2.4.21-1-squeeze2:
Dave Airlie (1):
  Copy headers from kernel drm-core-next

Julien Cristau (1):
  Add changelog entry

---
 debian/changelog  |6 
 include/drm/drm_mode.h|4 ++
 include/drm/i915_drm.h|4 +-
 include/drm/nouveau_drm.h |1 
 include/drm/radeon_drm.h  |4 ++
 include/drm/vmwgfx_drm.h  |   69 ++
 6 files changed, 85 insertions(+), 3 deletions(-)
---


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkse-0007wq...@alioth.debian.org



Processed: limit source to xserver-xorg-video-intel, tagging 576848, tagging 593199, tagging 570766 ...

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #xserver-xorg-video-intel (2:2.12.0+shadow-1) unstable; urgency=low
> #
> #  * Revert the come-back of UMS.  Update to upstream HEAD instead.
> #Closes: #594623, #594338.
> #  * Dropping UMS means its bugs are irrelevant, so this closes: #570766,
> ##594815.
> #  * Use shadowfb on i8xx by default.  Hopefully closes: #570988, #572105,
> ##576848, #592586, #593293.
> #  * New upstream doesn't assert() when running sm (closes: #593199).
> #
> limit source xserver-xorg-video-intel
Limiting to bugs with field 'source' containing at least one of 
'xserver-xorg-video-intel'
Limit currently set to 'source':'xserver-xorg-video-intel'

> tags 576848 + pending
Bug #576848 [xserver-xorg-video-intel] [855GM] X crashes shortly after desktop 
startup
Added tag(s) pending.
> tags 593199 + pending
Bug #593199 [xserver-xorg-video-intel] xserver-xorg-video-intel: often crashes 
at sm startup
Bug #597016 [xserver-xorg-video-intel] Xorg crashes when starting sm and typing
Added tag(s) pending.
Added tag(s) pending.
> tags 570766 + pending
Bug #570766 [xserver-xorg-video-intel] xserver-xorg-video-intel: System hangs 
on X startup (855GM, KMS disabled)
Added tag(s) pending.
> tags 594338 + pending
Bug #594338 [xserver-xorg-video-intel] [865G] xserver-xorg-video-intel: with 
KMS off, X is totally unusable
Added tag(s) pending.
> tags 594815 + pending
Bug #594815 [xserver-xorg-video-intel] [legacy ums 945gm] lockup on X startup
Added tag(s) pending.
> tags 570988 + pending
Bug #570988 [xserver-xorg-video-intel] [845G] Failed to submit batchbuffer: 
Input/output error
Added tag(s) pending.
> tags 572105 + pending
Bug #572105 [xserver-xorg-video-intel] [852GM] X11 hangs hard at startup
Added tag(s) pending.
> tags 594623 + pending
Bug #594623 [xserver-xorg-video-intel] xserver-xorg-video-intel: after upgrade 
to 2.12.0+legacy1-1 X freeze on gdm start
Bug #596598 [xserver-xorg-video-intel] xorg: (Intel 82852/855GM) Total machine 
hang as x starts, leaving blank screen
Added tag(s) pending.
Added tag(s) pending.
> tags 593293 + pending
Bug #593293 [xserver-xorg-video-intel] xorg: random crashes, must reboot to use 
X again
Added tag(s) pending.
> tags 592586 + pending
Bug #592586 [xserver-xorg-video-intel] xserver-xorg-video-intel: Rendering 
issues: Detected a hung GPU, disabling acceleration
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
592586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592586
593199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593199
576848: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576848
570766: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570766
594815: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594815
594338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594338
572105: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572105
570988: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570988
594623: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594623
593293: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593293
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.12850049108723.transcr...@bugs.debian.org



Processing of xorg-server_1.7.7-7_i386.changes

2010-09-20 Thread Archive Administrator
xorg-server_1.7.7-7_i386.changes uploaded successfully to localhost
along with the files:
  xorg-server_1.7.7-7.dsc
  xorg-server_1.7.7-7.diff.gz
  xserver-common_1.7.7-7_all.deb
  xserver-xorg-core_1.7.7-7_i386.deb
  xserver-xorg-core-udeb_1.7.7-7_i386.udeb
  xserver-xorg-dev_1.7.7-7_i386.deb
  xdmx_1.7.7-7_i386.deb
  xdmx-tools_1.7.7-7_i386.deb
  xnest_1.7.7-7_i386.deb
  xvfb_1.7.7-7_i386.deb
  xserver-xephyr_1.7.7-7_i386.deb
  xserver-xfbdev_1.7.7-7_i386.deb
  xserver-xorg-core-dbg_1.7.7-7_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkcg-0006rn...@franck.debian.org



Processing of libdrm_2.4.21-1~squeeze3_i386.changes

2010-09-20 Thread Archive Administrator
libdrm_2.4.21-1~squeeze3_i386.changes uploaded successfully to localhost
along with the files:
  libdrm_2.4.21-1~squeeze3.dsc
  libdrm_2.4.21-1~squeeze3.diff.gz
  libdrm-dev_2.4.21-1~squeeze3_i386.deb
  libdrm2_2.4.21-1~squeeze3_i386.deb
  libdrm2-dbg_2.4.21-1~squeeze3_i386.deb
  libdrm-intel1_2.4.21-1~squeeze3_i386.deb
  libdrm-intel1-dbg_2.4.21-1~squeeze3_i386.deb
  libdrm-nouveau1_2.4.21-1~squeeze3_i386.deb
  libdrm-nouveau1-dbg_2.4.21-1~squeeze3_i386.deb
  libdrm-radeon1_2.4.21-1~squeeze3_i386.deb
  libdrm-radeon1-dbg_2.4.21-1~squeeze3_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkcg-0006sg...@franck.debian.org



xserver-xorg-video-intel: Changes to 'debian-unstable'

2010-09-20 Thread Julien Cristau
 debian/changelog |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 7997f9a03e831e1182c5b575e1bc6018a4d59885
Author: Julien Cristau 
Date:   Mon Sep 20 19:47:25 2010 +0200

Upload to unstable

diff --git a/debian/changelog b/debian/changelog
index 9eb0b7d..a3b51c4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-video-intel (2:2.12.0+shadow-1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.12.0+shadow-1) unstable; urgency=low
 
   * Revert the come-back of UMS.  Update to upstream HEAD instead.
 Closes: #594623, #594338.
@@ -10,7 +10,7 @@ xserver-xorg-video-intel (2:2.12.0+shadow-1) UNRELEASED; 
urgency=low
 #576848, #592586, #593293.
   * New upstream doesn't assert() when running sm (closes: #593199).
 
- -- Julien Cristau   Mon, 20 Sep 2010 16:31:16 +0200
+ -- Julien Cristau   Mon, 20 Sep 2010 19:44:14 +0200
 
 xserver-xorg-video-intel (2:2.12.0+legacy1-1) unstable; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkdg-0001ip...@alioth.debian.org



xserver-xorg-video-intel: Changes to 'refs/tags/xserver-xorg-video-intel-2_2.12.0+shadow-1'

2010-09-20 Thread Julien Cristau
Tag 'xserver-xorg-video-intel-2_2.12.0+shadow-1' created by Julien Cristau 
 at 2010-09-20 17:47 +

Tagging upload of xserver-xorg-video-intel 2:2.12.0+shadow-1 to unstable.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAABCAAGBQJMl55AAAoJEDEBgAUJBeQMwpIP/18+6FS+5SNIEaHtzrbkEzgw
F2St+10S3KnTqwCScSgjMafWOzIv9S1qIhzss5SZmrNHggbGxsh6UCuh04y/CIhg
qusyWSULpM8xByxngr0rpO10n/sWEcPDP0oxVYDKmdJQSzuN3O10tUuWnA4RPupd
UWttFl+WNHEbQPBs+pJw3Ta/p0IbZwwNlScubrc26IMewFO/yBip4pwhkb/b6INR
jYzVSni2KWGUtugDVE4/GNjZzASNGWvSuq/x5fkk6O9R83VbVEdlmViUga1/jyin
1wl7uogkZ8LPAdnFoJAZszEqpE8Fu+vmNl25WDdkyOc7IFWlGBybDH8kpk129PxW
KAe3I0vMQqfn+njmqGg7XjpxI3qbfkc+dap/f0uwyMGQMhkrNUP8awuys+7OUzR+
mIE2dlArKEwu6cNTquF03NQ9D7qHeznkfaHMry+3u0eDPK8j8FrnGNickuLMh+FQ
e4uQZMKazVHn6Qlat22ilLAxHJQ2koG+fLMIF4h/sbXCZeJ3D+GR6FMMUt9SwLhZ
6jyLC69CsERFwP2M9LoT+OcPb5UaDR89r6TlgjnzBi7VoY+NhaRjuMRmD1lbsdTi
9yEldMwe6CdyD1A0Uc9qBm4pS87p6m/lgbTioGROCQCkBk4VLBbVWJDy4gSMrFQ6
s3z9ed0G7X1MUHQAwkz9
=x09b
-END PGP SIGNATURE-

Changes since xserver-xorg-video-intel-2_2.12.0+legacy1-1:
Chris Wilson (38):
  video: Copy DummyEncoding into each adapter.
  video: Apply overlay stride errata for i830 and i845
  modes: There may be more than one crtc and output... DESTROY THEM ALL!
  Remove the duplicate drmmode prototypes.
  Teardown the bufmgr on shutdown as well.
  Workaround a broken container_of define in list.h
  video: Reuse the old buffers.
  video: Free the buffers immediately after turning off.
  uxa: Check for failed pixmap allocation
  video/i915: ValidateGC after setting clip.
  drmmode: Only treat a backlight as connected if it has a non-zero max
  Rename drmmode_display to intel_display
  intel_display: Miscellaneous tidy
  Remove the final references to the drmmode prefix
  display: Check for buffer overrun in output name lookup.
  display: Tidy backlight initialisation
  display: Handle cursor error paths.
  display: Embed the lvds size into the connector
  display: Cache whether we have probed for an EDID
  Revert "display: Cache whether we have probed for an EDID"
  display: Refactor EDID attachment to output.
  display: Minor cleanup for adding extra LVDS modes
  display: outputs are enabled automatically by KMS
  Move registration of vsync fd from pre-init to screen-init
  Open-code DRICreatePCIBusID()
  Remove accel_pitch_alignment
  display: Use the native intel backlight controller
  Leave adjustment of backlight to the driver.
  uxa: Fallback if faced with large A1 glyphs.
  Revert "Leave adjustment of backlight to the driver."
  Force use of GTT and fence registers for mapping tiled objects
  display: Set MONITOR_EDID_COMPLETE_RAWDATA for large EDIDs
  display: Query current level after finding max value.
  Enable a shadow buffer and disable GPU acceleration.
  display: Free the EDID blob after we copy it to the output, not before.
  shadow: Simply modify the Screen pixmap header
  uxa: Apply source clipping to blits
  Add alternate pci-id for B43

Daniel Vetter (2):
  video: kernel overlay needs triple buffering
  video: kill do { ... } while (ret != -EINTR) loops

Dave Airlie (2):
  intel: respect tiling disable.
  intel: add output names for later additions to kernel

Fernando Carrijo (1):
  Purge macro NEED_EVENTS

Gaetan Nadon (11):
  config: upgrade to util-macros 1.8 for additional man page support
  config: update AC_PREREQ statement to 2.60
  config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
  config: remove unrequired AC_HEADER_STDC
  config: remove unrequired AC_SUBST([DRI_CFLAGS])
  config: complete AC_INIT m4 quoting
  config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
  config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
  config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
  config: add comments for main statements
  simplify Makefile as per-target compilation flags are not needed

Jesse Barnes (5):
  configure.ac: add xi and gl requirements
  Revert "configure.ac: add xi and gl requirements"
  KMS: add fake EDID on eDP too
  KMS: rename LVDS fields to reflect actual usage
  KMS: initialize backlight support for eDP panels too

Julien Cristau (19):
  Revert "legacy/ums: fix distcheck"
  Revert "legacy/ums/Xv overlay: fix planar YUV copy for right rotated 
crtcs"
  Revert "legacy/ums: Don't use uninitialised methods for synchronisation"
  Revert "legacy/ums: #include "
  Revert "legacy/ums/dri: Enable framebuffer mapping for dri"
  Revert "legacy/ums/i965: we do not handle SourcePictures"
  Revert "legacy/ums: Fix build with DRI disabled"
  Revert "legacy/ums: Re-add missing HWS initialisation"
  Revert "ums: ChangeGC changed prototype in 1.8.99, not 1.7.98"
  Revert "Reintegrate legacy

Processing of xserver-xorg-video-intel_2.12.0+shadow-1_i386.changes

2010-09-20 Thread Archive Administrator
xserver-xorg-video-intel_2.12.0+shadow-1_i386.changes uploaded successfully to 
localhost
along with the files:
  xserver-xorg-video-intel_2.12.0+shadow-1.dsc
  xserver-xorg-video-intel_2.12.0+shadow.orig.tar.gz
  xserver-xorg-video-intel_2.12.0+shadow-1.diff.gz
  xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb
  xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkhw-fp...@franck.debian.org



Bug#594927: marked as done (xorg-server: FTBFS on sparc64)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:02:53 +
with message-id 
and subject line Bug#594927: fixed in xorg-server 2:1.7.7-7
has caused the Debian Bug report #594927,
regarding xorg-server: FTBFS on sparc64
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
594927: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594927
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xorg-server
Version: 1.7.7-4
Severity: normal
Tags: patch
User: debian-sp...@lists.debian.org
Usertags: sparc64

xorg-server fails to build from source on sparc64 as it doesn't 
build-depend on libudev-dev, libselinux1-dev and libaudit-dev on this
architecture.

Instead of adding yet another linux architecture to the list, I suggest
to use an architecture wildcard (this is now allowed by the policy), as
in the patch below:

diff -u xorg-server-1.7.7/debian/control xorg-server-1.7.7/debian/control
--- xorg-server-1.7.7/debian/control
+++ xorg-server-1.7.7/debian/control
@@ -49,9 +49,9 @@
  nettle-dev,
  libdbus-1-dev [kfreebsd-amd64 kfreebsd-i386],
  libhal-dev [kfreebsd-amd64 kfreebsd-i386],
- libudev-dev (>= 151-3) [alpha amd64 arm armeb armel avr32 hppa i386 ia64 m32r 
m68k mips mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc],
- libselinux1-dev (>= 2.0.80) [alpha amd64 arm armeb armel avr32 hppa i386 ia64 
m32r m68k mips mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc],
- libaudit-dev [alpha amd64 arm armeb armel avr32 hppa i386 ia64 m32r m68k mips 
mipsel powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc],
+ libudev-dev (>= 151-3) [linux-any],
+ libselinux1-dev (>= 2.0.80) [linux-any],
+ libaudit-dev [linux-any],
  x11proto-xf86dri-dev (>= 2.1.0),
  libdrm-dev (>= 2.4.3) [!hurd-i386],
  x11proto-gl-dev (>= 1.4.9),


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: sparc64

Kernel: Linux 2.6.32-bpo.5-sparc64-smp (SMP w/32 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


--- End Message ---
--- Begin Message ---
Source: xorg-server
Source-Version: 2:1.7.7-7

We believe that the bug you reported is fixed in the latest version of
xorg-server, which is due to be installed in the Debian FTP archive:

xdmx-tools_1.7.7-7_i386.deb
  to main/x/xorg-server/xdmx-tools_1.7.7-7_i386.deb
xdmx_1.7.7-7_i386.deb
  to main/x/xorg-server/xdmx_1.7.7-7_i386.deb
xnest_1.7.7-7_i386.deb
  to main/x/xorg-server/xnest_1.7.7-7_i386.deb
xorg-server_1.7.7-7.diff.gz
  to main/x/xorg-server/xorg-server_1.7.7-7.diff.gz
xorg-server_1.7.7-7.dsc
  to main/x/xorg-server/xorg-server_1.7.7-7.dsc
xserver-common_1.7.7-7_all.deb
  to main/x/xorg-server/xserver-common_1.7.7-7_all.deb
xserver-xephyr_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xephyr_1.7.7-7_i386.deb
xserver-xfbdev_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xfbdev_1.7.7-7_i386.deb
xserver-xorg-core-dbg_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-core-dbg_1.7.7-7_i386.deb
xserver-xorg-core-udeb_1.7.7-7_i386.udeb
  to main/x/xorg-server/xserver-xorg-core-udeb_1.7.7-7_i386.udeb
xserver-xorg-core_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-core_1.7.7-7_i386.deb
xserver-xorg-dev_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-dev_1.7.7-7_i386.deb
xvfb_1.7.7-7_i386.deb
  to main/x/xorg-server/xvfb_1.7.7-7_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 594...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau  (supplier of updated xorg-server package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Sep 2010 15:26:56 +0200
Source: xorg-server
Binary: xserver-xorg-core xserver-xorg-core-udeb xserver-xorg-dev xdmx 
xdmx-tools xnest xvfb xserver-xephyr xserver-xfbdev xserver-xorg-core-dbg 
xserver-common
Architecture: source all i386
Version: 2:1.7.7-7
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Julien Cristau 
Description: 
 xdmx   - distributed multihead X server
 xdmx-tools - Distributed Multihead X tools
 xnest  - Nested X server
 xserver-common - common files used by various X servers
 xse

libdrm_2.4.21-1~squeeze3_i386.changes ACCEPTED into unstable

2010-09-20 Thread Debian FTP Masters



Accepted:
libdrm-dev_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-dev_2.4.21-1~squeeze3_i386.deb
libdrm-intel1-dbg_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-intel1-dbg_2.4.21-1~squeeze3_i386.deb
libdrm-intel1_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-intel1_2.4.21-1~squeeze3_i386.deb
libdrm-nouveau1-dbg_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-nouveau1-dbg_2.4.21-1~squeeze3_i386.deb
libdrm-nouveau1_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-nouveau1_2.4.21-1~squeeze3_i386.deb
libdrm-radeon1-dbg_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-radeon1-dbg_2.4.21-1~squeeze3_i386.deb
libdrm-radeon1_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm-radeon1_2.4.21-1~squeeze3_i386.deb
libdrm2-dbg_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm2-dbg_2.4.21-1~squeeze3_i386.deb
libdrm2_2.4.21-1~squeeze3_i386.deb
  to main/libd/libdrm/libdrm2_2.4.21-1~squeeze3_i386.deb
libdrm_2.4.21-1~squeeze3.diff.gz
  to main/libd/libdrm/libdrm_2.4.21-1~squeeze3.diff.gz
libdrm_2.4.21-1~squeeze3.dsc
  to main/libd/libdrm/libdrm_2.4.21-1~squeeze3.dsc


Override entries for your package:
libdrm-dev_2.4.21-1~squeeze3_i386.deb - optional libdevel
libdrm-intel1-dbg_2.4.21-1~squeeze3_i386.deb - extra debug
libdrm-intel1_2.4.21-1~squeeze3_i386.deb - optional libs
libdrm-nouveau1-dbg_2.4.21-1~squeeze3_i386.deb - extra debug
libdrm-nouveau1_2.4.21-1~squeeze3_i386.deb - optional libs
libdrm-radeon1-dbg_2.4.21-1~squeeze3_i386.deb - extra debug
libdrm-radeon1_2.4.21-1~squeeze3_i386.deb - optional libs
libdrm2-dbg_2.4.21-1~squeeze3_i386.deb - extra debug
libdrm2_2.4.21-1~squeeze3_i386.deb - optional libs
libdrm_2.4.21-1~squeeze3.dsc - source libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkha-mo...@franck.debian.org



xorg-server_1.7.7-7_i386.changes ACCEPTED into unstable

2010-09-20 Thread Debian FTP Masters



Accepted:
xdmx-tools_1.7.7-7_i386.deb
  to main/x/xorg-server/xdmx-tools_1.7.7-7_i386.deb
xdmx_1.7.7-7_i386.deb
  to main/x/xorg-server/xdmx_1.7.7-7_i386.deb
xnest_1.7.7-7_i386.deb
  to main/x/xorg-server/xnest_1.7.7-7_i386.deb
xorg-server_1.7.7-7.diff.gz
  to main/x/xorg-server/xorg-server_1.7.7-7.diff.gz
xorg-server_1.7.7-7.dsc
  to main/x/xorg-server/xorg-server_1.7.7-7.dsc
xserver-common_1.7.7-7_all.deb
  to main/x/xorg-server/xserver-common_1.7.7-7_all.deb
xserver-xephyr_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xephyr_1.7.7-7_i386.deb
xserver-xfbdev_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xfbdev_1.7.7-7_i386.deb
xserver-xorg-core-dbg_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-core-dbg_1.7.7-7_i386.deb
xserver-xorg-core-udeb_1.7.7-7_i386.udeb
  to main/x/xorg-server/xserver-xorg-core-udeb_1.7.7-7_i386.udeb
xserver-xorg-core_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-core_1.7.7-7_i386.deb
xserver-xorg-dev_1.7.7-7_i386.deb
  to main/x/xorg-server/xserver-xorg-dev_1.7.7-7_i386.deb
xvfb_1.7.7-7_i386.deb
  to main/x/xorg-server/xvfb_1.7.7-7_i386.deb


Override entries for your package:
xdmx-tools_1.7.7-7_i386.deb - optional x11
xdmx_1.7.7-7_i386.deb - optional x11
xnest_1.7.7-7_i386.deb - optional x11
xorg-server_1.7.7-7.dsc - source x11
xserver-common_1.7.7-7_all.deb - optional x11
xserver-xephyr_1.7.7-7_i386.deb - optional x11
xserver-xfbdev_1.7.7-7_i386.deb - optional x11
xserver-xorg-core-dbg_1.7.7-7_i386.deb - extra debug
xserver-xorg-core-udeb_1.7.7-7_i386.udeb - optional debian-installer
xserver-xorg-core_1.7.7-7_i386.deb - optional x11
xserver-xorg-dev_1.7.7-7_i386.deb - optional x11
xvfb_1.7.7-7_i386.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 594927 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkhz-mp...@franck.debian.org



Processed: Re: Bug#597475: debian-installer: Screen flashes on and off after fresh installation of squeeze.

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 597475 xserver-xorg-core
Bug #597475 [debian-installer] debian-installer: Screen flashes on and off 
after fresh installation of squeeze.
Bug reassigned from package 'debian-installer' to 'xserver-xorg-core'.
> severity 597475 important
Bug #597475 [xserver-xorg-core] debian-installer: Screen flashes on and off 
after fresh installation of squeeze.
Severity set to 'important' from 'critical'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
597475: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597475
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128500664523162.transcr...@bugs.debian.org



Bug#570766: marked as done (xserver-xorg-video-intel: System hangs on X startup (855GM, KMS disabled))

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#570766: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #570766,
regarding xserver-xorg-video-intel: System hangs on X startup (855GM, KMS 
disabled)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
570766: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=570766
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.9.1-2
Severity: important


Hello everyone,

I experience the following problem with the intel driver on my ThinkPad X40:

When KMS is disabled (e. g. by commenting the modeset option for the i915
module), the whole system hangs at X startup. The screen is blank, no keys have
any effect (not even Alt+SysRq combinations). This happens whether kdm or
startx are used. 
When enabling KMS, the system works okay (no XVideo, somewhat less stable). 
Unfortunately, the X-server seems to crash before
writing any info to syslog or Xorg.0.log. The attached file is from the system
running with KMS enabled. I will try to gather some more info by ssh-ing to
the machine and starting X. If there is any other way I can supply more
information, I will gladly do so.
Tagged as important as it breaks X (without KMS) or means loss of quite some
functinality (with KMS).

Regards,

Soenke


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Apr 22  2009 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1710344 Jan 21 00:01 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 827 Dec 21 21:01 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Device"
Identifier  "intel 855gm"
Driver  "intel"
#Option "DRI"   "false"
EndSection

Section "Screen"
Identifier  "screen default"
SubSection "Display"
Virtual 2048 2048
EndSubSection
EndSection


Xorg X server log files on system:
-rw--- 1 root root 57508 Nov  2 21:00 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 31617 Feb 21 11:13 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-trunk-686 i686 Debian
Current Operating System: Linux lydia 2.6.32-2-686 #1 SMP Thu Feb 11 04:08:42 
UTC 2010 i686
Kernel command line: root=/dev/hda1 ro quiet resume=/dev/hda3 hpet=force splash
Build Date: 20 January 2010  10:52:55PM
xorg-server 2:1.7.4-2 (bgog...@debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 20 11:28:45 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "screen default" (0)
(**) |   |-->Monitor ""
(==) No device specified for screen "screen default".
Using the first device section listed.
(**) |   |-->Device "intel 855gm"
(==) No monitor specified for screen "screen default".
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11

Bug#572105: marked as done ([852GM] X11 hangs hard at startup)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#572105: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #572105,
regarding [852GM] X11 hangs hard at startup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
572105: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572105
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Subject: xserver-xorg-video-intel: X11 hangs hard at startup (intel driver)
Package: xserver-xorg-video-intel
Version: 2:2.9.1-2
Severity: important

*** Please type your report below this line ***
I have here an embedded device for which I used Debian etch, it's X11-system 
using
the X11-i810 driver. That worked so far so got.

As it is an embedded device. It has a fixed 800x600 LCD panel attached to
it via LVDS.  *No* standard monitor.  I'm using not a Debian-provided
kernel because I need some local driver additions.  So I'm on a standard
"stable" Linux kernel (2.6.31.6), with some patches on top of it.  The
patches are the same for the "Debain Etch" and for the "Debian Sid" system.

Both Etch+Sid boot first in Linux' vesafb, due to some bootsplash solution.
When X11 starts, Etch loads the X11-i810fb, and SID loads it's intel driver,
intel_drv.so.

But only the SID-System hangs completely, e.g. I have to issue power-cycle
(the device doesn't have a reset button).

Additional things I noticed:

* it hangs with the attached xorg.conf
* it hangs with a xorg.conf created with "X -configure". The configure
  step itself doesn't hang!
* it also hangs with no xorg.conf file at all
* adding or removing the Accell-method-XAA stuff doesn't change anything
* it hangs when started with Linux' vesafb activated, but also when
  no framebuffer driver is preset and Linux is text mode
* the xserver-xorg-video-vesa driver seems to work, but is very slow
  at DDC time, about 3 seconds delay. It can also not rotate the screen
  display, so this driver as a fallback is no option.

Because of the hard hang the Xorg.0.log file doesn't get written to the
compact-flash based hard disk.  However, I did the following trick: on the
device, I started X.  On an SSH session into the device, I started "tail -f
/var/log/Xorg.0.log" shortly afterwards. This gives me some output. However,
it could even be the case that the real output that shows the hang occured,
but because of the hard-hang wasn't transferred via ssh+e100-network
interface to my development box.  But on the other side, the last line in
the log below is always the last line that I get:


# tail -f /var/log/Xorg.0.log   
  
(II) The server relies on udev to provide the list of input devices.
   
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81e7020
   
(II) Module ABI versions:   
   
X.Org ANSI C Emulation: 0.4 
   
X.Org Video Driver: 6.0 
   
X.Org XInput driver : 7.0   
   
X.Org Server Extension : 2.0
   
(--) using VT number 7  
   

(--) PCI:*(0:0:2:0) 8086:3582:8086:3582 Intel Corporation 82852/855GM 
Integrated Graphics Device rev 2, Mem @ 0xd800/134217728, 
0xe818/524288, I/O @ 0xe300/8   
  
(--) PCI: (0:0:2:1) 8086:3582:8086:3582 Intel Corporation 82852/855GM 
Integrated Graphics Device rev 2, Mem @ 0xe000/134217728, 0xe810/524288 

(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)   
   
(II) LoadModule: "extmod"   
   
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so  
   
(II) Module extmod: vendor="X.Org Foun

Bug#576848: marked as done ([855GM] X crashes shortly after desktop startup)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#576848: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #576848,
regarding [855GM] X crashes shortly after desktop startup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
576848: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576848
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.9.1-3
Severity: important


Hi there,

After upgrading to squeeze, X11 crashes a few seconds after startup on my JVC 
MP-XP731 with a 855GM. 
The screen goes blank, no VT switching possible. SSH'ing in still works. I 
tried with a new user account to rule
out any old-config issues: same result. Funny thing is GDM works okay. I can 
also start a sole X from commandline and
can even run glxgears, so maybe it's an issue with UXA render accel. I cannot 
use UMS either: when booting with i915 modeset=0,
the screen just goes blank on X startup, no Xorg log written, no ssh possible. 
So right now i'm sticking with vesa (which is not
working at all with kms turned on, but that's another issue).

I also tried 2.6.30 kernel image and 2.6.33 from experimental, with different 
log output, but same overall results.
I can post the logs if neccesary.

Trying out different intel drivers makes no big difference as well. With intel 
2.11 from experimental X locks up instead 
of crashing and VT switching is still possible, but that's it. Compiling older 
intel driver releases proved difficult
as they rely on headers that X.org is not providing anymore since 7.1 or so.


Here's the output of startx:
snip---
xauth:  creating new authority file /home/test/.Xauthority
xauth:  creating new authority file /home/test/.Xauthority


X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32.10-dsa-ia32 i686 Debian
Current Operating System: Linux joe 2.6.32-3-686 #1 SMP Thu Feb 25 06:14:20 UTC 
2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-3-686 
root=UUID=42eea0ab-800e-4a54-823e-7de67467ca52 ro quiet
Build Date: 23 March 2010  10:07:02PM
xorg-server 2:1.7.6-1 (Cyril Brulebois ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr  7 19:54:29 2010
(==) Using default built-in configuration (30 lines)
FATAL: Module fbcon not found.
SELinux: Disabled on system, not enabling in X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
> Warning:  Type "ONE_LEVEL" has 1 levels, but  has 2 symbols
>   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
(EE) "Logitech USB Receiver": failed to initialize for relative axes.
../../intel/intel_bufmgr_gem.c:983: Error setting domain 27: Input/output error
../../intel/intel_bufmgr_gem.c:983: Error setting domain 27: Input/output error
../../intel/intel_bufmgr_gem.c:983: Error setting domain 27: Input/output error

Fatal server error:
Failed to submit batchbuffer: Input/output error


Please consult the The X.Org Foundation support 
 at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional 
information.

X: ../../src/i830_batchbuffer.h:79: intel_batch_emit_dword: Assertion 
`pI830->batch_ptr != ((void *)0)' failed.
xinit:  connection to X server lost.

waiting for X server to shut down 
---snap---


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Aug 23  2007 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1712764 Mar 23 23:13 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)

/etc/X11/xorg.conf does not exist.

Xorg X server log files on system:
-rw-r--r-- 1 root root 28326 Apr  7 19:55 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.6
Release Date: 2010-03-17
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32.10-dsa-ia32 i686 Debian
Current Operating System: Linux joe 2.6.32-3

Bug#592586: marked as done (xserver-xorg-video-intel: Rendering issues: Detected a hung GPU, disabling acceleration)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#592586: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #592586,
regarding xserver-xorg-video-intel: Rendering issues: Detected a hung GPU, 
disabling acceleration
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
592586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=592586
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.12.0-1
Severity: important

This seems to be triggered by apps using accelerated video or 3d. This time
it was warzone2100 but I've seen it before with just a few terminals and a
web browser.

The first symptom is that the (fullscreen) display of the game seems to freeze.
The mouse cursor is not drawn although I can tell from audible feedback that
the game is still running and keypresses seem to have the expected effect.

I'm using the awesome window manager. Switching to another tag displays the
desktop background fine. The awesome toolbars and widgets are drawn but with
some gaps and any text is quite fuzzy as though being drawn multiple times at
slightly differing pixel offsets. At this point I can see the mouse cursor
again.

Other (less-accelerated) apps show different levels of corruption. For example,
in rxvt, the cursor and any ncurses-drawn widgets are missing, but text is for
the most part ok. xterm on the other hand appears to have no problems at all.

Switching VT and the text framebuffer console seems to work with no issues.

The included Xorg.0.log in the Package-specific info is for X after being 
restarted
twice. Unfortunately the log for the original problem occurence is gone. After
restarting X once I tried to run warzone2100 again at which point X crashed. The
log for that brief session includes these lines:

=== BEGIN ==
(EE) intel(0): Detected a hung GPU, disabling acceleration.

Backtrace:
0: /usr/bin/X (xorg_backtrace+0x3b) [0x80d91fb]
1: /usr/bin/X (0x8048000+0x581d5) [0x80a01d5]
2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb771340c]
3: /usr/lib/xorg/modules/extensions/libdri2.so (0xb7343000+0x1d8c) [0xb7344d8c]
4: /usr/bin/X (0x8048000+0x38067) [0x8080067]
5: /usr/bin/X (0x8048000+0x1e92a) [0x806692a]
6: /lib/i686/cmov/libc.so.6 (__libc_start_main+0xe6) [0xb744ac76]
7: /usr/bin/X (0x8048000+0x1e511) [0x8066511]
Segmentation fault at address (nil)

Fatal server error:
Caught signal 11 (Segmentation fault). Server aborting
===  END  ==

Some interesting lines from the kernel log:
(edited to remove wireless decrypt failures)
=== BEGIN ==
[   11.151745] [drm] Initialized drm 1.1.0 20060810
[   11.808500] i915 :00:02.0: power state changed by ACPI to D0
[   11.808551] i915 :00:02.0: power state changed by ACPI to D0
[   11.808560] i915 :00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[   11.808567] i915 :00:02.0: setting latency timer to 64
[   11.813074] [drm] set up 7M of stolen space
[   11.842095] [drm] initialized overlay support
[   12.967093] Console: switching to colour frame buffer device 128x48
[   12.977492] fb0: inteldrmfb frame buffer device
[   12.977495] registered panic notifier
[   12.980259] [drm] Initialized i915 1.6.0 20080730 for :00:02.0 on minor 0
[   13.652816] Intel ICH :00:1f.5: PCI INT B -> GSI 17 (level, low) -> IRQ 
17
[   13.652846] Intel ICH :00:1f.5: setting latency timer to 64
[168514.348021] [drm:i915_hangcheck_elapsed] *ERROR* Hangcheck timer elapsed... 
GPU hung
[168514.348034] render error detected, EIR: 0x
[168514.348047] [drm:i915_do_wait_request] *ERROR* i915_do_wait_request returns 
-5 (awaiting 13806744 at 13806727)
===  END  ==


I previously reported a similar issue as #582975. That got no response and
the symptoms were different enough that I thought a separate report was in
order.


-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Jun  3  2006 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1725304 Jul 15 17:15 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated 
Graphics Device (rev 02)

/etc/X11/xorg.conf does not exist.

Kernel version (/proc/version):
Linux version 2.6.32-5-686 (Debian 2.6.32-18) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Sat Jul 24 02:27:10 UTC 2010

Xorg X server log files on s

Bug#593199: marked as done (xserver-xorg-video-intel: often crashes at sm startup)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#593199: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #593199,
regarding xserver-xorg-video-intel: often crashes at sm startup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
593199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.12.0-1
Severity: normal

Hi,

I'm using xserver-xorg-video-intel from Debian experimental.
the X server crashes when I start sm (from the screen-message package).
It's not 100% reproducible, but it crashes at least 50% of the times.

- Lucas

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Dec  8  2008 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1878528 Jul 15 17:31 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller (rev 07)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1301 Aug 20  2009 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "fr"
Option  "XkbVariant""latin9"
Option "XkbOptions" "terminate:ctrl_alt_bksp" 
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
EndSection

Section "Device"
Identifier  "Configured Video Device"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
Subsection "Display"
Virtual 2048 2048
Depth 24
Modes "1280x800"
EndSubSection
EndSection

Section "ServerFlags"
Option "DontZap" "yes"
EndSection


Kernel version (/proc/version):
Linux version 2.6.32-5-amd64 (Debian 2.6.32-18) (b...@decadent.org.uk) (gcc 
version 4.3.5 (Debian 4.3.5-2) ) #1 SMP Sat Jul 24 01:47:24 UTC 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 2289923 Dec 16  2009 /var/log/Xorg.1.log
-rw-r--r-- 1 root root   24884 Aug 16 09:15 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 x86_64 Debian
Current Operating System: Linux beothuk 2.6.32-5-amd64 #1 SMP Sat Jul 24 
01:47:24 UTC 2010 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-amd64 
root=UUID=a6bea0d1-eb79-4bbf-8d04-8da40298aad9 ro acpi_osi=!Window2006 
processor.ignore_ppc=1
Build Date: 15 July 2010  03:08:26PM
xorg-server 2:1.7.7-3 (Cyril Brulebois ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Aug 16 09:15:03 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Configured Monitor"
(==) No device specified for screen "Default Screen".
Using the first device section listed.
(**) |   |-->Device "Co

Bug#597016: marked as done (Xorg crashes when starting sm and typing)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:35 +
with message-id 
and subject line Bug#593199: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #593199,
regarding Xorg crashes when starting sm and typing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
593199: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593199
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg
Version: 1:7.5+7
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

since recently (can’t pin-point it), I can crash my X server when I run
sm (from the package of the same name) and start to type a letter.

It does not crash if I press Esc (to clear the screen message display),
or when I start sm with another text from the command line.

I suspect it might be related to some of the packages I have installed
from experimental:

 apt-show-versions |grep exper
 firmware-linux-free/experimental uptodate 2.6.35-1~experimental.3
 libdrm-dev/experimental uptodate 2.4.21-2
 libdrm-intel1/experimental uptodate 2.4.21-2
 libdrm-nouveau1/experimental uptodate 2.4.21-2
 libdrm-radeon1/experimental uptodate 2.4.21-2
 libdrm2/experimental uptodate 2.4.21-2
 libgl1-mesa-dev/experimental uptodate 7.8.2-2
 libgl1-mesa-dri/experimental uptodate 7.8.2-2
 libgl1-mesa-glx/experimental uptodate 7.8.2-2
 libkms1/experimental uptodate 2.4.21-2
 linux-base/experimental uptodate 2.6.35-1~experimental.3
 linux-headers-2.6.34-1-amd64 2.6.34-1~experimental.2 installed: No available 
version in archive
 linux-headers-2.6.34-1-common 2.6.34-1~experimental.2 installed: No available 
version in archive
 linux-image-2.6.34-1-amd64 2.6.34-1~experimental.2 installed: No available 
version in archive
 linux-image-2.6.35-trunk-amd64/experimental uptodate 2.6.35-1~experimental.3
 linux-kbuild-2.6.34 2.6.34-1~experimental.1 installed: No available version in 
archive
 mesa-common-dev/experimental uptodate 7.8.2-2

Unfortunately, neither /var/log/Xorg.0.log.old nor dmesg give any
information about the crash.

This is on a ThinkPad T400, using the internal chipset by Intel.

Thanks,
Joachim


- -- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Dec 19  2008 /etc/X11/X -> /usr/bin/Xorg
- -rwxr-xr-x 1 root root 1881152 Sep  8 20:44 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller (rev 07)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
- -rw-r--r-- 1 root root 1353 Nov  1  2009 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

#Section "InputDevice"
#   Identifier  "Generic Keyboard"
#   Driver  "evdev"
#   Option  "device""/dev/input/event1"
#   Option  "XkbRules"  "xorg"
#   Option  "XkbModel"  "pc105"
#   Option  "XkbLayout" "de"
#   Option  "XkbVariant""nodeadkeys"
#EndSection

# Section "InputDevice"
#   Identifier  "Configured Mouse"
#   Driver  "mouse"
# EndSection
# 
# Section "Device"
#   Identifier  "Configured Video Device"
#   Driver  "intel"
# EndSection
# 
# Section "Monitor"
#   Identifier  "Configured Monitor"
# EndSection
# 
# Section "Screen"
#   Identifier  "Default Screen"
#   Monitor "Configured Monitor"
# EndSection

# Section "Screen"
# Identifier"Default Screen"
# SubSection "Display"
#   Virtual 2464 900
# EndSubSection
# EndSection


Kernel version (/proc/version):
Linux version 2.6.35-trunk-amd64 (Debian 2.6.35-1~experimental.3) 
(m...@debian.org) (gcc version 4.4.5 20100902 (prerelease) (Debian 4.4.4-13) ) 
#1 SMP Mon Sep 6 15:15:26 UTC 2010

Xorg X server log files on

Bug#593293: marked as done (xorg: random crashes, must reboot to use X again)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:36 +
with message-id 
and subject line Bug#593293: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #593293,
regarding xorg: random crashes, must reboot to use X again
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
593293: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=593293
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xorg
Version: 1:7.5+6
Severity: important

Hello Debian X Strike Force team,

On my PC X crashes with or without interaction with it.
After crash I can use tty. If I try to start X again via:
- invoking `startx`
- going to single user mode `telinit 1` and then `telinit 2`
system completely freezes. Even tty access don't work nor SysRq
commands - only power off helps.

After reboot all works again.
This happens once - twice in a week or less, but is very annoying.

In attachment you can see log's from X and GDM while I still have
following processes:
 1126 ?Ss 0:00 /usr/sbin/gdm
26910 ?Ss 0:00  \_ /bin/sh /etc/gdm/XKeepsCrashing
26931 ?S  0:00  \_ /usr/lib/gdm/gdmopen -l /bin/sh -c 
/etc/gdm/XKeepsCrashing -noopen 
26932 tty3 Ss+0:00  \_ -sh -c /etc/gdm/XKeepsCrashing -noopen 
26935 tty3 S+ 0:00  \_ /bin/sh /etc/gdm/XKeepsCrashing 
-noopen
26966 tty3 S+ 0:00  \_ /usr/bin/dialog --textbox 
/var/log/gdm/:0.log 22 76

And here is suspicious lines form /var/log/syslog 
Aug 17 00:17:51 tao kernel: [49890.080140] [drm:i915_hangcheck_elapsed] *ERROR* 
Hangcheck timer elapsed... GPU hung
Aug 17 00:17:51 tao kernel: [49890.080158] render error detected, EIR: 
0x
Aug 17 00:17:51 tao kernel: [49890.080205] [drm:i915_do_wait_request] *ERROR* 
i915_do_wait_request returns -5 (awaiting 3649547 at 3649482)

best regards
Kamen

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.30.2-1   The GNOME terminal emulator applic
ii  libgl1-mesa-dri   7.7.1-4A free implementation of the OpenG
ii  libgl1-mesa-glx [libgl1]  7.7.1-4A free implementation of the OpenG
ii  libglu1-mesa  7.7.1-4The OpenGL utility library (GLU)
ii  x11-apps  7.5+5  X applications
ii  x11-session-utils 7.5+1  X session utilities
ii  x11-utils 7.5+4  X11 utilities
ii  x11-xfs-utils 7.4+1  X font server utilities
ii  x11-xkb-utils 7.5+5  X11 XKB utilities
ii  x11-xserver-utils 7.5+2  X server utilities
ii  xauth 1:1.0.4-1  X authentication utility
ii  xfonts-100dpi 1:1.0.1100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.175 dpi fonts for X
ii  xfonts-base   1:1.0.1standard fonts for X
ii  xfonts-scalable   1:1.0.1-1  scalable fonts for X
ii  xfonts-utils  1:7.5+2X Window System font utility progr
ii  xinit 1.2.0-2X server initialisation tool
ii  xkb-data  1.8-1  X Keyboard Extension (XKB) configu
ii  xorg-docs-core1:1.5-1Core documentation for the X.org X
ii  xserver-xorg  1:7.5+6the X.Org X server

xorg recommends no packages.

Versions of packages xorg suggests:
pn  xorg-docs  (no description available)

-- no debconf information


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=bg_BG.UTF-8, LC_CTYPE=bg_BG.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.30.2-1   The GNOME terminal emulator applic
ii  libgl1-mesa-dri   7.7.1-4A free implementation of the OpenG
ii  libgl1-mesa-glx [libgl1]  7.7.1-4A free implementation of the OpenG
ii  libglu1-mesa  7.7.1-4The OpenGL utility library (GLU)
ii  x11-apps  7.5+5  X applications
ii  x11-session-utils 7.5+1  X session utilities
ii  x11-utils 7.5+4  X11 utilities
ii  x11

Bug#594338: marked as done ([865G] xserver-xorg-video-intel: with KMS off, X is totally unusable)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:36 +
with message-id 
and subject line Bug#594338: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #594338,
regarding [865G] xserver-xorg-video-intel: with KMS off, X is totally unusable
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
594338: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594338
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.12.0+legacy1-1
Severity: important

Hi there.

Just a heads up to inform you that with i915.modeset=0 (which I had
before, since my 865G system---the one where I hack) doesn't work with
the 2:2.12.0+legacy1-1 version, but, from the changelog, the +legacy
part was supposed to support user mode setting.

The screen becomes completely black, the keyboard doesn't work (no way
to switch to any terminal), but Magic SysRq does. It looks like bug
569659, but I am not really sure, regarding some of the symptoms.

If I reboot with i915.modeset=1, then everything is fine (but I have not
tried to play videos etc).  I used to have KMS disabled because XV
didn't work with my hardware with KMS turned on.

Feel free to ask anything that you would like me to provide (kernel
configuration, gpu dumps etc).


Regards,

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Jan 27  2007 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1878432 Aug 24 11:29 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82865G Integrated Graphics 
Controller (rev 02)

/etc/X11/xorg.conf does not exist.

Kernel version (/proc/version):
Linux version 2.6.36-rc2-00098-gd1b113b (rbr...@chagas) (gcc version 4.4.5 
20100816 (prerelease) (Debian 4.4.4-9) ) #8 SMP PREEMPT Tue Aug 24 10:02:33 BRT 
2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 17879 Aug 25 08:43 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 x86_64 Debian
Current Operating System: Linux chagas 2.6.36-rc2-00098-gd1b113b #8 SMP PREEMPT 
Tue Aug 24 10:02:33 BRT 2010 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.36-rc2-00098-gd1b113b 
root=/dev/sda3 ro i915.modeset=1 acpi_enforce_resources=lax
Build Date: 24 August 2010  02:20:59PM
xorg-server 2:1.7.7-4 (Julien Cristau ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 25 08:43:55 2010
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |-->Screen "Default Screen Section" (0)
(**) |   |-->Monitor ""
(==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
Entry deleted from font path.
(WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not 
exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x7c5f40
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(++) using VT number 7

(--) PCI:*(0:0:2:0) 8086:2572:1458:2572 Intel Corporation 82865G Integrated 
Graphics Con

Bug#596598: marked as done (xorg: (Intel 82852/855GM) Total machine hang as x starts, leaving blank screen)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:36 +
with message-id 
and subject line Bug#594623: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #594623,
regarding xorg: (Intel 82852/855GM) Total machine hang as x starts, leaving 
blank screen
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
594623: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594623
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xorg
Version: 1:7.5+6
Severity: important

This machine is normally updated frequently using aptitude. Machine has often 
hung after a regular kernel upgrade, but the usual temporary cure using a 
previous kernel did not work this time so I did a total re-installation. Still 
suffers a total hang leaving a blank screen, and requires a power cycle. Used 
i386 squeeze businesscard downloaded today, 2010 09 12.
HP Pavillion dv1000, 1GB RAM, Intel 82852/855GM/855GME chipset with 
IPW2200-BSS.FW, fault occurs both before and after wireless firmware added 
using single user recovery mode.
I did a total machine backup using Knoppix before re-installing, so all logs 
are available, although I could not find any relevant information.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.30.2-1   The GNOME terminal emulator applic
ii  libgl1-mesa-dri   7.7.1-4A free implementation of the OpenG
ii  libgl1-mesa-glx [libgl1]  7.7.1-4A free implementation of the OpenG
ii  libglu1-mesa  7.7.1-4The OpenGL utility library (GLU)
ii  x11-apps  7.5+5  X applications
ii  x11-session-utils 7.5+1  X session utilities
ii  x11-utils 7.5+4  X11 utilities
ii  x11-xfs-utils 7.4+1  X font server utilities
ii  x11-xkb-utils 7.5+5  X11 XKB utilities
ii  x11-xserver-utils 7.5+2  X server utilities
ii  xauth 1:1.0.4-1  X authentication utility
ii  xfonts-100dpi 1:1.0.1100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.175 dpi fonts for X
ii  xfonts-base   1:1.0.1standard fonts for X
ii  xfonts-scalable   1:1.0.1-1  scalable fonts for X
ii  xfonts-utils  1:7.5+2X Window System font utility progr
ii  xinit 1.2.0-2X server initialisation tool
ii  xkb-data  1.8-1  X Keyboard Extension (XKB) configu
ii  xorg-docs-core1:1.5-1Core documentation for the X.org X
ii  xserver-xorg  1:7.5+6the X.Org X server
ii  xterm [x-terminal-emulator]   261-1  X terminal emulator

xorg recommends no packages.

Versions of packages xorg suggests:
pn  xorg-docs  (no description available)

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: xserver-xorg-video-intel
Source-Version: 2:2.12.0+shadow-1

We believe that the bug you reported is fixed in the latest version of
xserver-xorg-video-intel, which is due to be installed in the Debian FTP 
archive:

xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb
xserver-xorg-video-intel_2.12.0+shadow-1.diff.gz
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1.diff.gz
xserver-xorg-video-intel_2.12.0+shadow-1.dsc
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1.dsc
xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb
xserver-xorg-video-intel_2.12.0+shadow.orig.tar.gz
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 594...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julien Cristau  (supplier of updated 
xserver-xorg-video-intel package)

(This message was generated automatically at their request; if you
believe that there is a pr

Bug#594623: marked as done (xserver-xorg-video-intel: after upgrade to 2.12.0+legacy1-1 X freeze on gdm start)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:36 +
with message-id 
and subject line Bug#594623: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #594623,
regarding xserver-xorg-video-intel: after upgrade to 2.12.0+legacy1-1 X freeze 
on gdm start
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
594623: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594623
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.12.0+legacy1-1
Severity: normal

Hello Debian X Strike Force team,

After upgrade X freeze on gdm start - nothing works, just black screen.
SysRq did not work too, only power button.

I've log in in single user mode and set: options i915 modeset=0 in
/etc/modprobe.d/i915-kms.conf but this doesn't help at all.

After this I set: options i915 modeset=1 and reboot to old kernel: 2.6.32-3-686
and all works.

I have following linux-images instlled:
ii  linux-image-2.6.32-3-686  2.6.32-9  Linux 2.6.32 for modern
PCs
ii  linux-image-2.6.32-5-686  2.6.32-21 Linux 2.6.32 for modern
PCs

X works with linux-image-2.6.32-3-686  2.6.32-9 and hard freeze with linux-
image-2.6.32-5-686  2.6.32-21

Upgrade that fetch new version of xserver-xorg-video-intel also affect
following packages:
(from /var/log/aptitude)
[HOLD, DEPENDENCIES] libept1
[HOLD, DEPENDENCIES] synaptic
[INSTALL, DEPENDENCIES] libxapian22
[INSTALL, DEPENDENCIES] libxcb-dri2-0
[HOLD] apt
[HOLD] apt-utils
[HOLD] debtags
[HOLD] libapt-pkg-perl
[UPGRADE] dash 0.5.5.1-6 -> 0.5.5.1-7
[UPGRADE] firmware-linux-free 2.6.32-20 -> 2.6.32-21
[UPGRADE] klibc-utils 1.5.18-1 -> 1.5.19-1
[UPGRADE] libclass-mop-perl 1.06-1 -> 1.07-1
[UPGRADE] libdrm-intel1 2.4.21-1~squeeze1 -> 2.4.21-1~squeeze2
[UPGRADE] libdrm-nouveau1 2.4.21-1~squeeze1 -> 2.4.21-1~squeeze2
[UPGRADE] libdrm-radeon1 2.4.21-1~squeeze1 -> 2.4.21-1~squeeze2
[UPGRADE] libdrm2 2.4.21-1~squeeze1 -> 2.4.21-1~squeeze2
[UPGRADE] libemail-address-perl 1.889-2 -> 1.890-1
[UPGRADE] libklibc 1.5.18-1 -> 1.5.19-1
[UPGRADE] linux-base 2.6.32-20 -> 2.6.32-21
[UPGRADE] linux-headers-2.6.32-5-686 2.6.32-20 -> 2.6.32-21
[UPGRADE] linux-headers-2.6.32-5-common 2.6.32-20 -> 2.6.32-21
[UPGRADE] linux-image-2.6.32-5-686 2.6.32-20 -> 2.6.32-21
[UPGRADE] linux-libc-dev 2.6.32-20 -> 2.6.32-21
[UPGRADE] python-xapian 1.0.20-1 -> 1.2.3-2
[UPGRADE] xserver-xorg-video-intel 2:2.9.1-4 -> 2:2.12.0+legacy1-1

I have sent two similar bugs: #580705 and #593293 which may have some clues for
what happening.

As I read bug #594358 which is similar to what I report, here is output from
ldd /usr/lib/xorg/modules/drivers/intel_drv.so
linux-gate.so.1 =>  (0xb77ba000)
libm.so.6 => /lib/i686/cmov/libm.so.6 (0xb76e2000)
libdrm.so.2 => /usr/lib/libdrm.so.2 (0xb76d8000)
libdrm_intel.so.1 => /usr/lib/libdrm_intel.so.1 (0xb76cd000)
libpciaccess.so.0 => /usr/lib/libpciaccess.so.0 (0xb76c5000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb757e000)
/lib/ld-linux.so.2 (0xb77bb000)
librt.so.1 => /lib/i686/cmov/librt.so.1 (0xb7575000)
libz.so.1 => /usr/lib/libz.so.1 (0xb7561000)
libpthread.so.0 => /lib/i686/cmov/libpthread.so.0 (0xb7547000)

Output from lspci
00:00.0 Host bridge: Intel Corporation 82852/82855 GM/GME/PM/GMV Processor to
I/O Controller (rev 02)
00:00.1 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV
Processor to I/O Controller (rev 02)
00:00.3 System peripheral: Intel Corporation 82852/82855 GM/GME/PM/GMV
Processor to I/O Controller (rev 02)
00:02.0 VGA compatible controller: Intel Corporation 82852/855GM Integrated
Graphics Device (rev 02)
00:02.1 Display controller: Intel Corporation 82852/855GM Integrated Graphics
Device (rev 02)
00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M)
USB UHCI Controller #1 (rev 01)
00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M)
USB UHCI Controller #2 (rev 01)
00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M)
USB UHCI Controller #3 (rev 01)
00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI
Controller (rev 01)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 81)
00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge
(rev 01)
00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE Controller (rev
01)
00:1f.3 SMBus: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus
Controller (rev 01)
00:1f.5 Multimedia audio controller: 

Bug#594815: marked as done ([legacy ums 945gm] lockup on X startup)

2010-09-20 Thread Debian Bug Tracking System
Your message dated Mon, 20 Sep 2010 18:17:36 +
with message-id 
and subject line Bug#594815: fixed in xserver-xorg-video-intel 2:2.12.0+shadow-1
has caused the Debian Bug report #594815,
regarding [legacy ums 945gm] lockup on X startup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
594815: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594815
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-intel
Version: 2:2.9.1-4
Severity: normal


I've reported the following upstream:

https://bugs.freedesktop.org/show_bug.cgi?id=29872

*

Debian Sid, Celeron M (i686).  Problem experienced with various kernels, from
2.6.32 through 2.6.36-rc2 (currently 2.6.36-rc2-lizzie-00373-g29cfcdd).  Acer
laptop (Aspire 3690) with Intel 82801G (ICH7) stuff.

I'm not sure which X version started the problem, but I currently get it
consistently with the Debian package xserver-xorg-video-intel version
2.12.0+legacy1-1 0 (from Sid), but not with 2.9.1-4 (from Testing).

*

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Jul 30  2009 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1725304 Aug 24 11:04 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 112 Dec  2  2009 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section "Module"
Load "v4l"
#   SubSection "extmod"
#   Option  "omit XFree86-DGA"
#   EndSubSection
EndSection





Kernel version (/proc/version):
Linux version 2.6.36-rc2-lizzie-00373-g29cfcdd (yitz...@lizzie) (gcc version 
4.4.5 20100824 (prerelease) (Debian 4.4.4-11) ) #22 Sat Aug 28 21:56:46 EDT 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 36087 Aug 29 13:26 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-2-amd64 i686 Debian
Current Operating System: Linux lizzie 2.6.36-rc2-lizzie-00373-g29cfcdd #22 Sat 
Aug 28 21:56:46 EDT 2010 i686
Kernel command line: 
cryptopts=target=sda4_crypt,source=/dev/sda4,lvm=lizzie-root 
root=/dev/mapper/lizzie-root ro 
Build Date: 24 August 2010  02:59:40PM
xorg-server 2:1.7.7-4 (Julien Cristau ) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sun Aug 29 13:26:07 2010
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(==) No Layout section.  Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |-->Screen "Default Screen Section" (0)
(**) |   |-->Monitor ""
(==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
(II) Loader magic: 0x81eaca0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(--) using VT number 7

(--) PCI:*(0:0:2:0) 8086:27a2:1025:0090 Intel Corporation Mobile 945GM/GMS, 
943/940GML Express Integrated Graphics Controller rev 3, Mem @ 
0xd010/524288, 0xc000/268435456, 0xd020/262144, I/O @ 0x1800/8
(-

xserver-xorg-video-intel_2.12.0+shadow-1_i386.changes ACCEPTED into unstable

2010-09-20 Thread Debian FTP Masters



Accepted:
xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb
xserver-xorg-video-intel_2.12.0+shadow-1.diff.gz
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1.diff.gz
xserver-xorg-video-intel_2.12.0+shadow-1.dsc
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1.dsc
xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb
xserver-xorg-video-intel_2.12.0+shadow.orig.tar.gz
  to 
main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.12.0+shadow.orig.tar.gz


Override entries for your package:
xserver-xorg-video-intel-dbg_2.12.0+shadow-1_i386.deb - extra debug
xserver-xorg-video-intel_2.12.0+shadow-1.dsc - source x11
xserver-xorg-video-intel_2.12.0+shadow-1_i386.deb - optional x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 570766 570988 572105 576848 592586 593199 593293 594338 594623 
594815 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oxkvn-0002br...@franck.debian.org



Bug#597475: debian-installer: Screen flashes on and off after fresh installation of squeeze.

2010-09-20 Thread Julien Cristau
On Mon, Sep 20, 2010 at 17:53:58 +0200, Christian PERRIER wrote:

> Quoting Ryan David Larrowe (rlarr...@gmail.com):
> > Package: debian-installer
> > Severity: critical
> > Justification: breaks the whole system
> > 
> > After installing debian squeeze when starting the
> > gui the monitor turns on and off with white streaks when it is on.
> > 
> > -- System Information:
> > I am using Debian Squeeze released on 7-15-10 for X86.  I have an
> > ATI Radeon HD 3650 AGP 8X with 512MB RAM.
> 
> 
> This bug more belongs to the X server than the installer itself. Hence
> reassigning so that the concerned maintainers can (hopefully...they're
> overloaded) deal with it.
> 
Actually, it's likely to be an X driver or kernel bug, not core server.

> Please provide the content of /var/log/Xorg.0.log. I'm unsure whether
> that'll be enough and Xorg maintainers may need you to provide more
> information...
> 
Xorg log and dmesg are the bare minimum.  Also exact versions of kernel,
xserver-xorg-core and xserver-xorg-video-radeon.

Cheers,
Julien



signature.asc
Description: Digital signature


Processed: tagging 597475, severity of 597475 is normal

2010-09-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 597475 + moreinfo
Bug #597475 [xserver-xorg-core] debian-installer: Screen flashes on and off 
after fresh installation of squeeze.
Added tag(s) moreinfo.
> severity 597475 normal
Bug #597475 [xserver-xorg-core] debian-installer: Screen flashes on and off 
after fresh installation of squeeze.
Severity set to 'normal' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
597475: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597475
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.128501715231746.transcr...@bugs.debian.org



Bug#597564: Hard to stop X server loading module synaptics

2010-09-20 Thread Ian Jackson
Package: xserver-xorg
Version: 1:7.3+20

My laptop has a synaptics touchpad.  I recently switched to using a
non-ancient X server and I wanted to restore the behaviour I had with
the ancient X server, so I decided to arrange for the X server not to
load the "synaptics" module which seemed to be doing all the stuff I
didn't like.

I added to my xorg.conf:

  Section "Module"
  
+ Disable "synaptics"

But this didn't help.  I was able to stop the X server loading the
module only by using dpkg-divert to rename the module.  It's still
trying:

(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Could not init font path element unix/:7100, removing from list!
Could not init font path element /usr/share/fonts/X11/cyrillic, removing from 
list!
(II) LoadModule: "synaptics"
(WW) Warning, couldn't open module synaptics
(II) UnloadModule: "synaptics"
(EE) Failed to load module "synaptics" (module does not exist, 0)
(EE) No input driver matching `synaptics'

Luckily, though, it is happy to carry on without and just use
/dev/input/mice like I want it to.

I have grepped /etc/X11 for the string "synaptics" and it hasn't
produced any information about why the module is being loaded.
Perhaps the X server is deciding to do so by itself, in which case it
should honour the config file disable feature.

Thanks,
Ian.

# XF86Config-4 (XFree86 X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type "man XF86Config-4" at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4 >/var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/share/fonts/X11/misc"
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/share/fonts/X11/cyrillic"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/share/fonts/X11/Type1"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/share/fonts/X11/CID"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/share/fonts/X11/100dpi"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/share/fonts/X11/75dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"vbe"
Disable "synaptics"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbModel"  "pc102"
Option  "XkbLayout" "does-not-exist-iwj"
EndSection

Section "InputDevice"
Identifier  "Generic Mouse"
Driver  "mouse"
Option  "CorePointer"
#   Option  "SendCoreEvents""true"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "Emulate3Buttons"   "true"
EndSection
#Section "InputDevice"
#   Identifier  "Configured Mouse"
#   Driver  "mouse"
#   Option  "CorePointer"
#   Option  "Device""/dev/psaux"
#   Option  "Protocol"  "PS/2"
#   Option  "Emulate3Buttons"   "true"
#EndSection

Section "Device"
Identifier  "Generic Video Card"
Driver  "radeon"
Option "DynamicClocks" "true"
EndSection

Section "Monitor"
Identifier  "DXS:1313"
HorizSync   30-107
VertRefresh 50-85
Option  "DPMS"
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "DXS:1313"
DefaultDepth24
SubSection "Display"
Depth   1
Modes   "1600x1200" "800x600" "640x480"
 

Bug#597564: Hard to stop X server loading module synaptics

2010-09-20 Thread Julien Cristau
On Mon, Sep 20, 2010 at 23:53:38 +0200, Julien Cristau wrote:

> On Mon, Sep 20, 2010 at 22:18:30 +0100, Ian Jackson wrote:
> 
> > Package: xserver-xorg
> > Version: 1:7.3+20
> > 

Oh wait, lenny.  What I said applies to squeeze/sid, on lenny you can
probably set the AutoAddDevices option to false in xorg.conf and
synaptics shouldn't get loaded.  That might mess things up on upgrade to
squeeze though.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#596236: xserver-xorg-video-intel: xrandr shows extra LVDS output

2010-09-20 Thread Julien Cristau
On Tue, Sep 21, 2010 at 01:11:30 +0300, Dmitry Baryshev wrote:

> Hello. KMS is disabled due to using bootsplash. Logs are attached.
> 
Don't do that.  Disabling KMS is not supported anymore.  You need to get
rid of your i915.modeset=0 and vga=foo command line parameters.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#596236: xserver-xorg-video-intel: xrandr shows extra LVDS output

2010-09-20 Thread Dmitry Baryshev
Then bootsplash will stop working, i915.modeset=0 fixes this.

2010/9/21 Julien Cristau 

> On Tue, Sep 21, 2010 at 01:11:30 +0300, Dmitry Baryshev wrote:
>
> > Hello. KMS is disabled due to using bootsplash. Logs are attached.
> >
> Don't do that.  Disabling KMS is not supported anymore.  You need to get
> rid of your i915.modeset=0 and vga=foo command line parameters.
>
> Cheers,
> Julien
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.10 (GNU/Linux)
>
> iQIcBAEBCAAGBQJMl+GSAAoJEDEBgAUJBeQMfwoQALjTMdczGOLC5CAUMzunASHa
> w6cFgv77rVDvhxcFzyddK+w1wFi3QM2oo6gZlmOysZ1BGX/D8sgcAlv7JejjLLR5
> Gd/ocV0tq1vJn3drSGUAerOGs3bCm4WVbxGUV1HtuLmOF288iozMrdLMe4u0kOfb
> 5Goie6oTuRHD2zF6tKFo7VJ9UTzdsDwuNdUXeDnVqlm/KrVrYKDCzZztpxctGsP9
> pGeWpEs00po06unxoUINVY+9FalfcUoGp5oB7XLU31PAaSXpzggSMdhYZ/HOmaSf
> 3fxhnUgTzYPDUF8tQ7lf4ya4hdY5JtW+vVkUXXMwgPOdp46t8/PY57xV0drogKTi
> DxmyznuyIOFl4+mUbP3US3Mc6H4InjpWSt4RkDbDRVD6DF7nuH7VKew9sZIuDqC/
> NzvsKx+QZrXJ0+rBaBKCPep0Fgsady2mCFoOF6mImxGqCJzmyiIG/5fCSMwHV7+u
> wDUMElXtI1vTBtUtyEpKExgg1jufqtpi53ScLHkN2+N0pBTx4S/sv0QlhZCNcMwb
> Sq87/t3snswIH7JcAuFLRpU/ww8dkQsIOE18gW01QhW7HVct1egQZpW7tieW0XkI
> SNgzFm1B0Q2I51UCM8ssapurh7+HAWBAM3pGiRQMIHSmkhRJM/CWLy7/MbidaVql
> 5BMCwF9V1VTFEyQBtL6Z
> =quUf
> -END PGP SIGNATURE-
>
>


-- 
Regards, Krasu


Bug#597564: Hard to stop X server loading module synaptics

2010-09-20 Thread Ian Jackson
Julien Cristau writes ("Re: Bug#597564: Hard to stop X server loading module 
synaptics"):
> On Mon, Sep 20, 2010 at 23:53:38 +0200, Julien Cristau wrote:
> > On Mon, Sep 20, 2010 at 22:18:30 +0100, Ian Jackson wrote:
> > > Package: xserver-xorg
> > > Version: 1:7.3+20
> 
> Oh wait, lenny.  What I said applies to squeeze/sid, on lenny you can
> probably set the AutoAddDevices option to false in xorg.conf and
> synaptics shouldn't get loaded.  That might mess things up on upgrade to
> squeeze though.

Thanks for your response.  It's nice to get a set of personalised tips
for how to make it do what I want, but really I was just trying to
help improve the software to save the next person the hassle :-).  As
I say, the dpkg-divert sledgehammer has solved the problem for me in
etch.

Is the procedure you suggested in your previous mail documented in the
squeeze manpage for xorg.conf ?  In lenny's xorg.conf(5) the
description in the section on module loading is rather vague, and the
AutoAddDevices option isn't even mentioned.

If disabling a driver module in the Modules section doesn't work
perhaps there should be a comment in the manpage which explains how to
control the loading of driver modules.

Ian.



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/19607.61175.184213.724...@chiark.greenend.org.uk