Sub queries with the Oracle OLEDB driver

We have been testing the Oracle OLEDB driver through VB/ADO on Win2k and have found some VERY disturbing issues. First, some background - version 8.1.7.2, using client side-disconnected recordsets.
A simple query with one or more subqueries is returning no rows when running the same query in SQLPlus returns the desired results. EX: Select a.*, (select Typename from user_types where user_types.type_id =a.type_id) user_type_name from users_group a where user_id = 5
remove the sub-select and the ORACLE OLEDB driver returns a single row. Leave it in and you get recordcount = 0 and rs.eof is true.
Can anyone explain this?
Thanks

Duplicate post:
In Trouble with the Oracle JDBC Driver version - 10.1.0.5.0
Claus,
Pardon me if I am stating the obvious, but why don't you use the 10.2 JDBC driver with your 10.2 database? The driver is part of the database distribution. Otherwise, you can download the driver from the OTN Web site.
Good Luck,
Avi.

Similar Messages

  • In Trouble with the Oracle JDBC Driver version - 10.1.0.5.0

    Hi !
    Without any problems i'm using the Oracle JDBC Driver version - 10.1.0.3.0 to access to the
    Oracle database (Oracle Database 10g Release 10.2.0.1.0 - 64bit Production).
    But exchanging the JDBC Driver 10.1.0.3.0 to 10.1.0.5.0 brings up the following problem:
    the statement
         con.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability)
         (with parameters resultSetType = 1003, resultSetConcurrency = 1007, resultSetHoldability= 1)
    returns null !
    while using the Oracle JDBC Driver version - 10.1.0.3.0 the statement (with same parameters)
    returns a correct PreparedStatement.
    Every hint or idea is welcome.
    Best regards,
    Claus

    Duplicate post:
    In Trouble with the Oracle JDBC Driver version - 10.1.0.5.0
    Claus,
    Pardon me if I am stating the obvious, but why don't you use the 10.2 JDBC driver with your 10.2 database? The driver is part of the database distribution. Otherwise, you can download the driver from the OTN Web site.
    Good Luck,
    Avi.

  • Web Logic 6.1 JDBC Pooling with the Oracle Thin Driver

    Hi,
    We're slowly getting through a WebLogic 4.5.1 to 6.1 conversion for a small application
    at my company. Initially, we had trouble getting the Oracle thin driver working.
    We've finally cracked this nut. Now we're trying to get pooling working, and
    cannot find an example of doing this with the Oracle thin driver.
    Would anyone be able to provide:
    1. the portion of the config.xml that pertains to building a connection pool using
    the Oracle thin driver
    2. the two lines of code for loading the driver and getting a connection from
    this pool
    i.e.
    Driver d = (Driver)Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Connection c = d.connect("jdbc:weblogic:pool:myPool", null);
    Thanks very much!
    Jeff Ryan
    The Hartford

    "Jeff Ryan" <[email protected]> wrote:
    >
    1. the portion of the config.xml that pertains to building a connection
    pool using
    the Oracle thin driver
    You don't usually edit the config.xml unless it is absolutely necessar. Instead,
    you can config the pool in the GUI admin console, quite easily. After you successfully
    configed the pool in the console, it is written into the config.xml file for you.
    Only thing special when config the pool is the name of the driver and the url.
    url: jdbc:oracle:thin@dbhost:dbport:dbinstance
    driver: oracle.jdbc.driver.OracleDriver
    If you prefer, you can also config the pool from the command line. It is detailed
    in the "Weblogic Server Command-line Interface Reference".
    2. the two lines of code for loading the driver and getting a connection
    from
    this pool
    i.e.
    Driver d = (Driver)Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Connection c = d.connect("jdbc:weblogic:pool:myPool", null);
    Again, you don't use the connection directly. Instead, you use "Data Source".
    Data source in weblogic is just a connection object factory associated with a
    JNDI name. You can therefore lookup the data source with the JNDI name and from
    the data source object, you get the connectin object. No need to explicitly load
    the driver class.
    There are plenty of example codes available in the weblogic examples installed
    with 6.1, that uses the data source.
    Charles

  • Oracle OLEDB drive 8i and 9i truncates LONG fields

    Anyone,
    I have a situation where my Oracle oledb driver truncates LONG fields.
    My application that runs queries using the oracle oledb driver.
    The query is a join between two tables and includes a LONG as one of the fields retrieved.
    When the Cursor Location is set to server the data returned is truncated.
    Setting the Cursor Location to Client I can retrieve the complete data under specific cursor and lock types. The Microsoft driver for oracle does not truncate.
    Note that a simple query without the join does not cause the problem.
    Has anyone else noticed this? I know its quite specific.
    Otherwise where do you submit bugs to oracle?
    Thanks
    Stuart

    Hi,
    I've got the same problem, i.e. SELECT a LONG RAW column from
    joined/unioned tables truncates the column (via OraOleDB).
    Unfortunately, setting ChunkSize to 65535 does not help me,
    because data in a column are longer, then 64K (and are truncated
    to 64K). Please, have you found any solution?
    Thanks for any reply ..
    Milan

  • Result Sets with the Microsoft ODBC Driver for Oracle

    Howdy all.
    I have an Oracle database that I have migrated from MSSQL2K. My front end is mostly VB, and I have many (hundreds) DLL's that use ADO to access the database and execute stored procedures in the database. I cannot seem to get result sets from the Oracle procedures. I have tried passing a SYS_REFCURSOR as an IN OUT parameter, and I have tried returning a SYS_REFCURSOR in a function. The Microsoft ODBC Driver for Oracle does not seem to handle the ref cursors. If I use the Oracle ODBC driver, then ref cursors are handled sort of magically. Just like the result sets are in MSSQL with the SQL Server ODBC Driver.
    The question that I would like to pose to anybody willing to answer is this: Is there any way to use the Microsoft ODBC Driver for Oracle without changing the way I do the database access (using ADO connection/command/recordset objects)? I need the same DLL's to work on top of both MSSQL and Oracle.
    I know that what I want to do is possible using the Oracle ODBC driver, but this will take some major changes to some of my DB components. I am trying to stay away from this, but it looks like I am going to have to go that route - that is unless somebody wows me with a good answer to this post.
    wally

    As you are using Microsoft driver which works in XP and does not on Win 2003 you should post this on microsoft forum.

  • SetLoginTimeout behavior with the Oracle driver

    Hi,
    I noticed a number of posts on Metalink indicating setLoginTimeout() does not work with the Oracle jdbc drivers. It is documented as such in the 8.1.7 JDBC doc. But I am wondering if this is still true with the 9i drivers.
    If so are there any workarounds to generate exceptions or recover gracefully when the db machine is down or the network connectivity to it is down ??
    It seems like a fairly drastic flaw in the drivers if it is not able recover from system down type situations.
    - Manish

    I've seen you've been posting the same message in MetaLink, and, again, no answer from Oracle so far.
    It looks like we're having the same problem. In our environment, cross-network connections are being broken down by our firewall, and then the connection hangs forever when the next statement is issued. I wanted to solve this by telling out Java people to use a timeout.
    In case you have any news on this, I'd be happy to hear about it.
    Ron

  • Issue with the open ati driver

    Hello, im trying to use my ati radeon x700pro videocard with the open ati driver, but, I can't get any larger resolution than 800x600, I have tried without and with refresh rates, but both tries give the same result.
    Here's my xorg.conf:
    Section "ServerLayout"
    Identifier "Simple Layout"
    Screen 0 "aticonfig-Screen[0]" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/TTF"
    EndSection
    Section "Module"
    SubSection "extmod"
    Option "omit xfree86-dga"
    EndSubSection
    Load "dbe"
    Load "freetype"
    Load "dri"
    Load "glx"
    Load "drm"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "no"
    EndSection
    Section "InputDevice"
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto"
    Option "Device" "/dev/psaux"
    Option "ZAxisMapping" "4 5 6 7"
    Option "Emulate3Buttons"
    EndSection
    Section "Monitor"
    Identifier "Skjerm"
    # HorizSync 30.0 - 83.0
    # VertRefresh 56.0 - 76.0
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]"
    Driver "radeon"
    Option "XAANoOffscreenPixmaps" "true"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]"
    Device "aticonfig-Device[0]"
    Monitor "aticonfig-Monitor[0]"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024"
    EndSubSection
    EndSection
    Section "DRI"
    Group "video"
    Mode 0666
    EndSection
    Section "ServerFlags"
    Option "AIGLX" "on"
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Here's my xorg log:
    X Window System Version 1.3.0
    Release Date: 19 April 2007
    X Protocol Version 11, Revision 0, Release 1.3
    Build Operating System: UNKNOWN
    Current Operating System: Linux Magda 2.6.21-ARCH #1 SMP PREEMPT Thu May 31 10:41:44 CEST 2007 i686
    Build Date: 31 May 2007
    Before reporting problems, check http://wiki.x.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/Xorg.0.log", Time: Sat Jun 9 00:17:02 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "aticonfig-Screen[0]" (0)
    (**) | |-->Monitor "aticonfig-Monitor[0]"
    (**) | |-->Device "aticonfig-Device[0]"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/Type1,
    /usr/share/fonts/TTF
    (==) RgbPath set to "/usr/share/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Option "AIGLX" "on"
    (**) Extension "Composite" is enabled
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d92e0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.2
    X.Org XInput driver : 0.7
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 10de,005e card 1462,7125 rev a3 class 05,80,00 hdr 00
    (II) PCI: 00:01:0: chip 10de,0050 card 1462,7125 rev a3 class 06,01,00 hdr 80
    (II) PCI: 00:01:1: chip 10de,0052 card 1462,7125 rev a2 class 0c,05,00 hdr 80
    (II) PCI: 00:02:0: chip 10de,005a card 1462,7125 rev a2 class 0c,03,10 hdr 80
    (II) PCI: 00:02:1: chip 10de,005b card 1462,7125 rev a3 class 0c,03,20 hdr 80
    (II) PCI: 00:06:0: chip 10de,0053 card f462,7125 rev f2 class 01,01,8a hdr 00
    (II) PCI: 00:07:0: chip 10de,0054 card 1462,7125 rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:08:0: chip 10de,0055 card 1462,7125 rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
    (II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 01:07:0: chip 168c,001b card a727,6803 rev 01 class 02,00,00 hdr 00
    (II) PCI: 01:08:0: chip 1274,5880 card 1274,8001 rev 04 class 04,01,00 hdr 00
    (II) PCI: 01:09:0: chip 10b7,1700 card 10b7,0020 rev 10 class 02,00,00 hdr 00
    (II) PCI: 05:00:0: chip 1002,5e4b card 174b,0530 rev 00 class 03,00,00 hdr 80
    (II) PCI: 05:00:1: chip 1002,5e6b card 174b,0531 rev 00 class 03,80,00 hdr 00
    (II) PCI: End of PCI scan
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[b]
    [2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfdf00000 - 0xfdffffff (0x100000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xfde00000 - 0xfdefffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x00009000 - 0x000090ff (0x100) IX[b]
    [1] -1 0 0x00009400 - 0x000094ff (0x100) IX[b]
    [2] -1 0 0x00009800 - 0x000098ff (0x100) IX[b]
    [3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xfdd00000 - 0xfddfffff (0x100000) MX[b]
    (II) Bus 2 prefetchable memory range:
    [0] -1 0 0xfdc00000 - 0xfdcfffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x00008000 - 0x000080ff (0x100) IX[b]
    [1] -1 0 0x00008400 - 0x000084ff (0x100) IX[b]
    [2] -1 0 0x00008800 - 0x000088ff (0x100) IX[b]
    [3] -1 0 0x00008c00 - 0x00008cff (0x100) IX[b]
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xfdb00000 - 0xfdbfffff (0x100000) MX[b]
    (II) Bus 3 prefetchable memory range:
    [0] -1 0 0xfda00000 - 0xfdafffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 4 I/O range:
    [0] -1 0 0x00007000 - 0x000070ff (0x100) IX[b]
    [1] -1 0 0x00007400 - 0x000074ff (0x100) IX[b]
    [2] -1 0 0x00007800 - 0x000078ff (0x100) IX[b]
    [3] -1 0 0x00007c00 - 0x00007cff (0x100) IX[b]
    (II) Bus 4 non-prefetchable memory range:
    [0] -1 0 0xfd900000 - 0xfd9fffff (0x100000) MX[b]
    (II) Bus 4 prefetchable memory range:
    [0] -1 0 0xfd800000 - 0xfd8fffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
    (II) Bus 5 I/O range:
    [0] -1 0 0x00006000 - 0x000060ff (0x100) IX[b]
    [1] -1 0 0x00006400 - 0x000064ff (0x100) IX[b]
    [2] -1 0 0x00006800 - 0x000068ff (0x100) IX[b]
    [3] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b]
    (II) Bus 5 non-prefetchable memory range:
    [0] -1 0 0xfd700000 - 0xfd7fffff (0x100000) MX[b]
    (II) Bus 5 prefetchable memory range:
    [0] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b]
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:24:0), (0,0,5), 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]
    (--) PCI:*(5:0:0) ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] rev 0, Mem @ 0xd8000000/27, 0xfd7f0000/16, I/O @ 0x6c00/8
    (--) PCI: (5:0:1) ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] Secondary rev 0, Mem @ 0xfd7e0000/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 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
    [0] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [1] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [2] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [3] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [7] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [9] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [10] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [12] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [15] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [17] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [20] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [23] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [24] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges:
    [0] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [1] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [2] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [3] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [7] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [9] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [10] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [12] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [15] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [17] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [20] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [23] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [24] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [17] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [22] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [27] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [30] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [31] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (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 DPMS
    (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: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.3.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri"
    (II) Reloading /usr/lib/xorg/modules/extensions//libdri.so
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 4.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers//ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 6.6.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) ATI: ATI driver (version 6.6.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 ES1000 515E (PCI), ATI ES1000 5969 (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 9100 PRO IGP 7834,
    ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    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 9600TX 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/9700 (M10/M11) 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 T2e (M11) NV (AGP), ATI Radeon 9650,
    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),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE),
    ATI Radeon Mobility X600 (M24) 3150 (PCIE),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE),
    ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
    ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
    ATI Radeon AIW X800 VE (R420) JT (AGP),
    ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
    ATI Radeon X850 5D4C (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
    (II) Primary Device is: PCI 05:00:0
    (--) Assigning device section with no busID to primary device
    (WW) RADEON: No matching Device section for instance (BusID PCI:5:0:1) found
    (--) Chipset ATI Radeon X700 PRO (RV410) (PCIE) found
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [17] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [22] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [27] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [30] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [31] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Loading sub module "radeon"
    (II) LoadModule: "radeon"
    (II) Reloading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [19] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [20] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [21] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [22] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [23] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [24] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [25] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [26] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [27] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [28] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [29] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [30] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [31] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [32] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [33] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [34] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) RADEON(0): RADEONPreInit
    (II) RADEON(0): MMIO registers at 0xfd7f0000: size 64KB
    (II) RADEON(0): PCI bus 5 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
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (==) RADEON(0): X server will not keep DPI constant for all screen sizes
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (--) RADEON(0): Chipset: "ATI Radeon X700 PRO (RV410) (PCIE)" (ChipID = 0x5e4b)
    (--) RADEON(0): Linear framebuffer at 0xd8000000
    (II) RADEON(0): PCIE card detected
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=131072K, accessible=131072K (PCI BAR=131072K)
    (--) RADEON(0): Mapped VideoRAM: 131072 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"(II) Module already built-in
    (II) RADEON(0): I2C bus "DDC" initialized.
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): Port0: DDCType-0, DACType-0, TMDSType--1, ConnectorType-1
    (II) RADEON(0): Port1: DDCType-2, DACType-1, TMDSType-0, ConnectorType-2
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (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: 0
    (II) RADEON(0):
    (II) RADEON(0): Primary:
    Monitor -- CRT
    Connector -- VGA
    DAC Type -- Primary
    TMDS Type -- NONE
    DDC Type -- NONE
    (II) RADEON(0): Secondary:
    Monitor -- NONE
    Connector -- DVI-I
    DAC Type -- TVDAC/ExtDAC
    TMDS Type -- Internal
    DDC Type -- DVI_DDC
    (II) RADEON(0): ref_freq: 2700, min_pll: 20000, max_pll: 50000, xclk: 40000, sclk: 425.000000, mclk: 432.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=2 min=20000 max=50000; xclk=40000
    (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): aticonfig-Monitor[0]: Using default hsync range of 31.50-37.90 kHz
    (II) RADEON(0): aticonfig-Monitor[0]: Using default vrefresh range of 50.00-70.00 Hz
    (II) RADEON(0): Clock range: 20.00 to 500.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 "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 "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 "640x480" (hsync 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" (hsync out of range)
    (II) RADEON(0): Not using default mode "400x300" (hsync out of range)
    (II) RADEON(0): Not using default mode "800x600" (hsync out of range)
    (II) RADEON(0): Not using default mode "400x300" (hsync out of range)
    (II) RADEON(0): Not using default mode "800x600" (hsync out of range)
    (II) RADEON(0): Not using default mode "400x300" (hsync 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 "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 "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 "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 "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)
    (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 "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 "832x624" (hsync out of range)
    (II) RADEON(0): Not using default mode "416x312" (hsync out of range)
    (II) RADEON(0): Not using default mode "1152x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "576x384" (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)
    (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)
    (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)
    (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)
    (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)
    (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)
    (II) RADEON(0): Not using default mode "1280x720" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x360" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x720" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x360" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x720" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x360" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x720" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x360" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x800" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x800" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x800" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x800" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1360x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "680x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1360x768" (hsync out of range)
    (II) RADEON(0): Not using default mode "680x384" (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 "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 "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 "1440x900" (hsync out of range)
    (II) RADEON(0): Not using default mode "720x450" (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 "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (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)
    (II) RADEON(0): Not using default mode "2560x1600" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x800" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using mode "1280x1024" (no mode of this name)
    (--) RADEON(0): Virtual size is 800x600 (pitch 832)
    (**) RADEON(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
    (II) RADEON(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync
    (**) RADEON(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
    (II) RADEON(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync
    (**) RADEON(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 59.9 Hz
    (II) RADEON(0): Modeline "640x480" 25.18 640 656 752 800 480 490 492 525 -hsync -vsync
    (**) RADEON(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
    (II) RADEON(0): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.2.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    (!!) RADEON(0): 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? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b]
    [1] 0 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [7] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [8] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [9] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [10] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [11] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [12] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [13] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [14] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [18] 0 0 0x00006c00 - 0x00006cff (0x100) IX[b]
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [22] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [23] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [24] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [25] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [26] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [27] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [28] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [29] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [30] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [31] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [32] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [33] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [34] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [35] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [36] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [37] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    [38] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [39] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (**) RADEON(0): RADEONScreenInit d8000000 0
    (**) RADEON(0): Map: 0xd8000000, 0x08000000
    (==) RADEON(0): Write-combining range (0xd8000000,0x8000000)
    (**) RADEON(0): RADEONSave
    (**) RADEON(0): RADEONSaveMode(0x820b638)
    (**) RADEON(0): Read: 0x00080002 0x00020020 0x00000000
    (**) RADEON(0): Read: rd=2, fd=32, pd=2
    (**) RADEON(0): RADEONSaveMode returns 0x820b638
    (**) RADEON(0): RADEONInitMemoryMap() :
    (**) RADEON(0): mem_size : 0x08000000
    (**) RADEON(0): MC_FB_LOCATION : 0xdfffd800
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): RADEONModeInit()
    800x600 40.00 800 840 968 1056 600 601 605 628 (24,32) +H +V
    800x600 40.00 800 840 968 1056 600 601 605 628 (24,32) +H +V
    (**) RADEON(0): Pitch = 6815848 bytes (virtualX = 800, displayWidth = 832)
    (**) RADEON(0): dc=4000, of=32000, fd=24, pd=8
    (**) RADEON(0): RADEONInit returns 0x820bfe8
    (**) RADEON(0): RADEONRestoreMode()
    (**) RADEON(0): RADEONRestoreMode(0x820bfe8)
    (**) RADEON(0): RADEONRestoreMemMapRegisters() :
    (**) RADEON(0): MC_FB_LOCATION : 0xdfffd800
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): Map Changed ! Applying ...
    (**) RADEON(0): Map applied, resetting engine ...
    (**) RADEON(0): Updating display base addresses...
    (**) RADEON(0): Memory map updated.
    (**) RADEON(0): Programming CRTC1, offset: 0x00000000
    (**) RADEON(0): Wrote: 0x00000002 0x00030018 0x00000000 (0x0000bf00)
    (**) RADEON(0): Wrote: rd=2, fd=24, pd=3
    (**) RADEON(0): RADEONSaveScreen(0)
    (II) RADEON(0): Depth moves disabled by default
    (**) RADEON(0): Setting up initial surfaces
    (**) RADEON(0): Initializing fb layer
    (**) RADEON(0): Setting up accel memmap
    (II) RADEON(0): Memory manager initialized to (0,0) (832,8191)
    (II) RADEON(0): Reserved area from (0,600) to (832,610)
    (II) RADEON(0): Largest offscreen area available: 832 x 7581
    (**) RADEON(0): Initializing backing store
    (==) RADEON(0): Backing store disabled
    (WW) RADEON(0): Direct rendering disabled
    (**) RADEON(0): Setting up final surfaces
    (**) RADEON(0): Initializing Acceleration
    (II) RADEON(0): Render acceleration unsupported on Radeon 9500/9700 and newer.
    (II) RADEON(0): Render acceleration disabled
    (**) RADEON(0): EngineInit (32/32)
    (**) RADEON(0): Pitch for acceleration = 104
    (**) RADEON(0): EngineRestore (32/32)
    (**) RADEON(0): Option "XaaNoOffscreenPixmaps" "true"
    (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
    Setting up tile and stipple cache:
    32 128x128 slots
    28 256x256 slots
    13 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (**) RADEON(0): Initializing DPMS
    (**) Option "dpms" "true"
    (**) RADEON(0): DPMS enabled
    (**) RADEON(0): Initializing Cursor
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Using hardware cursor (scanline 610)
    (II) RADEON(0): Largest offscreen area available: 832 x 7576
    (**) RADEON(0): Initializing color map
    (**) RADEON(0): Initializing DGA
    (**) RADEON(0): Initializing Xv
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia//theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.0
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (WW) RADEON(0): Option "VendorName" is not used
    (WW) RADEON(0): Option "ModelName" is not used
    (**) RADEON(0): RADEONScreenInit finished
    (==) RandR enabled
    (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 XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (**) Option "Protocol" "Auto"
    (**) Mouse1: Device: "/dev/psaux"
    (**) Mouse1: Protocol: "Auto"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons"
    (**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse1: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard1: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard1: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard1: XkbRules: "xorg"
    (**) Option "XkbModel" "pc104"
    (**) Keyboard1: XkbModel: "pc104"
    (**) Option "XkbLayout" "no"
    (**) Keyboard1: XkbLayout: "no"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard1: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    (--) Mouse1: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse1: ps2EnableDataReporting: succeeded
    (**) RADEON(0): RADEONSaveScreen(2)
    Anyone got any clue?
    Last edited by Roberth (2007-06-08 22:26:31)

    Okay, I can't get direct rendering now, here the xorg log:
    X Window System Version 1.3.0
    Release Date: 19 April 2007
    X Protocol Version 11, Revision 0, Release 1.3
    Build Operating System: UNKNOWN
    Current Operating System: Linux Magda 2.6.21-ARCH #1 SMP PREEMPT Thu May 31 10:41:44 CEST 2007 i686
    Build Date: 31 May 2007
    Before reporting problems, check http://wiki.x.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/Xorg.0.log", Time: Sat Jun 9 01:17:03 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "aticonfig-Screen[0]" (0)
    (**) | |-->Monitor "aticonfig-Monitor[0]"
    (**) | |-->Device "aticonfig-Device[0]"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/Type1,
    /usr/share/fonts/TTF
    (==) RgbPath set to "/usr/share/X11/rgb"
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Option "AIGLX" "off"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d92e0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.2
    X.Org XInput driver : 0.7
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 10de,005e card 1462,7125 rev a3 class 05,80,00 hdr 00
    (II) PCI: 00:01:0: chip 10de,0050 card 1462,7125 rev a3 class 06,01,00 hdr 80
    (II) PCI: 00:01:1: chip 10de,0052 card 1462,7125 rev a2 class 0c,05,00 hdr 80
    (II) PCI: 00:02:0: chip 10de,005a card 1462,7125 rev a2 class 0c,03,10 hdr 80
    (II) PCI: 00:02:1: chip 10de,005b card 1462,7125 rev a3 class 0c,03,20 hdr 80
    (II) PCI: 00:06:0: chip 10de,0053 card f462,7125 rev f2 class 01,01,8a hdr 00
    (II) PCI: 00:07:0: chip 10de,0054 card 1462,7125 rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:08:0: chip 10de,0055 card 1462,7125 rev f3 class 01,01,85 hdr 00
    (II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
    (II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
    (II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 01:07:0: chip 168c,001b card a727,6803 rev 01 class 02,00,00 hdr 00
    (II) PCI: 01:08:0: chip 1274,5880 card 1274,8001 rev 04 class 04,01,00 hdr 00
    (II) PCI: 01:09:0: chip 10b7,1700 card 10b7,0020 rev 10 class 02,00,00 hdr 00
    (II) PCI: 05:00:0: chip 1002,5e4b card 174b,0530 rev 00 class 03,00,00 hdr 80
    (II) PCI: 05:00:1: chip 1002,5e6b card 174b,0531 rev 00 class 03,80,00 hdr 00
    (II) PCI: End of PCI scan
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000a000 - 0x0000a0ff (0x100) IX[b]
    [1] -1 0 0x0000a400 - 0x0000a4ff (0x100) IX[b]
    [2] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [3] -1 0 0x0000ac00 - 0x0000acff (0x100) IX[b]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfdf00000 - 0xfdffffff (0x100000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xfde00000 - 0xfdefffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x00009000 - 0x000090ff (0x100) IX[b]
    [1] -1 0 0x00009400 - 0x000094ff (0x100) IX[b]
    [2] -1 0 0x00009800 - 0x000098ff (0x100) IX[b]
    [3] -1 0 0x00009c00 - 0x00009cff (0x100) IX[b]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xfdd00000 - 0xfddfffff (0x100000) MX[b]
    (II) Bus 2 prefetchable memory range:
    [0] -1 0 0xfdc00000 - 0xfdcfffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x00008000 - 0x000080ff (0x100) IX[b]
    [1] -1 0 0x00008400 - 0x000084ff (0x100) IX[b]
    [2] -1 0 0x00008800 - 0x000088ff (0x100) IX[b]
    [3] -1 0 0x00008c00 - 0x00008cff (0x100) IX[b]
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xfdb00000 - 0xfdbfffff (0x100000) MX[b]
    (II) Bus 3 prefetchable memory range:
    [0] -1 0 0xfda00000 - 0xfdafffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 4 I/O range:
    [0] -1 0 0x00007000 - 0x000070ff (0x100) IX[b]
    [1] -1 0 0x00007400 - 0x000074ff (0x100) IX[b]
    [2] -1 0 0x00007800 - 0x000078ff (0x100) IX[b]
    [3] -1 0 0x00007c00 - 0x00007cff (0x100) IX[b]
    (II) Bus 4 non-prefetchable memory range:
    [0] -1 0 0xfd900000 - 0xfd9fffff (0x100000) MX[b]
    (II) Bus 4 prefetchable memory range:
    [0] -1 0 0xfd800000 - 0xfd8fffff (0x100000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
    (II) Bus 5 I/O range:
    [0] -1 0 0x00006000 - 0x000060ff (0x100) IX[b]
    [1] -1 0 0x00006400 - 0x000064ff (0x100) IX[b]
    [2] -1 0 0x00006800 - 0x000068ff (0x100) IX[b]
    [3] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b]
    (II) Bus 5 non-prefetchable memory range:
    [0] -1 0 0xfd700000 - 0xfd7fffff (0x100000) MX[b]
    (II) Bus 5 prefetchable memory range:
    [0] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b]
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:24:0), (0,0,5), 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]
    (--) PCI:*(5:0:0) ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] rev 0, Mem @ 0xd8000000/27, 0xfd7f0000/16, I/O @ 0x6c00/8
    (--) PCI: (5:0:1) ATI Technologies Inc RV410 [Radeon X700 Pro (PCIE)] Secondary rev 0, Mem @ 0xfd7e0000/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 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) Active PCI resource ranges:
    [0] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [1] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [2] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [3] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [7] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [9] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [10] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [12] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [15] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [17] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [20] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [23] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [24] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges:
    [0] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [1] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [2] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [3] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [4] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [5] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [6] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [7] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [8] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [9] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [10] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [11] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [12] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [13] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [14] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [15] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [16] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [17] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [18] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [19] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [20] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [21] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [22] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [23] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [24] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [17] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [22] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [27] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [30] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [31] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (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 DPMS
    (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: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.3.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (**) AIGLX disabled
    (II) Loading extension GLX
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 4.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers//ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 6.6.3
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 1.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.2.0, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.7
    (II) ATI: ATI driver (version 6.6.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 ES1000 515E (PCI), ATI ES1000 5969 (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 9100 PRO IGP 7834,
    ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    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 9600TX 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/9700 (M10/M11) 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 T2e (M11) NV (AGP), ATI Radeon 9650,
    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),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE),
    ATI Radeon Mobility X600 (M24) 3150 (PCIE),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE),
    ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
    ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
    ATI Radeon AIW X800 VE (R420) JT (AGP),
    ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
    ATI Radeon X850 5D4C (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
    (II) Primary Device is: PCI 05:00:0
    (--) Assigning device section with no busID to primary device
    (WW) RADEON: No matching Device section for instance (BusID PCI:5:0:1) found
    (--) Chipset ATI Radeon X700 PRO (RV410) (PCIE) found
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [16] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [17] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [18] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [19] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [20] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [21] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [22] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [23] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [24] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [25] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [26] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [27] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [28] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [29] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [30] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [31] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    (II) Loading sub module "radeon"
    (II) LoadModule: "radeon"
    (II) Reloading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [5] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [6] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [7] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [8] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [9] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [10] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [11] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [12] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [19] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [20] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [21] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [22] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [23] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [24] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [25] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [26] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [27] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [28] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [29] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [30] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [31] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [32] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [33] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [34] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (**) RADEON(0): RADEONPreInit
    (II) RADEON(0): MMIO registers at 0xfd7f0000: size 64KB
    (II) RADEON(0): PCI bus 5 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
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (==) RADEON(0): X server will not keep DPI constant for all screen sizes
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (--) RADEON(0): Chipset: "ATI Radeon X700 PRO (RV410) (PCIE)" (ChipID = 0x5e4b)
    (--) RADEON(0): Linear framebuffer at 0xd8000000
    (II) RADEON(0): PCIE card detected
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 6, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:05:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 6, (OK)
    drmOpenByBusid: drmOpenMinor returns 6
    drmOpenByBusid: drmGetBusid reports
    drmOpenDevice: node name is /dev/dri/card1
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card2
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card3
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card4
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card5
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card6
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card7
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card8
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card9
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card10
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card11
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card12
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card13
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card14
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 6, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 6, (OK)
    drmOpenDevice: node name is /dev/dri/card1
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card2
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card3
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card4
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card5
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card6
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card7
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card8
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card9
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card10
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card11
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card12
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card13
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card14
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
    [dri] Disabling DRI.
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=131072K, accessible=131072K (PCI BAR=131072K)
    (--) RADEON(0): Mapped VideoRAM: 131072 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"(II) Module already built-in
    (II) RADEON(0): I2C bus "DDC" initialized.
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): Port0: DDCType-0, DACType-0, TMDSType--1, ConnectorType-1
    (II) RADEON(0): Port1: DDCType-2, DACType-1, TMDSType-0, ConnectorType-2
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (II) RADEON(0): I2C device "DDC:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "DDC:ddc2" removed.
    (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: 0
    (II) RADEON(0):
    (II) RADEON(0): Primary:
    Monitor -- CRT
    Connector -- VGA
    DAC Type -- Primary
    TMDS Type -- NONE
    DDC Type -- NONE
    (II) RADEON(0): Secondary:
    Monitor -- NONE
    Connector -- DVI-I
    DAC Type -- TVDAC/ExtDAC
    TMDS Type -- Internal
    DDC Type -- DVI_DDC
    (II) RADEON(0): ref_freq: 2700, min_pll: 20000, max_pll: 50000, xclk: 40000, sclk: 425.000000, mclk: 432.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=2 min=20000 max=50000; xclk=40000
    (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): aticonfig-Monitor[0]: Using hsync range of 30.00-83.00 kHz
    (II) RADEON(0): aticonfig-Monitor[0]: Using vrefresh range of 56.00-76.00 Hz
    (II) RADEON(0): Clock range: 20.00 to 500.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" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (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 "640x512" (bad mode clock/interlace/doublescan)
    (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 "800x600" (bad mode clock/interlace/doublescan)
    (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 "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 "1152x768" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1152x864" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1152x864" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "576x432" (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)
    (II) RADEON(0): Not using default mode "1280x720" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "640x360" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x800" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1280x768" (vrefresh out of range)
    (II) RADEON(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1360x768" (monitor doesn't support reduced blanking)
    (II) RADEON(0): Not using default mode "680x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "680x384" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (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 "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 "720x450" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (monitor doesn't support reduced blanking)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1680x1050" (hsync out of range)
    (II) RADEON(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (monitor doesn't support reduced blanking)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1080" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (monitor doesn't support reduced blanking)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1920x1200" (hsync out of range)
    (II) RADEON(0): Not using default mode "960x600" (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)
    (II) RADEON(0): Not using default mode "2560x1600" (hsync out of range)
    (II) RADEON(0): Not using default mode "1280x800" (bad mode clock/interlace/doublescan)
    (II) RADEON(0): Not using default mode "1792x1344" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1920x1200" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1920x1080" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1920x1080" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1600x1200" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1600x1200" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1680x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1680x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1680x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1400x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1400x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1400x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1400x1050" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1440x900" (width too large for virtual size)
    (II) RADEON(0): Not using default mode "1360x768" (width too large for virtual size)
    (--) RADEON(0): Virtual size is 1280x1024 (pitch 1280)
    (**) RADEON(0): *Default mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    (**) RADEON(0): Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    (**) RADEON(0): Default mode "1280x960": 108.0 MHz, 60.0 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x960" 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    (**) RADEON(0): Default mode "1280x800": 107.2 MHz, 62.6 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1280x800" 107.21 1280 1360 1496 1712 800 801 804 835 -hsync +vsync
    (**) RADEON(0): Default mode "1280x800": 98.9 MHz, 58.3 kHz, 70.0 Hz
    (II) RADEON(0): Modeline "1280x800" 98.89 1280 1352 1488 1696 800 801 804 833 -hsync +vsync
    (**) RADEON(0): Default mode "1280x800": 83.5 MHz, 49.7 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x800" 83.46 1280 1344 1480 1680 800 801 804 828 -hsync +vsync
    (**) RADEON(0): Default mode "1152x864": 108.0 MHz, 67.5 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    (**) RADEON(0): Default mode "1152x864": 105.0 MHz, 67.6 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1152x864" 104.99 1152 1224 1352 1552 864 865 868 902 -hsync +vsync
    (**) RADEON(0): Default mode "1152x864": 96.8 MHz, 63.0 kHz, 70.0 Hz
    (II) RADEON(0): Modeline "1152x864" 96.77 1152 1224 1344 1536 864 865 868 900 -hsync +vsync
    (**) RADEON(0): Default mode "1152x864": 81.6 MHz, 53.7 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync
    (**) RADEON(0): Default mode "1280x768": 103.0 MHz, 60.2 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1280x768" 102.98 1280 1360 1496 1712 768 769 772 802 -hsync +vsync
    (**) RADEON(0): Default mode "1280x768": 95.0 MHz, 56.0 kHz, 70.0 Hz
    (II) RADEON(0): Modeline "1280x768" 94.98 1280 1352 1488 1696 768 769 772 800 -hsync +vsync
    (**) RADEON(0): Default mode "1280x768": 80.1 MHz, 47.7 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x768" 80.14 1280 1344 1480 1680 768 769 772 795 -hsync +vsync
    (**) RADEON(0): Default mode "1280x720": 95.7 MHz, 56.4 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1280x720" 95.65 1280 1352 1488 1696 720 721 724 752 -hsync +vsync
    (**) RADEON(0): Default mode "1280x720": 89.0 MHz, 52.5 kHz, 70.0 Hz
    (II) RADEON(0): Modeline "1280x720" 89.04 1280 1352 1488 1696 720 721 724 750 -hsync +vsync
    (**) RADEON(0): Default mode "1280x720": 74.5 MHz, 44.8 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1280x720" 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync
    (**) RADEON(0): Default mode "1024x768": 78.8 MHz, 60.0 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    (**) RADEON(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
    (II) RADEON(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    (**) RADEON(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
    (II) RADEON(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    (**) RADEON(0): Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
    (II) RADEON(0): Modeline "832x624" 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync
    (**) RADEON(0): Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync
    (**) RADEON(0): Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
    (II) RADEON(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync
    (**) RADEON(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
    (II) RADEON(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync
    (**) RADEON(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
    (II) RADEON(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync
    (**) RADEON(0): Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
    (II) RADEON(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 -hsync -vsync
    (**) RADEON(0): Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
    (II) RADEON(0): Modeline "640x480" 31.50 640 664 704 832 480 489 492 520 -hsync -vsync
    (**) RADEON(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 59.9 Hz
    (II) RADEON(0): Modeline "640x480" 25.18 640 656 752 800 480 490 492 525 -hsync -vsync
    (**) RADEON(0): Default mode "640x360": 47.8 MHz, 56.4 kHz, 75.0 Hz (D)
    (II) RADEON(0): Modeline "640x360" 47.83 640 676 744 848 360 360 362 376 doublescan -hsync +vsync
    (**) RADEON(0): Default mode "640x360": 44.5 MHz, 52.5 kHz, 70.0 Hz (D)
    (II) RADEON(0): Modeline "640x360" 44.52 640 676 744 848 360 360 362 375 doublescan -hsync +vsync
    (**) RADEON(0): Default mode "640x360": 37.2 MHz, 44.8 kHz, 60.0 Hz (D)
    (II) RADEON(0): Modeline "640x360" 37.24 640 668 736 832 360 360 362 373 doublescan -hsync +vsync
    (**) RADEON(0): Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
    (II) RADEON(0): Modeline "416x312" 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync
    (**) RADEON(0): Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
    (II) RADEON(0): Modeline "400x300" 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync
    (**) RADEON(0): Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
    (II) RADEON(0): Modeline "400x300" 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync
    (**) RADEON(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
    (II) RADEON(0): Modeline "400x300" 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.2.0
    ABI class: X.Org Video Driver, version 1.2
    (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    (!!) RADEON(0): 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? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b]
    [1] 0 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xfdffc000 - 0xfdffffff (0x4000) MX[b]
    [7] -1 0 0xfdfe0000 - 0xfdfeffff (0x10000) MX[b]
    [8] -1 0 0xfe02a000 - 0xfe02afff (0x1000) MX[b]
    [9] -1 0 0xfe02b000 - 0xfe02bfff (0x1000) MX[b]
    [10] -1 0 0xfeb00000 - 0xfeb000ff (0x100) MX[b]
    [11] -1 0 0xfe02f000 - 0xfe02ffff (0x1000) MX[b]
    [12] -1 0 0xfd7f0000 - 0xfd7fffff (0x10000) MX[b](B)
    [13] -1 0 0xd8000000 - 0xdfffffff (0x8000000) MX[b](B)
    [14] -1 0 0xfd7e0000 - 0xfd7effff (0x10000) MX[b](B)
    [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
    [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
    [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
    [18] 0 0 0x00006c00 - 0x00006cff (0x100) IX[b]
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[b]
    [22] -1 0 0x0000ac00 - 0x0000ac3f (0x40) IX[b]
    [23] -1 0 0x0000b800 - 0x0000b80f (0x10) IX[b]
    [24] -1 0 0x00000b60 - 0x00000b63 (0x4) IX[b]
    [25] -1 0 0x00000960 - 0x00000967 (0x8) IX[b]
    [26] -1 0 0x00000be0 - 0x00000be3 (0x4) IX[b]
    [27] -1 0 0x000009e0 - 0x000009e7 (0x8) IX[b]
    [28] -1 0 0x0000cc00 - 0x0000cc0f (0x10) IX[b]
    [29] -1 0 0x00000b70 - 0x00000b73 (0x4) IX[b]
    [30] -1 0 0x00000970 - 0x00000977 (0x8) IX[b]
    [31] -1 0 0x00000bf0 - 0x00000bf3 (0x4) IX[b]
    [32] -1 0 0x000009f0 - 0x000009f7 (0x8) IX[b]
    [33] -1 0 0x0000e000 - 0x0000e00f (0x10) IX[b]
    [34] -1 0 0x00004c40 - 0x00004c7f (0x40) IX[b]
    [35] -1 0 0x00004c00 - 0x00004c3f (0x40) IX[b]
    [36] -1 0 0x0000fc00 - 0x0000fc1f (0x20) IX[b]
    [37] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b](B)
    [38] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [39] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (**) RADEON(0): RADEONScreenInit d8000000 0
    (**) RADEON(0): Map: 0xd8000000, 0x08000000
    (==) RADEON(0): Write-combining range (0xd8000000,0x8000000)
    (**) RADEON(0): RADEONSave
    (**) RADEON(0): RADEONSaveMode(0x820b880)
    (**) RADEON(0): Read: 0x00080002 0x00020020 0x00000000
    (**) RADEON(0): Read: rd=2, fd=32, pd=2
    (**) RADEON(0): RADEONSaveMode returns 0x820b880
    (**) RADEON(0): RADEONInitMemoryMap() :
    (**) RADEON(0): mem_size : 0x08000000
    (**) RADEON(0): MC_FB_LOCATION : 0xdfffd800
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): RADEONModeInit()
    1280x1024 135.00 1280 1296 1440 1688 1024 1025 1028 1066 (24,32) +H +V
    1280x1024 135.00 1280 1296 1440 1688 1024 1025 1028 1066 (24,32) +H +V
    (**) RADEON(0): Pitch = 10485920 bytes (virtualX = 1280, displayWidth = 1280)
    (**) RADEON(0): dc=13500, of=27000, fd=20, pd=2
    (**) RADEON(0): RADEONInit returns 0x820c230
    (**) RADEON(0): RADEONRestoreMode()
    (**) RADEON(0): RADEONRestoreMode(0x820c230)
    (**) RADEON(0): RADEONRestoreMemMapRegisters() :
    (**) RADEON(0): MC_FB_LOCATION : 0xdfffd800
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): Map Changed ! Applying ...
    (**) RADEON(0): Map applied, resetting engine ...
    (**) RADEON(0): Updating display base addresses...
    (**) RADEON(0): Memory map updated.
    (**) RADEON(0): Programming CRTC1, offset: 0x00000000
    (**) RADEON(0): Wrote: 0x00000002 0x00010014 0x00000000 (0x0000bf00)
    (**) RADEON(0): Wrote: rd=2, fd=20, pd=1
    (**) RADEON(0): RADEONSaveScreen(0)
    (II) RADEON(0): Depth moves disabled by default
    (**) RADEON(0): Setting up initial surfaces
    (**) RADEON(0): Initializing fb layer
    (**) RADEON(0): Setting up accel memmap
    (II) RADEON(0): Memory manager initialized to (0,0) (1280,8191)
    (II) RADEON(0): Reserved area from (0,1024) to (1280,1026)
    (II) RADEON(0): Largest offscreen area available: 1280 x 7165
    (**) RADEON(0): Initializing backing store
    (==) RADEON(0): Backing store disabled
    (WW) RADEON(0): Direct rendering disabled
    (**) RADEON(0): Setting up final surfaces
    (**) RADEON(0): Initializing Acceleration
    (II) RADEON(0): Render acceleration unsupported on Radeon 9500/9700 and newer.
    (II) RADEON(0): Render acceleration disabled
    (**) RADEON(0): EngineInit (32/32)
    (**) RADEON(0): Pitch for acceleration = 160
    (**) RADEON(0): EngineRestore (32/32)
    (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): Initializing DPMS
    (**) Option "dpms" "true"
    (**) RADEON(0): DPMS enabled
    (**) RADEON(0): Initializing Cursor
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Using hardware cursor (scanline 1026)
    (II) RADEON(0): Largest offscreen area available: 1280 x 7161
    (**) RADEON(0): Initializing color map
    (**) RADEON(0): Initializing DGA
    (**) RADEON(0): Initializing Xv
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia//theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.0
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (WW) RADEON(0): Option "VendorName" is not used
    (WW) RADEON(0): Option "ModelName" is not used
    (**) RADEON(0): RADEONScreenInit finished
    (==) RandR enabled
    (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 XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Loading local sub module "GLcore"
    (II) LoadModule: "GLcore"
    (II) Loading /usr/lib/xorg/modules/extensions//libGLcore.so
    (II) Module GLcore: vendor="X.Org Foundation"
    compiled for 1.3.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) GLX: Initialized MESA-PROXY GL provider for screen 0
    (**) Option "Protocol" "Auto"
    (**) Mouse1: Device: "/dev/psaux"
    (**) Mouse1: Protocol: "Auto"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/psaux"
    (**) Option "Emulate3Buttons"
    (**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse1: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard1: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard1: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard1: XkbRules: "xorg"
    (**) Option "XkbModel" "pc104"
    (**) Keyboard1: XkbModel: "pc104"
    (**) Option "XkbLayout" "no"
    (**) Keyboard1: XkbLayout: "no"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard1: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    (--) Mouse1: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse1: ps2EnableDataReporting: succeeded
    (**) RADEON(0): RADEONSaveScreen(2)
    (**) RADEON(0): RADEONSwitchMode() !n(**) RADEON(0): RADEONModeInit()
    1280x1024 108.00 1280 1328 1440 1688 1024 1025 1028 1066 (24,32) +H +V
    1280x1024 108.00 1280 1328 1440 1688 1024 1025 1028 1066 (24,32) +H +V
    (**) RADEON(0): Pitch = 10485920 bytes (virtualX = 1280, displayWidth = 1280)
    (**) RADEON(0): dc=10800, of=21600, fd=16, pd=2
    (**) RADEON(0): RADEONInit returns 0x820c230
    (**) RADEON(0): RADEONRestoreMode()
    (**) RADEON(0): RADEONRestoreMode(0x820c230)
    (**) RADEON(0): RADEONRestoreMemMapRegisters() :
    (**) RADEON(0): MC_FB_LOCATION : 0xdfffd800
    (**) RADEON(0): MC_AGP_LOCATION : 0xffffffc0
    (**) RADEON(0): Updating display base addresses...
    (**) RADEON(0): Memory map updated.
    (**) RADEON(0): Programming CRTC1, offset: 0x00000000
    (**) RADEON(0): Wrote: 0x00000002 0x00010010 0x00000000 (0x0000bf00)
    (**) RADEON(0): Wrote: rd=2, fd=16, pd=1
    (**) RADEON(0): EngineRestore (32/32)

  • Delete statement that uses a sub-select with the statement in the cursor

    Hi all,
    How to write write a delete statement that uses a sub-select with the statement in the cursor?
    CURSOR excluded_dates IS         
           SELECT TO_TIMESTAMP(report_parameter_value, in_date_format_mask)
          INTO my_current_date_time
          FROM report_parameters
         WHERE report_parameters.report_parameter_id    = in_report_parameter_id
           AND report_parameters.report_parameter_group = 'DATE_TIME'
           AND report_parameters.report_parameter_name  = 'EXCLUDED_DATE';
    OPEN excluded_dates;
      LOOP
        FETCH excluded_dates INTO my_excluded_date;
        EXIT WHEN excluded_dates%NOTFOUND;
        DELETE FROM edr_rpt_tmp_inclusion_table
        WHERE TO_CHAR(date_time, 'mm/dd/yyyy') = TO_CHAR(my_excluded_date, 'mm/dd/yyyy');
      END LOOP;
      CLOSE excluded_dates;Thanks

    Hi,
    In such case I think is better to create a view an perform the delete using it. Example (using HR schema):
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL> create or replace view v_employees as select * from employees where first_name like 'J%';
    View created
    SQL> select * from v_employees;
    EMPLOYEE_ID FIRST_NAME           LAST_NAME                 EMAIL                     PHONE_NUMBER         HIRE_DATE   JOB_ID         SALARY COMMISSION_PCT MANAGER_ID DEPARTMENT_ID
            110 John                 Chen                      JCHEN                     515.124.4269         28/09/1997  FI_ACCOUNT    8200,00                       108           100
            112 Jose Manuel          Urman                     JMURMAN                   515.124.4469         07/03/1998  FI_ACCOUNT    7800,00                       108           100
            125 Julia                Nayer                     JNAYER                    650.124.1214         16/07/1997  ST_CLERK      3200,00                       120            50
            127 James                Landry                    JLANDRY                   650.124.1334         14/01/1999  ST_CLERK      2400,00                       120            50
            131 James                Marlow                    JAMRLOW                   650.124.7234         16/02/1997  ST_CLERK      2500,00                       121            50
            133 Jason                Mallin                    JMALLIN                   650.127.1934         14/06/1996  ST_CLERK      3300,00                       122            50
            139 John                 Seo                       JSEO                      650.121.2019         12/02/1998  ST_CLERK      2700,00                       123            50
            140 Joshua               Patel                     JPATEL                    650.121.1834         06/04/1998  ST_CLERK      2500,00                       123            50
            145 John                 Russell                   JRUSSEL                   011.44.1344.429268   01/10/1996  SA_MAN       14000,00           0,40        100            80
            156 Janette              King                      JKING                     011.44.1345.429268   30/01/1996  SA_REP       10000,00           0,35        146            80
            176 Jonathon             Taylor                    JTAYLOR                   011.44.1644.429265   24/03/1998  SA_REP        8600,00           0,20        149            80
            177 Jack                 Livingston                JLIVINGS                  011.44.1644.429264   23/04/1998  SA_REP        8400,00           0,20        149            80
            181 Jean                 Fleaur                    JFLEAUR                   650.507.9877         23/02/1998  SH_CLERK      3100,00                       120            50
            186 Julia                Dellinger                 JDELLING                  650.509.3876         24/06/1998  SH_CLERK      3400,00                       121            50
            189 Jennifer             Dilly                     JDILLY                    650.505.2876         13/08/1997  SH_CLERK      3600,00                       122            50
            200 Jennifer             Whalen                    JWHALEN                   515.123.4444         17/09/1987  AD_ASST       4400,00                       101            10
    16 rows selected
    SQL> delete from v_employees where hire_date >= to_date('01/06/1998', 'dd/mm/yyyy');
    2 rows deleted
    SQL> regards,

  • OCI mode of communication with the oracle server

    I would like to know the mechanism used by OCI dll to communicate with the oracle database server. I found that the oracle jdbc thin driver uses java sockets to connect to oracle.
    Any idea about the OCI driver?

    It uses whatever mechanism is specified in the TNSNAMES.ORA on the client, most commonly this is a TCP/IP connection to port 1521 on the server.

  • How to set the oracle oci8 driver?

    hello all:
    I've set up the oracle thin driver and it works. but when I change to
    oci8.it don't work
    below is config and errors:
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="ocipool"
    Properties="user=yanji;password=yanji"
    Targets="myserver" URL="jdbc:oracle:oci8:@pg01"/>
    Could not load 'oracle.jdbc.driver.OracleDriver
    If this is a type-4 JDBC driver, it could occur if the JDBC
    driver is not in the system CLASSPATH.
    If this is a type-2 JDBC driver, it may also indicate that
    the Driver native layers(DBMS client lib or driver DLL)
    have not been installed properly on your system
    or in your PATH environment variable.
    This is most likely caused by one of the following:
    1. The native layer SO, SL, or DLL could not be found.
    2. The file permissions on the native layer SO, SL, or DLL
    have not been set properly.
    3. The native layer SO, SL, or DLL exists, but is either
    invalid or corrupted.
    For more information, read the installation documentation
    for your JDBC Driver, available from:
    http://e-docs.bea.com
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection
    ectionEnvFactory.java:208)
    at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource
    ectionEnvFactory.java:131)
    at weblogic.common.internal.ResourceAllocator.makeResources(Resource
    ator.java:698)
    at weblogic.common.internal.ResourceAllocator.<init>(ResourceAllocat
    va:282)
    best regards

    Hello, Jenny I am glad you found your resolution. I too am having problems isung
    the oracle 0CI8 driver. My connection pool is creating fine, but my server is
    crashing with JVM errors.
    Here are my configurations.
    DBase=Oracle 8.1.7,OS=Win2000, running 6.1 with Portal 4.0
    pool config =
    <JDBCConnectionPool CapacityIncrement="0"
    DriverName="oracle.jdbc.driver.OracleDriver" InitialCapacity="5"
    MaxCapacity="5" Name="ccConPool"
    Properties="jdbc.url=jdbc:oracle:oci8:@servername:1521:orcl;user=XXXXX;password=XXXXXX;dll=ocijdbc8;server=orcl;protocol=oci8;dll=ocijdbc8;protocol=oci8"
    RefreshMinutes="0" Targets="portalServer"
    TestTableName="WIP_TABLE" URL="jdbc:oracle:oci8:@servername"/>
    My classpath sets my classes12.zip file first. My path sets %WEBLOGIC_HOME%\bin\oci817_8
    and %WLCS_ORACLE_HOME%\bin.
    Am I setting the right dll and protocol in my .dll? Where can I find documentation
    on these properties definitions?
    "jenny" <[email protected]> wrote:
    hello all:
    I've got the answer. those all because weblogic.jar. this jar include
    the
    class "oracle.jdbc.driver.OracleDriver".
    although I put the classes12.zip into the CLASSPATH.but the weblogic.jar
    in
    front of classes12.zip.so classloader
    load the class from weblogic.jar. so I can use thin driver(weblogic
    implements this function with class,but not for oci8 )
    ..this is really a big pitfall !
    put the classes12.zip in front of weblogic.jar .all perfect!
    "jenny" <[email protected]> wrote in message
    news:[email protected]...
    hello all:
    below is some chapters of my config.xml and startWeblogic.cmd
    the oci8 :
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="ocipool" Password="{3DES}J3XuQd6cvvw="
    Properties="user=yanji;password=yanji;dll=ocijdbc8;protocol=oci8"
    Targets="myserver" TestTableName="test"
    URL="jdbc:oracle:oci8:@pg01"/>
    the thin :
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="citcpool" Password="{3DES}J3XuQd6cvvw="
    Properties="user=yanji;password=yanji"
    SupportsLocalTransaction="true" Targets="myserver"
    URL="jdbc:oracle:thin:@sune250:1521:pg01"/>
    :runWebLogic
    echo on
    set ORACLE_HOME=e:\oracle
    set PATH=./bin;%ORACLE_HOME%\bin;%ORACLE_HOME%\lib;%PATH%
    set
    CLASSPATH=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;.\lib\dom.jar;.\lib\xml
    4j.jar;.\lib\jecf.jar;%ORACLE_HOME%\jdbc\lib\classes12.zip
    echo off
    the thin driver is ok,but the oci driver can not work!
    if I've set the wrong CLASSPATH or PATH , the thin driver and oci8driver
    must have not worked. I confused!
    "Sree Bodapati" <[email protected]> wrote in message
    news:[email protected]...
    "Sree Bodapati" <[email protected]> wrote in message
    news:[email protected]...
    Its not CLASS_PATH it should be CLASSPATH.
    when you say oracle\bin and oracle\lib , on what driver is the oracle
    folder?I meant to say 'on what drive' not 'on what driver'
    you have to specify the full path.
    post your startup script here.
    sree
    "jenny" <[email protected]> wrote in message
    news:[email protected]...
    hello all:
    I've set the ORACLE_HOME,and CLASS_PATH,but nothing changed. I will
    go
    to
    crazy!!!
    when startup the weblogic,I've seen the oracle\bin and oracle\libin th
    "path" and classes12.zip in the CLASS_PATH.but the errors stillappears!!
    "Sree Bodapati" <[email protected]> wrote in message
    news:[email protected]...
    1. Dont copy this file oci8jdbc.dll, to bin folder. Make sure
    you
    place
    <oracle_home>\lib in your PATH before starting the server. Make
    sure
    your
    ORACLE_HOME environment varable is set to <oracle_home> folder.
    eg. set ORACLE_HOME=c:\ora816 before starting the server.
    so you must have done something like
    set ORACLE_HOME=c:\ora816
    set PATH=%ORACLE_HOME%\bin;%ORACLE_HOME%\lib;%PATH%
    2. double check if you set your CLASSPATH something like this,
    CLASSPATH=%ORACLE_HOME%\jdbc\lib\classes12.zip;%CLASSPATH%
    in the server startup script just before starting the server.
    3. start the server the connection pool should work.
    hth
    sree
    "jenny" <[email protected]> wrote in message
    news:[email protected]...
    hello All:
    I've edited the StartWeblogic.cmd, set the classes.zip into CLASSPATH,and
    copied the oci8jdbc.dll to the bea\wlserver6.1\bin. errors stillappears!
    my weblogic version is 6.1 and oracle is 8.1.6 .
    why the thin driver is ok but the oci driver can not work?
    I logined in the oracle website and look for the jdbc.but I find
    that
    jdbc
    all provide for jdk1.2 or jdk1.1. because the weblogic6.1 based
    jdk1.3.
    I
    think i can not use those drivers.
    I think my oracle driver is ok,because i installed the jboss and
    bas4.5
    in
    my computer. they all can use oci8 driver properly.and they all
    based
    jdk1.3.
    by the way. I 've tryed added the oracle\bin path inStartWeblogic.cmd,
    nothing changed !
    again below is my config : I want to know whether my config right?
    (the property DLL and Protocal auto added by the weblogic)
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="ocipool"
    Properties="user=yanji;password=yanji;dll=ocijdbc8;protocol=oci8"
    Targets="myserver" URL="jdbc:oracle:oci8:@pg01"/>
    best regards
    ----- Original Message -----
    From: "Mitesh Patel" <[email protected]>
    Newsgroups: weblogic.developer.interest.jdbc
    Sent: Thursday, December 13, 2001 4:00 AM
    Subject: Re: how to set the oracle oci8 driver?
    To use oracle oci8 driver:
    You should have classes12.zip in weblogic classpath.
    You should have ocijdbc8.dll in your weblogic path..
    You can download ocijdbc8.dll from oracle website.
    Mitesh Patel
    jenny wrote:
    hello all:
    I've set up the oracle thin driver and it works. but when I
    change
    to
    oci8.it don't work
    below is config and errors:
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="ocipool"
    Properties="user=yanji;password=yanji"
    Targets="myserver" URL="jdbc:oracle:oci8:@pg01"/>
    Could not load 'oracle.jdbc.driver.OracleDriver
    If this is a type-4 JDBC driver, it could occur if the JDBC
    driver is not in the system CLASSPATH.
    If this is a type-2 JDBC driver, it may also indicate that
    the Driver native layers(DBMS client lib or driver DLL)
    have not been installed properly on your system
    or in your PATH environment variable.
    This is most likely caused by one of the following:
    1. The native layer SO, SL, or DLL could not be found.
    2. The file permissions on the native layer SO, SL, or DLL
    have not been set properly.
    3. The native layer SO, SL, or DLL exists, but is either
    invalid or corrupted.
    For more information, read the installation documentation
    for your JDBC Driver, available from:
    http://e-docs.bea.com
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection
    ectionEnvFactory.java:208)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource
    ectionEnvFactory.java:131)
    atweblogic.common.internal.ResourceAllocator.makeResources(Resource
    ator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocat
    va:282)
    best regards
    "jenny" <[email protected]> wrote in message
    news:[email protected]...
    hello all:
    I've set up the oracle thin driver and it works. but when I change
    to
    oci8.it don't work
    below is config and errors:
    <JDBCConnectionPool DriverName="oracle.jdbc.driver.OracleDriver"
    InitialCapacity="5" LoginDelaySeconds="5" MaxCapacity="15"
    Name="ocipool"
    Properties="user=yanji;password=yanji"
    Targets="myserver" URL="jdbc:oracle:oci8:@pg01"/>
    Could not load 'oracle.jdbc.driver.OracleDriver
    If this is a type-4 JDBC driver, it could occur if the JDBC
    driver is not in the system CLASSPATH.
    If this is a type-2 JDBC driver, it may also indicate that
    the Driver native layers(DBMS client lib or driver DLL)
    have not been installed properly on your system
    or in your PATH environment variable.
    This is most likely caused by one of the following:
    1. The native layer SO, SL, or DLL could not be found.
    2. The file permissions on the native layer SO, SL, or DLL
    have not been set properly.
    3. The native layer SO, SL, or DLL exists, but is either
    invalid or corrupted.
    For more information, read the installation documentation
    for your JDBC Driver, available from:
    http://e-docs.bea.com
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection
    ectionEnvFactory.java:208)
    atweblogic.jdbc.common.internal.ConnectionEnvFactory.createResource
    ectionEnvFactory.java:131)
    atweblogic.common.internal.ResourceAllocator.makeResources(Resource
    ator.java:698)
    atweblogic.common.internal.ResourceAllocator.<init>(ResourceAllocat
    va:282)
    best regards

  • Inicialize the Oracle ASMlib driver : [FAILED]

    Can You help me , where I do mistage ? ( I red all doc about ASM - may be don't carefully)
    I can test a learn more about oracle RAC ( I have two VMWARE masine with rhel4) with Oracle custerware 11.1 and oracle db software 11.1
    I can configure ASM with this RAC architecture (usin ASMlib technology) , but during configuration ASMlib i get error :
    rhel4 kernel 2.6.26
    instaled rpm :
    oracleasm-2.6.9-78.0.8.EL-2.0.5-1.el4.i686.rpm
    oracleasmlib-2.0.2-1.i386.rpm
    oracleasm-support-2.1.1-1.el4.i386.rpm
    I did
    /etc/init.d/oracleasm configure
    .... user to own driver-> oracle
    .... group to own driver ->
    inicializing the Oracle ASMlib driver : [FAILED]
    Can You help me
    Thank You Brano

    Hi,
    The oracleasm package (2.6.9) does not correspond to the kernel version you're using (2.6.26).
    Oracle only supports the 2.6.9 kernel in RHEL 4.x
    Kind regards,
    Serge

  • I have a MacBook Pro 15.4" 2.53GHz Core 2 Duo (A1286) - Mid 2009 MC118LL/A and I think the MATSHITA DVD-R   UJ-868 is going out. Should I replace it with the exact same drive or is there a better one that is compatible?

    I have a MacBook Pro 15.4" 2.53GHz Core 2 Duo (A1286) - Mid 2009 MC118LL/A and I think the MATSHITA DVD-R   UJ-868 is going out. Should I replace it with the exact same drive or is there a better one that is compatible?

    I went to my local Apple store last weekend with a similar issue on my 2007 C2D MBP and they quoted me a price of around £60 (excluding VAT) to replace the optical drive. That's about the same price as the external optical drive a bought for my RMBP.
    Alternatively you could just buy a 3rd party external drive if you want to save cash but note that the external Apple superdrive is not compatible with MacBooks with built in optical drives.

  • Is there an issue with the hitachi hard drives in the MacBook Pro's ?  Got a 15 inch and a 13 inch at the same time and both drives have failed in under two years. I have heard from a few other people with same issue.

    Is there an issue with the hitachi hard drives in the MacBook Pro's ?  Got a 15 inch and a 13 inch at the same time and both drives have failed in under two years. I have heard from a few other people with same issue. Other drive I have had have lasted at least 5 or more years.

    there is a dylib you can put in the springboard if jailbroken but if not you have to find an apple store

  • Discoverer Plus associate with the Oracle Application Server Infrastructure

    Hi Everyone,
    I just install the Oracle BI (v 10.1.2.0.2) into my 2003 server so I could use the Discoverer Plus and Viewer. This is a stand alone BI installation (I guess, I have little knowledge about Discoverer plus or Oracle AS).
    My question is how could I connect the Discoverer plus to my ODS database, so I could create report or view report.
    and where to find the Oracle Application Server Infrastructure (or How do I know I have the Oracle Application Server Infrastructure?)
    I read the Oracle BI Discoverer Configuration Guide, and it tell me to associate the Oracle BI with the Oracle Application Server Infrastructure to deploy the Discoverer. so I went to the BI Application Server Control page, the Infrastructure section, the Identity Management to configure the Internet Directory, so I could I have the public connection, but it didn't work.
    Also do I real need the Oracle AS Infrastructure to make the Discoverer Plus work?
    Thanks in advance
    Kevin C
    Kevin
    Edited by: cmingl on Feb 11, 2010 1:30 PM

    Hi Kevin,
    Oracle AS Infrastructure is needed only if you are implementing SSO for Discoverer or using Public connection .
    Else only Oracle AS Middle tier is sufficient to work with Discoverer Plus .
    Regarding "how could I connect the Discoverer plus to my ODS database, so I could create report or view report"
    You need to create the End User Layer (EUL) and then grant privilege to the EUL to users who will be creating the report .
    Thanks,
    Sutirtha

  • Bug with workflow that creates a folder and sub folder with the same name.

    Hi,
    I've found a possible bug in SharePoint 2010 workflows. I only have access to SharePoint 2010 and SharePoint Designer 2010 over my companies intranet, afaik I don't have access to to logs or anything server side so sorry for the any missing information.
    I had some problems with a workflow in one list that needed to create some folders and subfolders in a second list. The production version did a lot more so I setup a test area with 1 list and a workflow that only does the folder creation part and have managed
    to consistently replicate this problem.
    The test list has two columns, [title] and [sub folder title]
    The workflow starts by getting the values for [title] and [sub folder title] into variables.
    It then creates a folder in the same list with the same name as [title], and then creates a sub folder under this with the name from [sub folder title]
    So the resulting structure would be:
    Test List:-
        List item with fields [title] and [sub folder title]
        [folder: title]:-
            [folder: sub folder title]
    If both folder names are different (e.g Folder1 and Folder2) then it works perfectly fine, if both folder names are the same (regardless of character case, e.g. samefolderName and sameFolderName) then the workflow fails.
    As part of the test i made the first action of the workflow to log the message "Workflow Started" to the history list. When the workflow fail there's nothing logged in the history list other than the error: "The workflow could not update the
    item, possibly because one or more columns for the item require a different type of information."
    Creating a sub folder with the same name as it's parent works fine manually but for some reason a workflow can't seem to do it in one action.
    As there's no history list entries before the error it looks like the workflow is just failing to start but if i do something like add an if statement to check if [title] and [sub folder title] are the same, and only create the subfolder when they are not
    then it runs fine doing what it's set to.
    The function of the workflow in our office was for convenience so were just working without it. Just wanted to post to see if anyone else has come across this/could try to replicate or explain this  and see if it's a SharePoint bug or something specific
    to our setup.
    thanks,
    Martin

    not sure about the specifics of your workflow, but if you're querying the list for the folders... keep in mind that a list lookup will only ever bring back ONE item... even if there are several items that meet the filter criteria... example: if i search
    a list for an item assigned to "john doe", there may be 15 tasks that meet the criteria, and it'll only grab one... this is why SP Designer WARNS you when your list lookup may exhibit this behavior.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

Maybe you are looking for