Hi Mark,
Sorry for my rather rough way of programming, butr I am
newbie in xfree programming.
I send below my modified version of AllocateArea with lots
of output messages and then the corresponding log file.
(note that this is the corrected version of the function).
You can note that you can go into the test if(area) ....
even if a new item in the list has not been allocated
(search for the string "PROBLEM IS HERE" to find
the relevant line in the log file")
So if you could help me to clear this, I would appreciate.
Jacques
static FBAreaPtr
AllocateArea(
FBManagerPtr offman,
int w, int h,
int granularity,
MoveAreaCallbackProcPtr moveCB,
RemoveAreaCallbackProcPtr removeCB,
pointer privData
){
ScreenPtr pScreen = offman->pScreen;
FBLinkPtr link = NULL;
FBAreaPtr area = NULL;
RegionRec NewReg;
int i, x = 0, num, newlink = 0;
BoxPtr boxp;
ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum];
if(granularity <= 1) granularity = 0;
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"Avant regionrects.\n");
boxp = REGION_RECTS(offman->FreeBoxes);
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI1.\n");
num = REGION_NUM_RECTS(offman->FreeBoxes);
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI2.\n");
/* look through the free boxes */
for(i = 0; i < num; i++, boxp++) {
x = boxp->x1;
if(granularity) {
int tmp = x % granularity;
if(tmp) x += (granularity - tmp);
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI3.\n");
if(((boxp->y2 - boxp->y1) < h) || ((boxp->x2 - x) < w))
continue;
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"Avant xalloc.\n");
link = xalloc(sizeof(FBLink));
newlink = 1;
if(!link) return NULL;
area = &(link->area);
break;
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI4.\n");
/* try to boot a removeable one out if we are not expendable ourselves */
if(!area && !removeCB) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI5.\n");
link = offman->UsedAreas;
while(link) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI6.\n");
if(!link->area.RemoveAreaCallback) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI7.\n");
link = link->next;
continue;
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI8.\n");
boxp = &(link->area.box);
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI9.\n");
x = boxp->x1;
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI10.\n");
if(granularity) {
int tmp = x % granularity;
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI11.\n");
if(tmp) x += (granularity - tmp);
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI12.\n");
if(((boxp->y2 - boxp->y1) < h) || ((boxp->x2 - x) < w)) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"ICI13.\n");
link = link->next;
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"1:link: %p\n", link );
continue;
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"2:link: %p\n", link );
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"Avant region_init.\n");
/* bye, bye */
(*link->area.RemoveAreaCallback)(&link->area);
REGION_INIT(pScreen, &NewReg, &(link->area.box), 1);
REGION_UNION(pScreen, offman->FreeBoxes, offman->FreeBoxes, &NewReg);
REGION_UNINIT(pScreen, &NewReg);
offman->NumUsedAreas--;
area = &(link->area);
break;
}
}
if(area) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"On passe dans area.\n");
area->pScreen = pScreen;
area->granularity = granularity;
area->box.x1 = x;
area->box.x2 = x + w;
area->box.y1 = boxp->y1;
area->box.y2 = boxp->y1 + h;
area->MoveAreaCallback = moveCB;
area->RemoveAreaCallback = removeCB;
area->devPrivate.ptr = privData;
REGION_INIT(pScreen, &NewReg, &(area->box), 1);
REGION_SUBTRACT(pScreen, offman->FreeBoxes, offman->FreeBoxes, &NewReg);
REGION_UNINIT(pScreen, &NewReg);
if ( newlink ) {
link->next = offman->UsedAreas;
offman->UsedAreas = link;
}
offman->NumUsedAreas++;
}
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"List after...\n");
link=offman->UsedAreas;
xf86DrvMsg(0,X_INFO,"link: %p\n", link);
while(link) {
link = link->next;
xf86DrvMsg(0,X_INFO,"link: %p\n", link);
if (link == link->next)
break;
}
return area;
}
This is a pre-release version of XFree86, and is not supported in any
way. Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED] 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.1.99.1 / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: xx November 2001
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems. (See http://www.XFree86.Org/)
Build Operating System: Linux 2.2.19 i686 [ELF]
Module Loader present
(==) Log file: "/var/log/XFree86.0.log", Time: Sun Dec 2 21:56:59 2001
(==) Using config file: "/etc/X11/XF86Config"
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout "Layout[all]"
(**) |-->Screen "Screen[0]" (0)
(**) | |-->Monitor "Monitor[0]"
(**) | |-->Device "Device[0]"
(**) |-->Input Device "Keyboard[0]"
(**) Option "Protocol" "Standard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "fr"
(**) XKB: layout: "fr"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Mouse[1]"
(**) FontPath set to
"/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(**) Option "AllowMouseOpenFail"
(--) using VT number 7
(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.5
XFree86 XInput driver : 0.3
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.3
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10b9,1632 card 0000,0000 rev 01 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 10b9,5247 card 0000,0000 rev 01 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 10b9,5237 card 1179,0004 rev 03 class 0c,03,10 hdr 00
(II) PCI: 00:04:0: chip 10b9,5229 card 1179,0004 rev c3 class 01,01,f0 hdr 00
(II) PCI: 00:06:0: chip 10b9,5451 card 1179,0001 rev 01 class 04,01,00 hdr 00
(II) PCI: 00:07:0: chip 10b9,1533 card 1179,0004 rev 00 class 06,01,00 hdr 00
(II) PCI: 00:08:0: chip 10b9,7101 card 1179,0001 rev 00 class 06,80,00 hdr 00
(II) PCI: 00:11:0: chip 1179,0617 card 0000,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 00:11:1: chip 1179,0617 card 0000,0000 rev 32 class 06,07,00 hdr 82
(II) PCI: 01:00:0: chip 1023,8620 card 1179,0001 rev 5d class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: "scanpci"
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) UnloadModule: "scanpci"
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
[0] -1 0xfe000000 - 0xff7fffff (0x1800000) MX[B]
(II) Bus 1 prefetchable memory range:
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI:*(1:0:0) Trident CyberBlade/DSTN/Ai1 rev 93, Mem @ 0xff000000/23,
0xfefe0000/17, 0xfe000000/23
(II) Addressable bus resource ranges are
[0] -1 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1 0xfdffe000 - 0xfdffffff (0x2000) MX[B]E
[1] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[2] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[3] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[4] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[5] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[6] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[7] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
(II) PCI Memory resource overlap reduced 0xfdffe000 from 0xfdffffff to 0xfdffefff
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0xfdffe000 - 0xfdffefff (0x1000) MX[B]E
[1] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[2] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[3] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[4] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[5] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[6] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[7] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0xfdffe000 - 0xfdffefff (0x1000) MX[B]E
[6] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[8] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[9] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[10] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[11] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[14] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.1
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
(II) Module speedo: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.1
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font Speedo
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.1.10
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(II) Loading font FreeType
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(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) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.1
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Module GLcore: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "trident"
(II) Loading /usr/X11R6/lib/modules/drivers/trident_drv.o
(II) Module trident: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
Module class: XFree86 Video Driver
ABI class: XFree86 Video Driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
Module class: XFree86 XInput Driver
ABI class: XFree86 XInput driver, version 0.3
(II) TRIDENT: driver for Trident chipsets: tvga9000, tvga9000i, tvga8900c,
tvga8900d, tvga9200cxr, tgui9400cxi, cyber9320, cyber9388, cyber9397,
cyber9397dvd, cyber9520, cyber9525dvd, cyberblade/e4, tgui9420dgi,
tgui9440agi, tgui9660, tgui9680, providia9682, providia9685,
cyber9382, cyber9385, 3dimage975, 3dimage985, blade3d, cyberbladei7,
cyberbladei7d, cyberbladei1, cyberbladei1d, cyberbladeAi1,
cyberbladeAi1d, cyberbladeXPm/8, cyberbladeXPm/16, cyberbladeXPAi1
(II) Primary Device is: PCI 01:00:0
(--) Chipset cyberbladeAi1d found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0xfdffe000 - 0xfdffefff (0x1000) MX[B]E
[6] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[8] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[9] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[10] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[11] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[12] -1 0x00000000 - 0x000000ff (0x100) IX[B]
[13] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[14] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
(II) resource ranges after probing:
[0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0xfdffe000 - 0xfdffefff (0x1000) MX[B]E
[6] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[7] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[8] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[9] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[10] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[11] 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[12] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[13] 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[14] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[17] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
[18] 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[19] 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) TRIDENT(0): Depth 16, (--) framebuffer bpp 16
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(==) TRIDENT(0): RGB weight 565
(==) TRIDENT(0): Default visual is TrueColor
(==) TRIDENT(0): Using gamma correction (1.0, 1.0, 1.0)
(**) TRIDENT(0): Option "SWcursor"
(**) TRIDENT(0): Linear framebuffer at 0xFF000000
(--) TRIDENT(0): IO registers at 0xFEFE0000
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.5
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.5
(II) TRIDENT(0): initializing int10
(II) TRIDENT(0): Primary V_BIOS segment is: 0xc000
(II) TRIDENT(0): VESA BIOS detected
(II) TRIDENT(0): VESA VBE Version 2.0
(II) TRIDENT(0): VESA VBE Total Mem: 8192 kB
(II) TRIDENT(0): VESA VBE OEM: Trident CYBER 8620
(II) TRIDENT(0): VESA VBE OEM Software Rev: 2.0
(II) TRIDENT(0): VESA VBE OEM Vendor: TRIDENT MICROSYSTEMS INC.
(II) TRIDENT(0): VESA VBE OEM Product: CYBER 8620
(II) TRIDENT(0): VESA VBE OEM Product Rev: BTT 7.0 (05.10)
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.5
(II) TRIDENT(0): VESA VBE DDC supported
(II) TRIDENT(0): VESA VBE DDC Level 2
(II) TRIDENT(0): VESA VBE DDC transfer in appr. 1 sec.
(II) TRIDENT(0): VESA VBE DDC read successfully
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) TRIDENT(0): Manufacturer: TOS Model: 5082 Serial#: 0
(II) TRIDENT(0): Year: 1990 Week: 0
(II) TRIDENT(0): EDID Version: 1.3
(II) TRIDENT(0): Digital Display Input
(II) TRIDENT(0): Max H-Image Size [cm]: horiz.: 29 vert.: 22
(II) TRIDENT(0): Gamma: 1.00
(II) TRIDENT(0): DPMS capabilities: StandBy Suspend; RGB/Color Display
(II) TRIDENT(0): First detailed timing is preferred mode
(II) TRIDENT(0): redX: 0.000 redY: 0.000 greenX: 0.000 greenY: 0.000
(II) TRIDENT(0): blueX: 0.000 blueY: 0.000 whiteX: 0.000 whiteY: 0.000
(II) TRIDENT(0): Supported VESA Video Modes:
(II) TRIDENT(0): 640x480@60Hz
(II) TRIDENT(0): 800x600@60Hz
(II) TRIDENT(0): 1024x768@60Hz
(II) TRIDENT(0): 1280x1024@75Hz
(II) TRIDENT(0): Manufacturer's mask: 0
(II) TRIDENT(0): Supported Future Video Modes:
(II) TRIDENT(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
(II) TRIDENT(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
(II) TRIDENT(0): Monitor name: TOSHIBA Inte
(II) TRIDENT(0): Monitor name: rnal 1024x76
(II) TRIDENT(0): Monitor name: 8 Panel
(--) TRIDENT(0): Revision is 122
(**) TRIDENT(0): Using SW cursor
(--) TRIDENT(0): Found CyberBlade/DSTN/Ai1 chip
(--) TRIDENT(0): RAM type is SDRAM
(--) TRIDENT(0): VideoRAM: 8192 kByte
(--) TRIDENT(0): TFT Panel 1024x768 found
(--) TRIDENT(0): Memory Clock is 100.23 MHz
(==) TRIDENT(0): Min pixel clock is 12 MHz
(--) TRIDENT(0): Max pixel clock is 230 MHz
(II) TRIDENT(0): Monitor[0]: Using hsync range of 31.00-82.00 kHz
(II) TRIDENT(0): Monitor[0]: Using vrefresh range of 58.00-80.00 Hz
(II) TRIDENT(0): Clock range: 12.00 to 230.00 MHz
(II) TRIDENT(0): Removing mode (1280x1024) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using mode "1280x1024" (unknown reason)
(II) TRIDENT(0): Not using default mode "640x350" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "640x400" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "720x400" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "640x480" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "800x600" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "800x600" (vrefresh out of range)
(II) TRIDENT(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1152x864) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1152x864" (unknown reason)
(II) TRIDENT(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1280x960) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1280x960" (unknown reason)
(II) TRIDENT(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1280x960) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1280x960" (unknown reason)
(II) TRIDENT(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1200) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1200" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1200) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1200" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1200) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1200" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1200) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1200" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1200) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1200" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1792x1344) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1792x1344" (unknown reason)
(II) TRIDENT(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "1792x1344" (bad mode
clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1856x1392) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1856x1392" (unknown reason)
(II) TRIDENT(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "1856x1392" (bad mode
clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "1920x1440" (bad mode
clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "1920x1440" (bad mode
clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Not using default mode "416x312" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1400x1050) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1400x1050" (unknown reason)
(II) TRIDENT(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1400x1050) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1400x1050" (unknown reason)
(II) TRIDENT(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
(II) TRIDENT(0): Removing mode (1600x1024) larger than the LCD panel (1024x768)
(II) TRIDENT(0): Not using default mode "1600x1024" (unknown reason)
(II) TRIDENT(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
(--) TRIDENT(0): Virtual size is 1024x768 (pitch 1024)
(**) TRIDENT(0): Mode "1024x768": 71.4 MHz, 51.0 kHz, 63.6 Hz
(II) TRIDENT(0): Modeline "1024x768" 71.39 1024 1040 1216 1400 768 768 777 802
(null)
(**) TRIDENT(0): Display dimensions: (280, 210) mm
(**) TRIDENT(0): DPI set to (92, 92)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 ANSI C Emulation, version 0.1
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.2.0
ABI class: XFree86 Video Driver, version 0.5
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
compiled for 4.1.99.1, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.5
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0xfe000000 - 0xfe7fffff (0x800000) MX[B]
[1] 0 0xfefe0000 - 0xfeffffff (0x20000) MX[B]
[2] 0 0xff000000 - 0xff7fffff (0x800000) MX[B]
[3] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[4] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[5] -1 0x000f0000 - 0x000fffff (0x10000) MX[B]
[6] -1 0x000c0000 - 0x000effff (0x30000) MX[B]
[7] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[8] -1 0xfdffe000 - 0xfdffefff (0x1000) MX[B]E
[9] -1 0xfdfff000 - 0xfdffffff (0x1000) MX[B]E
[10] -1 0xf8000000 - 0xfbffffff (0x4000000) MX[B]E
[11] -1 0xfe000000 - 0xfe7fffff (0x800000) MX[B](B)
[12] -1 0xfefe0000 - 0xfeffffff (0x20000) MX[B](B)
[13] -1 0xff000000 - 0xff7fffff (0x800000) MX[B](B)
[14] 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprU)
[15] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprU)
[16] 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprU)
[17] -1 0x0000ffff - 0x0000ffff (0x1) IX[B]
[18] -1 0x00000000 - 0x000000ff (0x100) IX[B]
[19] -1 0x0000ed00 - 0x0000edff (0x100) IX[B]E
[20] -1 0x0000eff0 - 0x0000efff (0x10) IX[B]E
[21] 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[22] 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(==) TRIDENT(0): Write-combining range (0xff000000,0x800000)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) TRIDENT(0): Initializing int10
(II) TRIDENT(0): Primary V_BIOS segment is: 0xc000
(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) TRIDENT(0): Overriding Horizontal timings.
(II) TRIDENT(0): Shadow off
(II) TRIDENT(0): H-timing shadow registers: 0xa3 0x00 0x84 0x94
(II) TRIDENT(0): H-timing registers: 0xa3 0x7f 0x7f 0x00 0x84 0x94
(II) TRIDENT(0): V-timing shadow registers: 0x24 0xf5 0x03 0x09 0x24 (0x08)
(II) TRIDENT(0): V-timing registers: 0x24 0xf5 0x03 0x09 0xff 0x00 0x24
(II) TRIDENT(0): Setting BIOS Mode: 79
(II) TRIDENT(0): Found Clock 65.00 n=219 m=23 k=1
(II) TRIDENT(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(II) TRIDENT(0): xf86PurgeUnlockedOffscreenAreas
(II) TRIDENT(0): xf86InitFBManagerRegion
(II) TRIDENT(0): xf86RegisterOffscreenManager
(II) TRIDENT(0): xf86FBManagerRunning
(II) TRIDENT(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
8x8 mono pattern filled rectangles
CPU to Screen color expansion
Solid Horizontal and Vertical Lines
Image Writes
Offscreen Pixmaps
(II) TRIDENT(0): xf86RegisterFreeBoxCallback
(II) TRIDENT(0): localRegisterFreeBoxCallback
(II) TRIDENT(0): SendCallFreeBoxCallbacks
Setting up tile and stipple cache:
32 128x128 slots
10 256x256 slots
(==) TRIDENT(0): Backing store disabled
(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) Keyboard "Keyboard[0]" handled by legacy driver
(**) Option "Protocol" "imps/2"
(**) Mouse[1]: Protocol: "imps/2"
(**) Option "CorePointer"
(**) Mouse[1]: Core Pointer
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons"
(**) Mouse[1]: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse[1]: ZAxisMapping: buttons 4 and 5
(**) Mouse[1]: Buttons: 5
(II) XINPUT: Adding extended input device "Mouse[1]" (type: MOUSE)
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8779870
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: 0x8779870
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86FreeOffscreenArea
(II) TRIDENT(0): localFreeOffscreenArea
(II) TRIDENT(0): Chained list before...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: 0x8779870
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): Scanning area...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: 0x8779870
(II) TRIDENT(0): pLinkPrev: 0x87d67e8
(II) TRIDENT(0): pLink->next: (nil)
(II) TRIDENT(0): Chained list after...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87e2e18
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86FreeOffscreenArea
(II) TRIDENT(0): localFreeOffscreenArea
(II) TRIDENT(0): Chained list before...
(II) TRIDENT(0): pLink: 0x87e2e18
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): Scanning area...
(II) TRIDENT(0): pLink: 0x87e2e18
(II) TRIDENT(0): pLinkPrev: (nil)
(II) TRIDENT(0): pLink->next: 0x87d67e8
(II) TRIDENT(0): Chained list after...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): Alloc normale.
(II) TRIDENT(0): xf86AllocateOffscreenLinear
(II) TRIDENT(0): localAllocateOffscreenLinear
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): Apres extent.
(II) TRIDENT(0): Avant offscreenarea w: 1024 h: 405.
(II) TRIDENT(0): localAllocateOffscreenArea <-Call of the AllocateArea function
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): ICI5.
(II) TRIDENT(0): ICI6.
(II) TRIDENT(0): ICI8.
(II) TRIDENT(0): ICI9.
(II) TRIDENT(0): ICI10.
(II) TRIDENT(0): ICI11.
(II) TRIDENT(0): ICI12.
(II) TRIDENT(0): 2:link: 0x87d67e8 <--- No new item has been allocated here but link
!= NULL
(II) TRIDENT(0): Avant region_init.
(II) TRIDENT(0): On passe dans area. <---PROBLEM IS HERE
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x87d67e8
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): xf86FreeOffscreenLinear
(II) TRIDENT(0): localFreeOffscreenLinear
(II) TRIDENT(0): localFreeOffscreenArea
(II) TRIDENT(0): Chained list before...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): Scanning area...
(II) TRIDENT(0): pLink: 0x87d67e8
(II) TRIDENT(0): pLinkPrev: (nil)
(II) TRIDENT(0): pLink->next: (nil)
(II) TRIDENT(0): Chained list after...
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56b28
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56b28
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56b28
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): Alloc normale.
(II) TRIDENT(0): xf86AllocateOffscreenLinear
(II) TRIDENT(0): localAllocateOffscreenLinear
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): Apres extent.
(II) TRIDENT(0): Avant offscreenarea w: 1024 h: 405.
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): ICI5.
(II) TRIDENT(0): ICI6.
(II) TRIDENT(0): ICI8.
(II) TRIDENT(0): ICI9.
(II) TRIDENT(0): ICI10.
(II) TRIDENT(0): ICI11.
(II) TRIDENT(0): ICI12.
(II) TRIDENT(0): ICI13.
(II) TRIDENT(0): 1:link: 0x8b56408
(II) TRIDENT(0): ICI6.
(II) TRIDENT(0): ICI8.
(II) TRIDENT(0): ICI9.
(II) TRIDENT(0): ICI10.
(II) TRIDENT(0): ICI11.
(II) TRIDENT(0): ICI12.
(II) TRIDENT(0): ICI13.
(II) TRIDENT(0): 1:link: (nil)
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56b28
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): xf86QueryLargestOffscreenLinear
(II) TRIDENT(0): localQueryLargestOffscreenLinear
(II) TRIDENT(0): localQueryLargestOffscreenArea
(II) TRIDENT(0): xf86PurgeUnlockedOffscreenAreas
(II) TRIDENT(0): localPurgeUnlockedOffscreenAreas
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86AllocateOffscreenLinear
(II) TRIDENT(0): localAllocateOffscreenLinear
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): Apres extent.
(II) TRIDENT(0): Avant offscreenarea w: 1024 h: 405.
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8b56408
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): Alloc purge.
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): new_size: 414720 dstPitch: 1440 height: 576 bpp: 2
(II) TRIDENT(0): xf86FreeOffscreenLinear
(II) TRIDENT(0): localFreeOffscreenLinear
(II) TRIDENT(0): localFreeOffscreenArea
(II) TRIDENT(0): Chained list before...
(II) TRIDENT(0): pLink: 0x8b56408
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): Scanning area...
(II) TRIDENT(0): pLink: 0x8b56408
(II) TRIDENT(0): pLinkPrev: (nil)
(II) TRIDENT(0): pLink->next: (nil)
(II) TRIDENT(0): Chained list after...
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
(II) TRIDENT(0): xf86AllocateOffscreenArea
(II) TRIDENT(0): localAllocateOffscreenArea
(II) TRIDENT(0): Avant regionrects.
(II) TRIDENT(0): ICI1.
(II) TRIDENT(0): ICI2.
(II) TRIDENT(0): ICI3.
(II) TRIDENT(0): Avant xalloc.
(II) TRIDENT(0): ICI4.
(II) TRIDENT(0): On passe dans area.
(II) TRIDENT(0): List after...
(II) TRIDENT(0): link: 0x8a52f20
(II) TRIDENT(0): link: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) TRIDENT(0): xf86FreeOffscreenArea
(II) TRIDENT(0): localFreeOffscreenArea
(II) TRIDENT(0): Chained list before...
(II) TRIDENT(0): pLink: 0x8a52f20
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): Scanning area...
(II) TRIDENT(0): pLink: 0x8a52f20
(II) TRIDENT(0): pLinkPrev: (nil)
(II) TRIDENT(0): pLink->next: (nil)
(II) TRIDENT(0): Chained list after...
(II) TRIDENT(0): pLink: (nil)
(II) TRIDENT(0): SendCallFreeBoxCallbacks
(II) PM Event received: Power Status Change
--
_________________________________
(
) Jacques GANGLOFF
( Associate Professor
) LSIIT / GRAViR
( Bd S�bastien Brant
) 67400 Illkirch
( Tel : +33 (0)3 90 24 44 68
) Fax : +33 (0)3 90 24 44 80
( http://gravir.u-strasbg.fr
)_________________________________
_______________________________________________
Xpert mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xpert