[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#228665: marked as done (xserver-xfree86: [mouse] SendCoreEvents + ServerLayout entry leads to doubled events)



Your message dated Tue, 27 Jan 2004 16:51:48 -0500
with message-id <20040127215148.GD4060@deadbeast.net>
and subject line [branden@debian.org: Re: Bug#228665: xserver-xfree86: [mouse] SendCoreEvents + ServerLayout entry leads to doubled events]
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 20 Jan 2004 02:50:09 +0000
>From jim@jim.sh Mon Jan 19 18:50:09 2004
Return-path: <jim@jim.sh>
Received: from dsl092-074-132.bos1.dsl.speakeasy.net (neurosis.jim.sh) [66.92.74.132] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Ailxs-0008WD-00; Mon, 19 Jan 2004 18:50:04 -0800
Received: from neurosis.jim.sh (localhost [127.0.0.1])
	by neurosis.jim.sh (8.12.9/8.12.9/Debian-5) with ESMTP id i0K2o0MQ014004;
	Mon, 19 Jan 2004 21:50:00 -0500
Received: (from jim@localhost)
	by neurosis.jim.sh (8.12.9/8.12.9/Debian-5) id i0K2nxUr014003;
	Mon, 19 Jan 2004 21:49:59 -0500
Message-Id: <[🔎] 200401200249.i0K2nxUr014003@neurosis.jim.sh>
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Jim Paris <jim@jtan.com>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: xserver-xfree86: [mouse] SendCoreEvents + ServerLayout entry leads to
 doubled events
X-Mailer: reportbug 2.36
Date: Mon, 19 Jan 2004 21:49:59 -0500
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_01_14 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.5 required=4.0 tests=DATING,HAS_PACKAGE,
	MAILTO_TO_SPAM_ADDR autolearn=no 
	version=2.60-bugs.debian.org_2004_01_14
X-Spam-Level: 

Package: xserver-xfree86
Version: 4.3.0-0pre1v5
Severity: normal

I spent a while trying to figure out why my USB mouse would always
move the cursor by at least two pixels at a time, even when
acceleration was fully disabled (with e.g. "xset m 1 1").

With a little extra debugging added in xf86Xinput.c, this is what I
get when moving the mouse only one pixel.  Note how the event is
handled both as coming from "Input Layer Mice" and also the core "PS/2
Mouse", which results in the movement occuring twice (so axis[1] ended
up incrementing by 2):

(**) PS/2 Mouse: Core Pointer
..
(**) Input Layer Mice: always reports core events
..
(II) XINPUT: Adding extended input device "Input Layer Mice" (type: MOUSE)
(II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
..
xf86PostMotionEvent BEGIN 0x87ed010(Input Layer Mice) is_core=False is_shared=True is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent oldaxis[0]=84 axisvals[0]=84
xf86PostMotionEvent oldaxis[1]=142 axisvals[1]=143
xf86PostMotionEvent END   0x87ed010(Input Layer Mice) is_core=False is_shared=True
xf86PostMotionEvent BEGIN 0x87ed148(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent oldaxis[0]=84 axisvals[0]=84
xf86PostMotionEvent oldaxis[1]=143 axisvals[1]=144
xf86PostMotionEvent END   0x87ed148(PS/2 Mouse) is_core=True is_shared=False

I think this is a problem with the Debian-generated configuration.
For /dev/input/mice, it specifies SendCoreEvents _and_ also
includes it in the ServerLayout as an InputDevice.  Commenting
out the SendCoreEvents line fixes the problem and each event
is only received once.

(I'm actually running dri-trunk CVS from a few days ago.  Still, I
believe this is solely a Debian configuration problem and so I'm
reporting it here.)

-- Package-specific info:
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV280 [Radeon 9200] (rev 01)
01:00.0 Class 0300: 1002:5961 (rev 01)

# -*- mode: fundamental -*-

# 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/lib/X11/fonts/Type1"
#	FontPath	"/usr/lib/X11/fonts/CID"
	FontPath	"/usr/lib/X11/fonts/Speedo"
	FontPath	"/usr/lib/X11/fonts/misc"
#	FontPath	"/usr/lib/X11/fonts/cyrillic"
	FontPath	"/usr/lib/X11/fonts/100dpi"
	FontPath	"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load	"GLcore"
	Load	"bitmap"
	Load	"dbe"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"record"
	Load	"speedo"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"AT Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xfree86"
	Option		"XkbModel"	"pc101"
	Option		"XkbLayout"	"us"
EndSection

Section "InputDevice"
	Identifier	"PS/2 Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
EndSection

Section "InputDevice"
	Identifier	"Input Layer Mice"
	Driver		"mouse"
#	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ImPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"SampleRate"		"200"
EndSection

Section "ServerFlags"
	Option		"AllowMouseOpenFail"	"true"
EndSection

Section "Device"
	Identifier	"Radeon 9200 DVI"
	Driver		"radeon"
	BusID		"PCI:1:0:0"
	Screen		0
EndSection

Section "Device"
	Identifier	"Radeon 9200 CRT"
	Driver		"radeon"
	BusID		"PCI:1:0:0"
	Screen		1
EndSection

Section "Monitor"
	Identifier	"Envision"
	Option		"DPMS"
EndSection

Section "Monitor"
	Identifier	"Megavision"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Envision"
	Device		"Radeon 9200 DVI"
	Monitor		"Envision"
	DefaultDepth	24
	SubSection "Display"
		Depth		24
		Modes		"1024x768"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"Megavision"
	Device		"Radeon 9200 CRT"
	Monitor		"Megavision"
	DefaultDepth	24
	SubSection "Display"
		Depth		24
		Modes		"1280x1024"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Envision"
	Screen		"Megavision" RightOf "Envision"
	InputDevice	"AT Keyboard"
	InputDevice	"PS/2 Mouse"
	InputDevice	"Input Layer Mice"
	Option		"Xinerama"	"True"	
EndSection

Section "DRI"	
	Group	"video"
	Mode	0660
EndSection



This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to XFree86@XFree86.Org and patches submitted
to fixes@XFree86.Org.  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.99.12 (DRI trunk)
Release Date: 10 September 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.6.1 i686 [ELF] 
Current Operating System: Linux neurosis 2.6.1 #1 Sun Jan 18 18:37:52 EST 2004 i686
Build Date: 19 January 2004
Changelog Date: 10 September 2003
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
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/XFree86.0.log", Time: Mon Jan 19 21:31:16 2004
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Envision" (0)
(**) |   |-->Monitor "Envision"
(**) |   |-->Device "Radeon 9200 DVI"
(**) |-->Screen "Megavision" (1)
(**) |   |-->Monitor "Megavision"
(**) |   |-->Device "Radeon 9200 CRT"
(**) |-->Input Device "AT Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "PS/2 Mouse"
(**) |-->Input Device "Input Layer Mice"
(**) FontPath set to "/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules-dri-trunk"
(**) Option "AllowMouseOpenFail" "true"
(**) Option "Xinerama" "True"
(**) Xinerama: enabled
(--) using VT number 9

(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.7
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.7
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000cf8, mode1Res1 = 0x00000cf8
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1039,0746 card 1849,0746 rev 10 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1039,0002 card 0000,0000 rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1039,0964 card 0000,0000 rev 36 class 06,01,00 hdr 80
(II) PCI: 00:02:5: chip 1039,5513 card 1849,5513 rev 01 class 01,01,80 hdr 00
(II) PCI: 00:02:7: chip 1039,7012 card 1849,7012 rev a0 class 04,01,00 hdr 00
(II) PCI: 00:03:0: chip 1039,7001 card 1849,7001 rev 0f class 0c,03,10 hdr 80
(II) PCI: 00:03:1: chip 1039,7001 card 1849,7001 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:2: chip 1039,7001 card 1849,7001 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:3: chip 1039,7002 card 1849,7002 rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:04:0: chip 1039,0900 card 1849,8201 rev 90 class 02,00,00 hdr 00
(II) PCI: 00:09:0: chip 1317,0985 card 1317,0574 rev 11 class 02,00,00 hdr 00
(II) PCI: 00:0a:0: chip 1103,0006 card 1103,0001 rev 01 class 01,04,00 hdr 00
(II) PCI: 00:0c:0: chip 9004,8178 card 0000,0000 rev 00 class 01,00,00 hdr 00
(II) PCI: 00:0d:0: chip 1106,3044 card 1106,3044 rev 46 class 0c,00,10 hdr 00
(II) PCI: 01:00:0: chip 1002,5961 card 174b,7c13 rev 01 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5941 card 174b,7c12 rev 01 class 03,80,00 hdr 00
(II) PCI: 23:0c:0: chip ffff,ffff card ffff,ffff rev ff class ff,ff,ff hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,35), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,2), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x00006000 - 0x00006fff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xcfd00000 - 0xcfefffff (0x200000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xafa00000 - 0xcfbfffff (0x20200000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:2:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Host-to-PCI bridge:
(II) Bus 35: bridge is at (0:0:0), (35,35,0), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 35 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 35 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 35 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(--) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x5961) rev 1, Mem @ 0xc0000000/27, 0xcfef0000/16, I/O @ 0x6800/8, BIOS @ 0xcfec0000/17
(--) PCI: (1:0:1) ATI Technologies Inc unknown chipset (0x5941) rev 1, Mem @ 0xb8000000/27, 0xcfee0000/16
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xd0000000 from 0xdfffffff to 0xcfffffff
(II) Active PCI resource ranges:
	[0] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[1] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[2] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[3] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[4] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[5] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[6] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[7] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[8] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[9] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[10] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[11] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[12] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[13] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[14] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[15] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[16] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[17] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[18] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[19] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[20] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[21] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[22] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[23] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[24] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[25] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[26] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[27] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[28] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[29] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[30] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[31] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[32] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[33] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
(II) Inactive PCI resource ranges:
	[0] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[1] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[2] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[3] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[4] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[5] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[6] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[7] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[8] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[9] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[10] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[11] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[12] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[13] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[14] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[15] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[16] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[17] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[18] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[19] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[20] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[21] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[22] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[23] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[24] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[25] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[26] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[27] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[28] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[29] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[30] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[31] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[32] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[33] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
(II) Inactive PCI resource ranges after removing overlaps:
	[0] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0xffe00000 - 0xffefffff (0x100000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0xffe00000 - 0xffefffff (0x100000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[6] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[7] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[8] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[9] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[10] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[11] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[12] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[13] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[14] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[15] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[16] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[17] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[18] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[19] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[20] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[21] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[22] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[23] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[24] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[25] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[26] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[27] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[28] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[29] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[30] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[31] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[32] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[33] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[34] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[35] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[36] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[37] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[38] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[39] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[40] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
	[41] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules-dri-trunk/extensions/libGLcore.a:m_debug_clip.o":  No symbols found
Skipping "/usr/X11R6/lib/modules-dri-trunk/extensions/libGLcore.a:m_debug_norm.o":  No symbols found
Skipping "/usr/X11R6/lib/modules-dri-trunk/extensions/libGLcore.a:m_debug_xform.o":  No symbols found
(II) Module GLcore: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.7
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 2.0.4
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/extensions/libGLcore.a
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.7
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.13.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/fonts/libspeedo.a
Skipping "/usr/X11R6/lib/modules-dri-trunk/fonts/libspeedo.a:spencode.o":  No symbols found
(II) Module speedo: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.1
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.2
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.1.0
	ABI class: XFree86 Video Driver, version 0.7
(II) LoadModule: "radeon"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/drivers/radeon_drv.o
(II) Module radeon: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 4.0.1
	Module class: XFree86 Video Driver
	ABI class: XFree86 Video Driver, version 0.7
(II) LoadModule: "ati"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/drivers/ati_drv.o
(II) Module ati: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 6.5.3
	Module class: XFree86 Video Driver
	ABI class: XFree86 Video Driver, version 0.7
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	Module class: XFree86 XInput Driver
	ABI class: XFree86 XInput driver, version 0.4
(II) ATI: ATI driver (version 6.5.3) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
	ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
	ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
	ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP),
	ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI),
	ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP),
	ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP),
	ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP),
	ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP),
	ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP),
	ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI),
	ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI),
	ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP),
	ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP),
	ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP),
	ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
	ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
	ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP),
	ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP),
	ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP),
	ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP),
	ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP),
	ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
	ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
	ATI Rage 128 Pro ULTRA TU (AGP?)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330/340/350 (A4) 4137,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
	ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP),
	ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon 9200PRO 5960 (AGP), ATI Radeon 9200 5961 (AGP),
	ATI Radeon 9200 5962 (AGP), ATI Radeon 9200SE 5964 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
	ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9700 NF (AGP),
	ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
	ATI FireGL RV360 AV (AGP), ATI Radeon Mobility 9600 (M10) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2 (M11) NV (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9800PRO NH (AGP),
	ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
	ATI Radeon 9800XT NJ (AGP)
(II) Primary Device is: PCI 01:00:0
(WW) RADEON: No matching Device section for instance (BusID PCI:1:0:1) found
(--) Chipset ATI Radeon 9200 5961 (AGP) found
(--) Chipset ATI Radeon 9200 5961 (AGP) found
(II) resource ranges after xf86ClaimFixedResources() call:
	[0] -1	0	0xffe00000 - 0xffefffff (0x100000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[6] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[7] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[8] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[9] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[10] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[11] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[12] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[13] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[14] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[15] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[16] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[17] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[18] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[19] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[20] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[21] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[22] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[23] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[24] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[25] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[26] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[27] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[28] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[29] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[30] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[31] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[32] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[33] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[34] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[35] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[36] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[37] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[38] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[39] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[40] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
	[41] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
(II) Loading sub module "radeon"
(II) LoadModule: "radeon"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/drivers/radeon_drv.o
(II) Loading sub module "radeon"
(II) LoadModule: "radeon"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/drivers/radeon_drv.o
(II) resource ranges after probing:
	[0] -1	0	0xffe00000 - 0xffefffff (0x100000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[6] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[7] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[8] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[9] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[10] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[11] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[12] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[13] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[14] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[15] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[16] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[17] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[18] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[19] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[20] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[21] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[22] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[23] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[24] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[25] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[26] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[27] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[28] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[29] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[30] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[31] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[32] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[33] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[34] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[35] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[36] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[37] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[38] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[39] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[40] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[41] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[42] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[43] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
	[44] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
	[45] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[46] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(II) RADEON(0): MMIO registers at 0xcfef0000
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libvgahw.a
(II) Module vgahw: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.7
(II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) RADEON(0): PCI bus 1 card 0 func 0
(**) RADEON(0): Depth 24, (--) framebuffer bpp 32
(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) RADEON(0): Default visual is TrueColor
(==) RADEON(0): RGB weight 888
(II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/linux/libint10.a
(II) RADEON(0): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(--) RADEON(0): Chipset: "ATI Radeon 9200 5961 (AGP)" (ChipID = 0x5961)
(--) RADEON(0): Linear framebuffer at 0xc0000000
(--) RADEON(0): BIOS at 0xcfec0000
(--) RADEON(0): VideoRAM: 131072 kByte (128 bit DDR SDRAM)
(II) RADEON(0): AGP card detected
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libddc.a
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libi2c.a
(II) Module i2c: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.2.0
	ABI class: XFree86 Video Driver, version 0.7
(II) RADEON(0): I2C bus "DDC" initialized.
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 2, Detected Type: 1
(II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) RADEON(0): I2C device "DDC:ddc2" removed.
(II) RADEON(0): DDC Type: 3, Detected Type: 1
(II) RADEON(0): Displays Detected: Monitor1--Type 1, Monitor2--Type 1

(II) RADEON(0): Monitor1 EDID data ---------------------------
(II) RADEON(0): Manufacturer: EPI  Model: e560  Serial#: 1398
(II) RADEON(0): Year: 2001  Week: 36
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Analog Display Input,  Input Voltage Level: 0.700/0.300 V
(II) RADEON(0): Sync:  Separate
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 30  vert.: 23
(II) RADEON(0): Gamma: 2.82
(II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.625 redY: 0.340   greenX: 0.285 greenY: 0.605
(II) RADEON(0): blueX: 0.150 blueY: 0.065   whiteX: 0.281 whiteY: 0.311
(II) RADEON(0): Supported VESA Video Modes:
(II) RADEON(0): 720x400@70Hz
(II) RADEON(0): 640x480@60Hz
(II) RADEON(0): 640x480@67Hz
(II) RADEON(0): 640x480@72Hz
(II) RADEON(0): 640x480@75Hz
(II) RADEON(0): 800x600@56Hz
(II) RADEON(0): 800x600@60Hz
(II) RADEON(0): 800x600@72Hz
(II) RADEON(0): 800x600@75Hz
(II) RADEON(0): 1024x768@60Hz
(II) RADEON(0): 1024x768@70Hz
(II) RADEON(0): 1024x768@75Hz
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported Future Video Modes:
(II) RADEON(0): #0: hsize: 1024  vsize 768  refresh: 60  vid: 16481
(II) RADEON(0): #1: hsize: 1024  vsize 768  refresh: 70  vid: 19041
(II) RADEON(0): #2: hsize: 1024  vsize 768  refresh: 75  vid: 20321
(II) RADEON(0): #3: hsize: 800  vsize 600  refresh: 60  vid: 16453
(II) RADEON(0): #4: hsize: 800  vsize 600  refresh: 75  vid: 20293
(II) RADEON(0): #5: hsize: 640  vsize 480  refresh: 60  vid: 16433
(II) RADEON(0): #6: hsize: 640  vsize 480  refresh: 75  vid: 20273
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 65.0 MHz   Image Size:  304 x 228 mm
(II) RADEON(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank_end 1344 h_border: 0
(II) RADEON(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 806 v_border: 0
(II) RADEON(0): Serial No: T5KF19AG01398
(II) RADEON(0): Ranges: V min: 55  V max: 75 Hz, H min: 29  H max: 61 kHz, PixClock max 80 MHz
(II) RADEON(0): Monitor name: EN-5100e
(II) RADEON(0): End of Monitor1 EDID data --------------------
(II) RADEON(0): Monitor2 EDID data ---------------------------
(II) RADEON(0): Manufacturer: ATE  Model: 8506  Serial#: 942815280
(II) RADEON(0): Year: 2001  Week: 19
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Analog Display Input,  Input Voltage Level: 0.700/0.300 V
(II) RADEON(0): Sync:  Separate
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 36  vert.: 29
(II) RADEON(0): Gamma: 2.50
(II) RADEON(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) RADEON(0): redX: 0.601 redY: 0.351   greenX: 0.304 greenY: 0.571
(II) RADEON(0): blueX: 0.148 blueY: 0.134   whiteX: 0.315 whiteY: 0.359
(II) RADEON(0): Supported VESA Video Modes:
(II) RADEON(0): 720x400@70Hz
(II) RADEON(0): 640x480@60Hz
(II) RADEON(0): 640x480@75Hz
(II) RADEON(0): 800x600@60Hz
(II) RADEON(0): 800x600@75Hz
(II) RADEON(0): 832x624@75Hz
(II) RADEON(0): 1024x768@60Hz
(II) RADEON(0): 1024x768@70Hz
(II) RADEON(0): 1024x768@75Hz
(II) RADEON(0): 1280x1024@75Hz
(II) RADEON(0): 1152x870@75Hz
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported Future Video Modes:
(II) RADEON(0): #0: hsize: 640  vsize 480  refresh: 60  vid: 16433
(II) RADEON(0): #1: hsize: 800  vsize 600  refresh: 60  vid: 16453
(II) RADEON(0): #2: hsize: 1024  vsize 768  refresh: 60  vid: 16481
(II) RADEON(0): #3: hsize: 1280  vsize 1024  refresh: 75  vid: 36737
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 135.0 MHz   Image Size:  359 x 287 mm
(II) RADEON(0): h_active: 1280  h_sync: 1296  h_sync_end 1440 h_blank_end 1688 h_border: 0
(II) RADEON(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
(II) RADEON(0): Ranges: V min: 58  V max: 75 Hz, H min: 31  H max: 80 kHz, PixClock max 140 MHz
(II) RADEON(0): Monitor name: 17 ANALOG MON
(II) RADEON(0): Monitor name: ITOR
(II) RADEON(0): End of Monitor2 EDID data --------------------
(II) RADEON(0): 
(II) RADEON(0): Primary Display == Type 1
(WW) RADEON(0): Failed to detect secondary monitor, MergedFB/Clone mode disabled
(==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
(II) RADEON(0): Validating modes on Primary head ---------
(II) RADEON(0): Envision: Using hsync range of 29.00-61.00 kHz
(II) RADEON(0): Envision: Using vrefresh range of 55.00-75.00 Hz
(II) RADEON(0): Clock range:  20.00 to 400.00 MHz
(II) RADEON(0): Not using default mode "640x350" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x400" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "720x400" (vrefresh out of range)
(II) RADEON(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "640x480" (vrefresh out of range)
(II) RADEON(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "800x600" (vrefresh out of range)
(II) RADEON(0): Not using default mode "400x300" (vrefresh out of range)
(II) RADEON(0): Not using default mode "1024x768" (vrefresh out of range)
(II) RADEON(0): Not using default mode "512x384" (vrefresh out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1024x768" (hsync out of range)
(II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1152x864" (hsync out of range)
(II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(WW) (1280x960,Envision) mode clock 108MHz exceeds DDC maximum 80MHz
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x960" (hsync out of range)
(II) RADEON(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1600x1024" (hsync out of range)
(II) RADEON(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(0): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(--) RADEON(0): Virtual size is 1024x768 (pitch 1024)
(**) RADEON(0): *Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(II) RADEON(0): Modeline "1024x768"   78.80  1024 1040 1136 1312  768 769 772 800 +hsync +vsync
(--) RADEON(0): Display dimensions: (300, 230) mm
(--) RADEON(0): DPI set to (86, 84)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libfb.a
(II) Module fb: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.7
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.1.0
	ABI class: XFree86 Video Driver, version 0.7
(II) RADEON(0): AGP Fast Write disabled by default
(II) RADEON(0): Depth moves disabled by default
(II) Loading sub module "shadowfb"
(II) LoadModule: "shadowfb"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/libshadowfb.a
(II) Module shadowfb: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 ANSI C Emulation, version 0.2
(II) RADEON(0): Page flipping disabled
(!!) RADEON(0): For information on using the multimedia capabilities
 of this adapter, please see http://gatos.sf.net.
(II) RADEON(1): MMIO registers at 0xcfef0000
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libvgahw.a
(II) RADEON(1): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) RADEON(1): PCI bus 1 card 0 func 0
(**) RADEON(1): Depth 24, (--) framebuffer bpp 32
(II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) RADEON(1): Default visual is TrueColor
(==) RADEON(1): RGB weight 888
(II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/linux/libint10.a
(II) RADEON(1): initializing int10
(II) RADEON(0): Primary V_BIOS segment is: 0xc000
(--) RADEON(1): Chipset: "ATI Radeon 9200 5961 (AGP)" (ChipID = 0x5961)
(--) RADEON(1): Linear framebuffer at 0xc0000000
(--) RADEON(1): BIOS at 0xcfec0000
(--) RADEON(1): VideoRAM: 65536 kByte (128 bit DDR SDRAM)
(II) RADEON(1): AGP card detected
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libddc.a
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libi2c.a
(II) RADEON(1): I2C bus "DDC" initialized.
(II) RADEON(1): Secondary Display == Type 1
(==) RADEON(1): Using gamma correction (1.0, 1.0, 1.0)
(II) RADEON(1): Validating modes on Secondary head ---------
(II) RADEON(1): Megavision: Using hsync range of 31.00-80.00 kHz
(II) RADEON(1): Megavision: Using vrefresh range of 58.00-75.00 Hz
(II) RADEON(1): Clock range:  20.00 to 400.00 MHz
(II) RADEON(1): Not using default mode "640x350" (vrefresh out of range)
(II) RADEON(1): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "640x400" (vrefresh out of range)
(II) RADEON(1): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "720x400" (vrefresh out of range)
(II) RADEON(1): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "640x480" (vrefresh out of range)
(II) RADEON(1): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "800x600" (vrefresh out of range)
(II) RADEON(1): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "800x600" (vrefresh out of range)
(II) RADEON(1): Not using default mode "400x300" (vrefresh out of range)
(II) RADEON(1): Not using default mode "1024x768" (vrefresh out of range)
(II) RADEON(1): Not using default mode "512x384" (vrefresh out of range)
(II) RADEON(1): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1024x768" (vrefresh out of range)
(II) RADEON(1): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1280x960" (hsync out of range)
(II) RADEON(1): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1280x1024" (hsync out of range)
(II) RADEON(1): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(WW) (1600x1200,Megavision) mode clock 162MHz exceeds DDC maximum 140MHz
(II) RADEON(1): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(1): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(1): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(1): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1600x1200" (hsync out of range)
(II) RADEON(1): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(1): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1792x1344" (hsync out of range)
(II) RADEON(1): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(1): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1856x1392" (hsync out of range)
(II) RADEON(1): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(1): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(1): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1152x768" (vrefresh out of range)
(II) RADEON(1): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1400x1050" (hsync out of range)
(II) RADEON(1): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "1920x1440" (hsync out of range)
(II) RADEON(1): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(1): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(1): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) RADEON(1): Not using default mode "2048x1536" (hsync out of range)
(II) RADEON(1): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(--) RADEON(1): Virtual size is 1280x1024 (pitch 1280)
(**) RADEON(1): *Default mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
(II) RADEON(1): Modeline "1280x1024"  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync
(--) RADEON(1): Display dimensions: (360, 290) mm
(--) RADEON(1): DPI set to (90, 89)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libfb.a
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libramdac.a
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libxaa.a
(II) RADEON(1): AGP Fast Write disabled by default
(II) RADEON(1): Depth moves disabled by default
(II) Loading sub module "shadowfb"
(II) LoadModule: "shadowfb"
(II) Reloading /usr/X11R6/lib/modules-dri-trunk/libshadowfb.a
(II) RADEON(1): Page flipping disabled
(!!) RADEON(1): For information on using the multimedia capabilities
 of this adapter, please see http://gatos.sf.net.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/X11R6/lib/modules-dri-trunk/librac.a
(II) Module rac: vendor="The XFree86 Project"
	compiled for 4.3.99.12, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.7
(II) resource ranges after preInit:
	[0] 0	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B]
	[1] 0	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
	[2] 0	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B]
	[3] 0	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
	[4] -1	0	0xffe00000 - 0xffefffff (0x100000) MX[B](B)
	[5] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[6] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[7] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[8] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[9] -1	0	0xfffff800 - 0xffffffff (0x800) MX[B]E
	[10] -1	0	0xcffda000 - 0xcffda7ff (0x800) MX[B]
	[11] -1	0	0xcffd9000 - 0xcffd9fff (0x1000) MX[B]
	[12] -1	0	0xcffe0000 - 0xcfffffff (0x20000) MX[B]
	[13] -1	0	0xcffdac00 - 0xcffdafff (0x400) MX[B]
	[14] -1	0	0xcffdb000 - 0xcffdbfff (0x1000) MX[B]
	[15] -1	0	0xcffdf000 - 0xcffdffff (0x1000) MX[B]
	[16] -1	0	0xcffde000 - 0xcffdefff (0x1000) MX[B]
	[17] -1	0	0xcffdd000 - 0xcffddfff (0x1000) MX[B]
	[18] -1	0	0xcffdc000 - 0xcffdcfff (0x1000) MX[B]
	[19] -1	0	0xd0000000 - 0xcfffffff (0x0) MX[B]O
	[20] -1	0	0xcfee0000 - 0xcfeeffff (0x10000) MX[B](B)
	[21] -1	0	0xb8000000 - 0xbfffffff (0x8000000) MX[B](B)
	[22] -1	0	0xcfec0000 - 0xcfedffff (0x20000) MX[B](B)
	[23] -1	0	0xcfef0000 - 0xcfefffff (0x10000) MX[B](B)
	[24] -1	0	0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
	[25] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B](OprU)
	[26] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)
	[27] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)
	[28] 0	0	0x00006800 - 0x000068ff (0x100) IX[B]
	[29] 0	0	0x00006800 - 0x000068ff (0x100) IX[B]
	[30] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[31] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[32] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[33] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[34] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[35] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[36] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[37] -1	0	0xfffffffc - 0xffffffff (0x4) IX[B]E
	[38] -1	0	0x0000b400 - 0x0000b47f (0x80) IX[B]
	[39] -1	0	0x0000cc00 - 0x0000ccff (0x100) IX[B]
	[40] -1	0	0x0000d000 - 0x0000d003 (0x4) IX[B]
	[41] -1	0	0x0000d400 - 0x0000d407 (0x8) IX[B]
	[42] -1	0	0x0000d800 - 0x0000d803 (0x4) IX[B]
	[43] -1	0	0x0000dc00 - 0x0000dc07 (0x8) IX[B]
	[44] -1	0	0x0000bc00 - 0x0000bcff (0x100) IX[B]
	[45] -1	0	0x0000c000 - 0x0000c0ff (0x100) IX[B]
	[46] -1	0	0x0000c400 - 0x0000c47f (0x80) IX[B]
	[47] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]
	[48] -1	0	0x0000ff00 - 0x0000ff0f (0x10) IX[B]
	[49] -1	0	0x00006800 - 0x000068ff (0x100) IX[B](B)
	[50] -1	0	0x0000b800 - 0x0000b8ff (0x100) IX[B]
	[51] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
	[52] 0	0	0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(==) RADEON(0): Write-combining range (0xc0000000,0x4000000)
(WW) RADEON(0): Direct Rendering Disabled -- Dual-head configuration is not working with DRI at present.
Please use the radeon MergedFB option if you want Dual-head with DRI.
(II) RADEON(0): Memory manager initialized to (0,0) (1024,8191)
(II) RADEON(0): Reserved area from (0,768) to (1024,770)
(II) RADEON(0): Largest offscreen area available: 1024 x 7421
(II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
	Screen to screen bit blits
	Solid filled rectangles
	8x8 mono pattern filled rectangles
	Indirect CPU to Screen color expansion
	Solid Lines
	Scanline Image Writes
	Offscreen Pixmaps
	Setting up tile and stipple cache:
		32 128x128 slots
		32 256x256 slots
		16 512x512 slots
(II) RADEON(0): Acceleration enabled
(==) RADEON(0): Backing store disabled
(==) RADEON(0): Silken mouse enabled
(II) RADEON(0): Using hardware cursor (scanline 770)
(II) RADEON(0): Largest offscreen area available: 1024 x 7417
(**) Option "dpms"
(**) RADEON(0): DPMS enabled
(II) RADEON(0): Direct rendering disabled
(==) RandR enabled
(==) RADEON(1): Write-combining range (0xc4000000,0x4000000)
(II) RADEON(0): Wrote: rd=12, fd=140, pd=2
(II) RADEON(1): Memory manager initialized to (0,0) (1280,8191)
(II) RADEON(1): Reserved area from (0,1024) to (1280,1026)
(II) RADEON(1): Largest offscreen area available: 1280 x 7165
(II) RADEON(1): Using XFree86 Acceleration Architecture (XAA)
	Screen to screen bit blits
	Solid filled rectangles
	8x8 mono pattern filled rectangles
	Indirect CPU to Screen color expansion
	Solid Lines
	Scanline Image Writes
	Offscreen Pixmaps
	Setting up tile and stipple cache:
		32 128x128 slots
		32 256x256 slots
		16 512x512 slots
(II) RADEON(1): Acceleration enabled
(==) RADEON(1): Backing store disabled
(==) RADEON(1): Silken mouse enabled
(II) RADEON(1): Using hardware cursor (scanline 1026)
(II) RADEON(1): Largest offscreen area available: 1280 x 7161
(**) Option "dpms"
(**) RADEON(1): DPMS enabled
(II) RADEON(1): Direct rendering disabled
(==) RandR enabled
(II) Entity 0 shares no resources
(II) Entity 1 shares no resources
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Keyboard "AT Keyboard" handled by legacy driver
(**) Option "Protocol" "ImPS/2"
(**) PS/2 Mouse: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) PS/2 Mouse: Core Pointer
(**) Option "Device" "/dev/psaux"
(**) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5
(**) PS/2 Mouse: Buttons: 5
(**) Option "Protocol" "ImPS/2"
(**) Input Layer Mice: Protocol: "ImPS/2"
(**) Option "Device" "/dev/input/mice"
(**) Input Layer Mice: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Input Layer Mice: ZAxisMapping: buttons 4 and 5
(**) Input Layer Mice: Buttons: 5
(**) Option "SampleRate" "200"
(**) Input Layer Mice: SampleRate: 200
(II) XINPUT: Adding extended input device "Input Layer Mice" (type: MOUSE)
(II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
(II) Server_Terminate keybinding not found
(II) PS/2 Mouse: ps2EnableDataReporting: succeeded
xf86PostButtonEvent BEGIN 0x87ed3e8(PS/2 Mouse) button=1 down=False is_core=True is_shared=False is_absolute=False
xf86CheckButton button=1 down=0 check=0 returns FALSE
xf86PostButtonEvent BEGIN 0x87ed3e8(PS/2 Mouse) button=2 down=False is_core=True is_shared=False is_absolute=False
xf86CheckButton button=2 down=0 check=0 returns FALSE
xf86PostButtonEvent BEGIN 0x87ed3e8(PS/2 Mouse) button=3 down=False is_core=True is_shared=False is_absolute=False
xf86CheckButton button=3 down=0 check=0 returns FALSE
xf86PostButtonEvent BEGIN 0x87ed3e8(PS/2 Mouse) button=4 down=False is_core=True is_shared=False is_absolute=False
xf86CheckButton button=4 down=0 check=0 returns FALSE
xf86PostButtonEvent BEGIN 0x87ed3e8(PS/2 Mouse) button=5 down=False is_core=True is_shared=False is_absolute=False
xf86CheckButton button=5 down=0 check=0 returns FALSE
Warning: font renderer for ".pcf" already registered at priority 0
Warning: font renderer for ".pcf.Z" already registered at priority 0
Warning: font renderer for ".pcf.gz" already registered at priority 0
Warning: font renderer for ".snf" already registered at priority 0
Warning: font renderer for ".snf.Z" already registered at priority 0
Warning: font renderer for ".snf.gz" already registered at priority 0
Warning: font renderer for ".bdf" already registered at priority 0
Warning: font renderer for ".bdf.Z" already registered at priority 0
Warning: font renderer for ".bdf.gz" already registered at priority 0
Warning: font renderer for ".pmf" already registered at priority 0
xf86PostMotionEvent acceleration v0=0 v1=2
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-1 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-1 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-1 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-1 v1=1
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=2
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-1 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=0 v1=2
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-2 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=-2 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
xf86PostMotionEvent BEGIN 0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False is_absolute=False
xf86PostMotionEvent acceleration v0=1 v1=0
xf86PostMotionEvent END   0x87ed3e8(PS/2 Mouse) is_core=True is_shared=False
(II) Screen 0 shares mem & io resources
(II) Screen 1 shares mem & io resources
(II) Screen 0 shares mem & io resources
(II) Screen 1 shares mem & io resources
(II) RADEON(0): Wrote: rd=12, fd=101, pd=3

-rw-r--r--    1 root     root       129756 Jan 19 21:31 /var/log/XFree86.0.log

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux neurosis 2.6.1 #1 Sun Jan 18 18:37:52 EST 2004 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages xserver-xfree86 depends on:
ii  debconf                     1.3.20       Debian configuration management sy
ii  libc6                       2.3.2.ds1-10 GNU C Library: Shared libraries an
ii  xserver-common              4.2.1-15     files and utilities common to all 
ii  zlib1g                      1:1.2.1-3    compression library - runtime

-- debconf information:
* xserver-xfree86/config/device/identifier: Radeon 9200
  xserver-xfree86/config/monitor/screen-size: 17 inches (430 mm)
  xserver-xfree86/config/device/use_fbdev: 
* xserver-xfree86/config/monitor/selection-method: Advanced
  xserver-xfree86/config/doublequote_in_string_error: 
  shared/default-x-server: xserver-xfree86
* xserver-xfree86/config/inputdevice/mouse/emulate3buttons: false
* xserver-xfree86/config/device/bus_id: 
* xserver-xfree86/config/inputdevice/keyboard/layout: us
* xserver-xfree86/config/monitor/horiz-sync: 30-80
* xserver-xfree86/config/monitor/identifier: MV175
  shared/no_known_x-server: 
  xserver-xfree86/autodetect_mouse: true
* xserver-xfree86/config/device/video_ram: 
  xserver-xfree86/config/monitor/mode-list: 1280x960 @ 60Hz
* xserver-xfree86/config/monitor/lcd: true
  xserver-xfree86/config/inputdevice/keyboard/internal: 
* xserver-xfree86/config/inputdevice/keyboard/rules: xfree86
  xserver-xfree86/multiple_possible_x-drivers: 
* xserver-xfree86/config/inputdevice/keyboard/model: pc101
* xserver-xfree86/config/write_dri_section: true
* xserver-xfree86/config/device/driver: ati
* xserver-xfree86/config/monitor/vert-refresh: 56-75
* xserver-xfree86/config/display/default_depth: 24
* xserver-xfree86/config/inputdevice/mouse/zaxismapping: true
* xserver-xfree86/config/display/modes: 1280x1024, 1024x768, 800x600, 640x480
  xserver-xfree86/config/device/bus_id_error: 
* xserver-xfree86/config/modules: GLcore, bitmap, dbe, ddc, dri, extmod, freetype, glx, int10, record, speedo, type1, vbe
* xserver-xfree86/config/inputdevice/keyboard/options: 
  xserver-xfree86/config/nonnumeric_string_error: 
* xserver-xfree86/config/inputdevice/mouse/protocol: ImPS/2
  shared/multiple_possible_x-servers: 
  xserver-xfree86/config/null_string_error: 
  xserver-xfree86/config/monitor/range_input_error: 
  xserver-xfree86/autodetect_video_card: true
* xserver-xfree86/config/inputdevice/keyboard/variant: 
* xserver-xfree86/config/inputdevice/mouse/port: /dev/psaux
* xserver-xfree86/config/write_files_section: true
* xserver-xfree86/autodetect_monitor: true


---------------------------------------
Received: (at 228665-done) by bugs.debian.org; 27 Jan 2004 21:51:49 +0000
>From branden@deadbeast.net Tue Jan 27 13:51:49 2004
Return-path: <branden@deadbeast.net>
Received: from dhcp065-026-182-085.indy.rr.com (redwald.deadbeast.net) [65.26.182.85] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1Alb7d-00020c-00; Tue, 27 Jan 2004 13:51:49 -0800
Received: by redwald.deadbeast.net (Postfix, from userid 1000)
	id D5CD264144; Tue, 27 Jan 2004 16:51:48 -0500 (EST)
Date: Tue, 27 Jan 2004 16:51:48 -0500
From: branden@debian.org
To: 228665-done@bugs.debian.org
Subject: [branden@debian.org: Re: Bug#228665: xserver-xfree86: [mouse] SendCoreEvents + ServerLayout entry leads to doubled events]
Message-ID: <20040127215148.GD4060@deadbeast.net>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="ieNMXl1Fr3cevapt"
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
Delivered-To: 228665-done@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_01_25 
	(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-1.6 required=4.0 tests=HAS_BUG_NUMBER,NO_REAL_NAME 
	autolearn=no version=2.60-bugs.debian.org_2004_01_25
X-Spam-Level: 


--ieNMXl1Fr3cevapt
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

----- Forwarded message from Branden Robinson <branden@debian.org> -----

=46rom: Branden Robinson <branden@debian.org>
Cc: 229796-done@bugs.debian.org
Subject: Re: Bug#228665: xserver-xfree86: [mouse] SendCoreEvents + ServerLa=
yout entry leads to doubled events
Date: Tue, 27 Jan 2004 13:29:00 -0500
Message-ID: <20040127182859.GE4721@deadbeast.net>
User-Agent: Mutt/1.5.5.1+cvs20040105i

On Tue, Jan 27, 2004 at 09:08:32PM +1100, Herbert Xu wrote:
> tags 229796 pending
> quit
>=20
> On Mon, Jan 26, 2004 at 12:13:19PM -0500, Branden Robinson wrote:
> >=20
> > Are you willing to do this for our 2.6 kernels?
>=20
> Sure.  I've done it for the next release by disabling the psaux
> extension unless it is enabled with a module parameter.

Closing this bug; it is being resolved in Debian's 2.6 Linux kernel
packages.

--=20
G. Branden Robinson                |       Our ignorance is God; what we
Debian GNU/Linux                   |       know is science.
branden@debian.org                 |       -- Robert Green Ingersoll
http://people.debian.org/~branden/ |



----- End forwarded message -----

--=20
G. Branden Robinson                |     Exercise your freedom of religion.
Debian GNU/Linux                   |     Set fire to a church of your
branden@debian.org                 |     choice.
http://people.debian.org/~branden/ |

--ieNMXl1Fr3cevapt
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iEYEARECAAYFAkAW3XQACgkQ6kxmHytGonzf0QCcC6DVuy2GQs9BFtyszCk95cZY
H9IAmgOepu47BTjKXKrFF7hE4mByo0In
=Y9co
-----END PGP SIGNATURE-----

--ieNMXl1Fr3cevapt--



Reply to: