Xmonad + catalyst

Hi! First post, and I already have an issue
Anyway, I decided to get arch linux recently, xmonad+xorg>1.7 and xf86-video-ati worked pretty much perfectly. However, I tried to go to catalyst, downgraded xorg-server to 1.6.3-901-1, xorg-server-utils, xf86-input-evdev etc, and installed catalyst. Everything works fine, apart from the fact that whenever I open or close a window, or switch workspaces, the system freezes for a second.
I have an ATI Mobility Radeon 3650 HD, and I am running 64bit.
[john@archane ~]$ fgl_glxgears
Using GLX_SGIX_pbuffer
1419 frames in 5.0 seconds = 283.800 FPS
1545 frames in 5.0 seconds = 309.000 FPS
1434 frames in 5.0 seconds = 286.800 FPS
832 frames in 5.0 seconds = 166.400 FPS
456 frames in 5.0 seconds = 91.200 FPS
64 frames in 8.0 seconds = 8.000 FPS
2 frames in 9.0 seconds = 0.222 FPS
26 frames in 7.0 seconds = 3.714 FPS
1147 frames in 6.0 seconds = 191.167 FPS
80 frames in 5.0 seconds = 16.000 FPS
903 frames in 7.0 seconds = 129.000 FPS
461 frames in 15.0 seconds = 30.733 FPS
1178 frames in 5.0 seconds = 235.600 FPS
1429 frames in 5.0 seconds = 285.800 FPS
1496 frames in 5.0 seconds = 299.200 FPS
1391 frames in 5.0 seconds = 278.200 FPS
1447 frames in 5.0 seconds = 289.400 FPS
The huge slowdown was where I was opening and closing terminal windows.
My xorg.conf is the default one that aticonfig --initial gave me, apart from a tweak to add a larger Virtual resolution
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Files"
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Virtual 3360 1080
EndSubSection
EndSection

The reason for this could be the same issue for slow max/minimizing on other enviroments. You can try to run this patched xserver http://aur.archlinux.org/packages.php?ID=26687
Unfortunatly it doesn't compile on my system, i hope you have beter luck

Similar Messages

  • Xmonad, xorg 1.9, and catalyst-test

    Hi guys,
    I'm running xorg 1.9 and catalyst-test on my HP Envy 15 (which contains a Radeon Mobility 5830.)  Almost everything works; nothing strange appears in /var/log/Xorg.log or glxinfo.  It's clear that my hardware acceleration is fine because I'm getting 200+ FPS in Extreme Tux Racer.
    However, xmonad, of all things, is super-slow.  When I switch workspaces or spawn tiled windows, the redraw lag is quite visible and I can see my CPU spike.
    Amid other reports of X problems, I tried installing the backclear/catalyst-maximize-fix xserver packages from the catalyst repository, but those didn't seem to help.  I also tried flipping the bit to enable XAA 2D acceleration, and that didn't seem to help either.
    Any ideas as to why X doesn't seem to be accelerating this properly?

    Yeeees, catalyst isn't supporting xserver 1.10 atm. Maybe 11.3 will support it, maybe.
    Workaround is to:
    - add xorg-server-* and xf86-input-* packages which you installed into pacman.conf's IgnorePkg list
    - OR use [xorg19] repo - read wiki .

  • How do I fix this Xmonad configuration

    Hi,
    I am trying to add multimedia keys support for my Xmonad. Here is my current
    setup.
    import XMonad
    import XMonad.Hooks.DynamicLog
    import XMonad.Hooks.ManageDocks
    import XMonad.Util.EZConfig
    import System.IO
    import XMonad.Actions.Volume
    main = xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
    -- Command to launch the bar
    myBar = "xmobar"
    -- Custom PP, it determines what is written to the bar
    myPP = xmobarPP { ppCurrent = xmobarColor "#429942" "" . wrap "<" ">" }
    -- Key bindings to toggle the gap for the bar
    toggleStrutKey XConfig {XMonad.modMask = modMask} = (modMask, xK_b)
    myConfig = defaultConfig {
        manageHook = manageDocks <+> manageHook defaultConfig,
        layoutHook = avoidStruts $ layoutHook defaultConfig,
        modMask = mod4Mask, -- Rebind Mod to windows key
        borderWidth = 3
        } `additionalKeys`
        [ ((mod4Mask .|. shiftMask, xK_z), spawn "xscreensaver-command -lock"),
          ("<XF86AudioLowerVolume>", lowerVolume 3 >> return ())
    However, I am getting this error:
    Error detected while loading xmonad configuration file: /home/yasar/.xmonad/xmonad.hs
    xmonad.hs:8:8:
        No instances for (Show (l0 GHC.Word.Word32),
                          Read (l0 GHC.Word.Word32))
          arising from a use of `xmonad'
        Possible fix:
          add instance declarations for
          (Show (l0 GHC.Word.Word32), Read (l0 GHC.Word.Word32))
        In the first argument of `(=<<)', namely `xmonad'
        In the expression:
            xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
        In an equation for `main':
            main = xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
    xmonad.hs:8:19:
        No instance for (LayoutClass l0 Window)
          arising from a use of `statusBar'
        Possible fix:
          add an instance declaration for (LayoutClass l0 Window)
        In the second argument of `(=<<)', namely
          `statusBar myBar myPP toggleStrutKey myConfig'
        In the expression:
            xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
        In an equation for `main':
            main = xmonad =<< statusBar myBar myPP toggleStrutKey myConfig
    xmonad.hs:26:8:
        Couldn't match expected type `(ButtonMask, KeySym)'
                    with actual type `[Char]'
        In the expression: "<XF86AudioLowerVolume>"
        In the expression:
          ("<XF86AudioLowerVolume>", lowerVolume 3 >> return ())
        In the second argument of `additionalKeys', namely
          `[((mod4Mask .|. shiftMask, xK_z),
             spawn "xscreensaver-command -lock"),
            ("<XF86AudioLowerVolume>", lowerVolume 3 >> return ())]'
    Please check the file for errors.
    xmonad: xmessage: executeFile: does not exist (No such file or directory)
    I was trying to follow the example in here:
    http://www.haskell.org/haskellwiki/Xmon … _xmonad.hs
    , However, I couln't make it work. I am really new to Xmonad, and never used
    Haskell before, so any help is appreciated.
    Last edited by yasar11732 (2012-02-14 15:01:13)

    pacman -Sf catalyst-utils should bring back /etc/ati, iirc.

  • Creative Cloud and existing Business Catalyst partners - FAQ

    This FAQ will cover topics related to Creative Cloud, for existing Business Catalyst users.
    How can I signup for Creative Cloud?
         Your Business Catalyst account should have been already updated right now with your Adobe ID. If you haven’t updated it yet, visit the Adobe ID – Business Catalyst account update FAQ.
    What benefits do I get with Creative Cloud ?
         In addition to acccess to all Creative Suite programs, Lightroom and others in one place, a Creative Cloud membership enables you to host up to five Business Catalyst websites. These sites will be webBasics sites. For a full comparison between plans, see this page. If you purchase Muse or Dreamweaver as individual products in Creative Cloud, you can host one Business Catalyst website for each of them. 
    My web design shop has several employees, each with their own Business Catalyst login with access our Partner Portal. Do we need Adobe IDs for each of our employees?
        Yes. Since these users are partner users, they need to use an Adobe ID. Visit the Adobe ID – Business Catalyst account update FAQ for more details
    I have a paid website that I want to host using my Creative Cloud subscription. Can I do this?
         This is not possible. You need to create a new webBasics temporary website in Business Catalyst and push it live.
    Can I move a trial/live Creative Cloud site under a different Creative Cloud subscription?
          This is not possible right now.
    Do I get any discount if I upgrade a Creative Cloud website to a higher Business Catalyst plan such as webMarketing or webCommerce?
          Currently there are no upgrade discounts for Creative Cloud members.
    What are the limitations of the webBasics websites that come with Business Catalyst and Creative Cloud membership?
         You will be limited to 100 MB of storage and 1 additional user (such as your customer). You will not get email, SMS or newsletters for this web plan.
    Can I buy more users? Can I buy more space? Can I buy email?
         We are working on creating this workflow but at this point we don’t have an exact release date for this feature.
    How can I upgrade the webBasics websites that come with Creative Cloud to a higher Business Catalyst plan?
         We are working on creating this workflow but at this point we don’t have an exact release date for this feature.
    Do I get any discount for purchasing more websites if I am a Creative Cloud subscriber?
         Right now there is no discount for Creative Cloud members.
    If I am an existing Paid Partner and I have a few employees for whom I paid Creative Cloud subscriptions, how many websites can I claim?
         You will have 5 websites for each employee. However, you will pay different licenses for all of them. Before purchasing these licenses, please contact Adobe Support to add these users to your partner portal. After you have added users to your partner portal, you will be able to access all the websites from it.
    *NOTE: If you have already add employees to your partner portal, then everything will work automatically.
    If you don’t want to access all your websites from the same Partner Portal, you don’t have to do anything.
    How can I set permissions for my employees regarding these websites? What permissions can I set?
          This will be part of a later Creative Cloud that will be launched this year.
    What happens if I cancel or stop paying my Creative Cloud subscription?
         Each live website (among the free websites under your Creative Cloud subscription) will stay live for an additional 30 days. This gives you time to decide whether you want to keep the site(s) live or remove them.  You will be prompted to upgrade your website to a regular Business Catalyst site plan.
         After 30 days, your website will enter in temporary mode. When entering the temporary mode, your custom domain name will be removed from the website. In order to reactivate it, pay for your website directly with Business Catalyst.
         If you are inactive on a temporary website, it will automatically be deleted.
    === Dreamweaver CS6 FAQ ===
    I have logged in on Dreamweaver CS6 and I cannot see my partner site. How can I edit it?
    This is a known issue. For paid partners (Standard or Premium) you can use the workaround described below:
    export one of your sites as an .ste file
    Open the .ste file in another text editor, and modify it
    Replace the :
    httpaddress with your partner's site URL address
    secureURL with your partner site secure URL
    siteid with the site ID of your partner site
    Save the .ste file with another name
    Import this .ste file into Dreamwaver, choose a local root folder
    Please take a look at Brad's blog post here for more detailed steps on how to import your partner site in Dreamweaver.
    I'm trying to login to Dreamweaver CS6 with my Business Catalyst credentials, and it doesn't work. What credentials do I need?
         You can login to Dreamweaver CS6 with your Adobe ID. If you haven't merged your BC account with an Adobe ID account, you'll need to merge it and then you should be able to login.
    How do I access sites in Dreamweaver with an Adobe ID other than the one linked to my Creative Cloud or Dreamweaver subscription?
          Dreamweaver defaults to using the Adobe ID from your subscription to avoid the inconvenience of logging in multiple times. To use a different ID, just click the "Logout" button in the lower-right hand corner of the Business Catalyst panel and log in with a different Adobe ID:
    You'll need to have a file open in an existing BC site for the "Logout" button to be visible. Logging out will not affect the Adobe ID used in conjunction with your Dreamweaver subscription. To change the Adobe ID for your subscription, click Help -> Deactivate.

    At this point the upgrade workflow is not functional just yet, as mentioned here: http://forums.adobe.com/docs/DOC-2153
    So the webBasics Creative Cloud cannot be upgraded directly  to the webBasics+ level for now.
    But a workaround for this case would be to re-publish your Dreamweaver/Muse project (I suppose you've used one of these solutions to build the site in the first place, right?) in a new trial/temporary site  -> let us know what is the URL of that site (don't push it live) -> we will change the site plan from our backend to webBasics+ -> you will be able to publish it using the webBasics+ site plan.
    Please note that this is going to be a separate charge, besides your Creative Cloud subscription. The monthly fee for webBasics+ will be $12.21/month, as mentioned here: http://www.adobe.com/products/business-catalyst/buying-guide-subscriptions.html
    Another way to use the webBasics+ plan would be to simply trigger a new trial site here: https://syd.worldsecuresystems.com/PartnerPortal/FreeTrialSignup.aspx#splash with the same Adobe ID as the one used to buy the Creative Cloud subscription and  take that site live separately.

  • Catalyst 10.10 - Xorg 1.9.2 crash and random system freezes

    Hello.
    I have Radeon HD4650 AGP graphics card.
    I have up to date(no testing repos) Archlinux.
    I installed catalyst 10.10 from AUR - http://aur.archlinux.org/packages.php?ID=29111.
    Everything is ok, but two problems:
    1) When I switching TTY(eg. Ctrl-Alt-F6) while loading KDE(OpenGL splash is running) Xorg crashes:
    kdm.log:
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.35-ARCH i686
    Current Operating System: Linux myhost 2.6.35-ARCH #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Build Date: 01 November 2010 10:23:07PM
    Current version of pixman: 0.18.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Nov 8 10:37:11 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    The XKEYBOARD keymap compiler (xkbcomp) reports:
    > Warning: Type "ONE_LEVEL" has 1 levels, but <RALT> has 2 symbols
    > Ignoring extra symbols
    Errors from xkbcomp are not fatal to the X server
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x80e5ebb]
    1: /usr/bin/X (0x8048000+0x5cd65) [0x80a4d65]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb785240c]
    3: /usr/bin/X (0x8048000+0x143986) [0x818b986]
    4: /usr/bin/X (0x8048000+0x545c9) [0x809c5c9]
    5: /usr/bin/X (0x8048000+0x16de3b) [0x81b5e3b]
    6: /usr/bin/X (FreeCursor+0x57) [0x8062bd7]
    7: /usr/lib/xorg/modules/drivers/fglrx_drv.so (0xb6979000+0x7b0b91) [0xb7129b91]
    8: /usr/bin/X (0x8048000+0x14349a) [0x818b49a]
    9: /usr/bin/X (miPointerUpdateSprite+0x2bd) [0x809d47d]
    10: /usr/bin/X (0x8048000+0x556d3) [0x809d6d3]
    11: /usr/bin/X (0x8048000+0xa34f6) [0x80eb4f6]
    12: /usr/bin/X (0x8048000+0x16dcad) [0x81b5cad]
    13: /usr/bin/X (0x8048000+0x2f31d) [0x807731d]
    14: /usr/bin/X (ProcChangeActivePointerGrab+0x141) [0x807b901]
    15: /usr/bin/X (0x8048000+0x27187) [0x806f187]
    16: /usr/bin/X (0x8048000+0x1a1b5) [0x80621b5]
    17: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb7582c76]
    18: /usr/bin/X (0x8048000+0x19d91) [0x8061d91]
    Segmentation fault at address 0x21f000e6
    Fatal server error:
    Caught signal 11 (Segmentation fault). Server aborting
    kernel.log
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuset
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpu
    Nov 8 10:37:07 localhost kernel: Linux version 2.6.35-ARCH (tobias@T-POWA-LX) (gcc version 4.5.1 (GCC) ) #1 SMP PREEMPT Sat Oct 30 19:57:05 UTC 2010
    Nov 8 10:37:07 localhost kernel: BIOS-provided physical RAM map:
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
    Nov 8 10:37:07 localhost kernel: DMI 2.3 present.
    Nov 8 10:37:07 localhost kernel: AMI BIOS detected: BIOS may corrupt low RAM, working around it.
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
    Nov 8 10:37:07 localhost kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    Nov 8 10:37:07 localhost kernel: last_pfn = 0xbfff0 max_arch_pfn = 0x100000
    Nov 8 10:37:07 localhost kernel: MTRR default type: uncachable
    Nov 8 10:37:07 localhost kernel: MTRR fixed ranges enabled:
    Nov 8 10:37:07 localhost kernel: 00000-9FFFF write-back
    Nov 8 10:37:07 localhost kernel: A0000-EFFFF uncachable
    Nov 8 10:37:07 localhost kernel: F0000-FFFFF write-protect
    Nov 8 10:37:07 localhost kernel: MTRR variable ranges enabled:
    Nov 8 10:37:07 localhost kernel: 0 base 000000000 mask F80000000 write-back
    Nov 8 10:37:07 localhost kernel: 1 base 080000000 mask FC0000000 write-back
    Nov 8 10:37:07 localhost kernel: 2 disabled
    Nov 8 10:37:07 localhost kernel: 3 disabled
    Nov 8 10:37:07 localhost kernel: 4 disabled
    Nov 8 10:37:07 localhost kernel: 5 base 0E0000000 mask FFC000000 write-combining
    Nov 8 10:37:07 localhost kernel: 6 disabled
    Nov 8 10:37:07 localhost kernel: 7 disabled
    Nov 8 10:37:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov 8 10:37:07 localhost kernel: Scanning 0 areas for low memory corruption
    Nov 8 10:37:07 localhost kernel: modified physical RAM map:
    Nov 8 10:37:07 localhost kernel: modified: 0000000000000000 - 0000000000010000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000010000 - 000000000009fc00 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 000000000009fc00 - 00000000000a0000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000000f0000 - 0000000000100000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 0000000000100000 - 00000000bfff0000 (usable)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff0000 - 00000000bfff8000 (ACPI data)
    Nov 8 10:37:07 localhost kernel: modified: 00000000bfff8000 - 00000000c0000000 (ACPI NVS)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fec00000 - 00000000fec01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fee00000 - 00000000fee01000 (reserved)
    Nov 8 10:37:07 localhost kernel: modified: 00000000fff80000 - 0000000100000000 (reserved)
    Nov 8 10:37:07 localhost kernel: initial memory mapped : 0 - 01800000
    Nov 8 10:37:07 localhost kernel: found SMP MP-table at [c00fb930] fb930
    Nov 8 10:37:07 localhost kernel: init_memory_mapping: 0000000000000000-00000000377fe000
    Nov 8 10:37:07 localhost kernel: 0000000000 - 0000400000 page 4k
    Nov 8 10:37:07 localhost kernel: 0000400000 - 0037400000 page 2M
    Nov 8 10:37:07 localhost kernel: 0037400000 - 00377fe000 page 4k
    Nov 8 10:37:07 localhost kernel: kernel direct mapping tables up to 377fe000 @ 15000-1a000
    Nov 8 10:37:07 localhost kernel: RAMDISK: 7fda7000 - 7fff0000
    Nov 8 10:37:07 localhost kernel: Allocated new RAMDISK: 00100000 - 003480c5
    Nov 8 10:37:07 localhost kernel: Move RAMDISK from 000000007fda7000 - 000000007ffef0c4 to 00100000 - 003480c4
    Nov 8 10:37:07 localhost kernel: ACPI: RSDP 000fa980 00014 (v00 AMI )
    Nov 8 10:37:07 localhost kernel: ACPI: RSDT bfff0000 0002C (v01 AMIINT VIA_K7 00000010 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: FACP bfff0030 00081 (v01 AMIINT VIA_K7 00000011 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: DSDT bfff0120 03362 (v01 VIA VIA_K7 00001000 MSFT 0100000D)
    Nov 8 10:37:07 localhost kernel: ACPI: FACS bfff8000 00040
    Nov 8 10:37:07 localhost kernel: ACPI: APIC bfff00c0 00054 (v01 AMIINT VIA_K7 00000009 MSFT 00000097)
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: 2183MB HIGHMEM available.
    Nov 8 10:37:07 localhost kernel: 887MB LOWMEM available.
    Nov 8 10:37:07 localhost kernel: mapped low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: low ram: 0 - 377fe000
    Nov 8 10:37:07 localhost kernel: Zone PFN ranges:
    Nov 8 10:37:07 localhost kernel: DMA 0x00000010 -> 0x00001000
    Nov 8 10:37:07 localhost kernel: Normal 0x00001000 -> 0x000377fe
    Nov 8 10:37:07 localhost kernel: HighMem 0x000377fe -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: Movable zone start PFN for each node
    Nov 8 10:37:07 localhost kernel: early_node_map[2] active PFN ranges
    Nov 8 10:37:07 localhost kernel: 0: 0x00000010 -> 0x0000009f
    Nov 8 10:37:07 localhost kernel: 0: 0x00000100 -> 0x000bfff0
    Nov 8 10:37:07 localhost kernel: On node 0 totalpages: 786303
    Nov 8 10:37:07 localhost kernel: free_area_init_node: node 0, pgdat c1418ac0, node_mem_map c157d200
    Nov 8 10:37:07 localhost kernel: DMA zone: 32 pages used for memmap
    Nov 8 10:37:07 localhost kernel: DMA zone: 0 pages reserved
    Nov 8 10:37:07 localhost kernel: DMA zone: 3951 pages, LIFO batch:0
    Nov 8 10:37:07 localhost kernel: Normal zone: 1744 pages used for memmap
    Nov 8 10:37:07 localhost kernel: Normal zone: 221486 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: HighMem zone: 4368 pages used for memmap
    Nov 8 10:37:07 localhost kernel: HighMem zone: 554722 pages, LIFO batch:31
    Nov 8 10:37:07 localhost kernel: Using APIC driver default
    Nov 8 10:37:07 localhost kernel: ACPI: PM-Timer IO Port: 0x808
    Nov 8 10:37:07 localhost kernel: ACPI: Local APIC address 0xfee00000
    Nov 8 10:37:07 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Nov 8 10:37:07 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Nov 8 10:37:07 localhost kernel: IOAPIC[0]: apic_id 2, version 3, address 0xfec00000, GSI 0-23
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov 8 10:37:07 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ0 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ2 used by override.
    Nov 8 10:37:07 localhost kernel: ACPI: IRQ9 used by override.
    Nov 8 10:37:07 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov 8 10:37:07 localhost kernel: SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Nov 8 10:37:07 localhost kernel: nr_irqs_gsi: 40
    Nov 8 10:37:07 localhost kernel: early_res array is doubled to 64 at [16000 - 167ff]
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
    Nov 8 10:37:07 localhost kernel: PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
    Nov 8 10:37:07 localhost kernel: Allocating PCI resources starting at c0000000 (gap: c0000000:3ec00000)
    Nov 8 10:37:07 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov 8 10:37:07 localhost kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
    Nov 8 10:37:07 localhost kernel: PERCPU: Embedded 14 pages/cpu @c3000000 s34880 r0 d22464 u4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: s34880 r0 d22464 u4194304 alloc=1*4194304
    Nov 8 10:37:07 localhost kernel: pcpu-alloc: [0] 0
    Nov 8 10:37:07 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 780159
    Nov 8 10:37:07 localhost kernel: Kernel command line: root=/dev/disk/by-uuid/223249f9-5c17-4b09-9886-55ac67009986 ro elevator=deadline nomodeset vga=33556
    Nov 8 10:37:07 localhost kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Nov 8 10:37:07 localhost kernel: Enabling fast FPU save and restore... done.
    Nov 8 10:37:07 localhost kernel: Enabling unmasked SIMD FPU exception support... done.
    Nov 8 10:37:07 localhost kernel: Initializing CPU#0
    Nov 8 10:37:07 localhost kernel: allocated 15728000 bytes of page_cgroup
    Nov 8 10:37:07 localhost kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Nov 8 10:37:07 localhost kernel: Subtract (46 early reservations)
    Nov 8 10:37:07 localhost kernel: #1 [0000001000 - 0000002000] EX TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #2 [0001000000 - 0001574184] TEXT DATA BSS
    Nov 8 10:37:07 localhost kernel: #3 [0001575000 - 000157b108] BRK
    Nov 8 10:37:07 localhost kernel: #4 [00000fb940 - 0000100000] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #5 [00000fb930 - 00000fb940] MP-table mpf
    Nov 8 10:37:07 localhost kernel: #6 [000009fc00 - 00000f6630] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #7 [00000f6738 - 00000fb930] BIOS reserved
    Nov 8 10:37:07 localhost kernel: #8 [00000f6630 - 00000f6738] MP-table mpc
    Nov 8 10:37:07 localhost kernel: #9 [0000010000 - 0000011000] TRAMPOLINE
    Nov 8 10:37:07 localhost kernel: #10 [0000011000 - 0000015000] ACPI WAKEUP
    Nov 8 10:37:07 localhost kernel: #11 [0000015000 - 0000016000] PGTABLE
    Nov 8 10:37:07 localhost kernel: #12 [0000100000 - 0000349000] NEW RAMDISK
    Nov 8 10:37:07 localhost kernel: #13 [000157c000 - 000157d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #14 [000157d000 - 0002d7d000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #15 [00015741c0 - 00015741c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #16 [0001574200 - 00015742c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #17 [00015742c0 - 0001574314] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #18 [0002d7d000 - 0002d80000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #19 [0001574340 - 0001574410] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #20 [0002d80000 - 0002d8c000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #21 [0001574440 - 0001574467] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #22 [0001574480 - 0001574598] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #23 [00015745c0 - 0001574600] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #24 [0001574600 - 0001574640] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #25 [0001574640 - 0001574680] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #26 [0001574680 - 00015746c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #27 [00015746c0 - 0001574700] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #28 [0001574700 - 0001574740] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #29 [0001574740 - 0001574780] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #30 [0001574780 - 00015747c0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #31 [00015747c0 - 0001574800] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #32 [0001574800 - 0001574810] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #33 [0001574840 - 00015748a5] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #34 [00015748c0 - 0001574925] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #35 [0003000000 - 000300e000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #36 [0001574940 - 0001574944] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #37 [0001574980 - 0001574984] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #38 [00015749c0 - 00015749c4] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #39 [0001574a00 - 0001574a04] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #40 [0001574a40 - 0001574af0] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #41 [0001574b00 - 0001574ba8] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #42 [0002d8c000 - 0002d90000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #43 [0002d90000 - 0002e10000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #44 [0002e10000 - 0002e50000] BOOTMEM
    Nov 8 10:37:07 localhost kernel: #45 [000300e000 - 0003f0dd80] BOOTMEM
    Nov 8 10:37:07 localhost kernel: Initializing HighMem for node 0 (000377fe:000bfff0)
    Nov 8 10:37:07 localhost kernel: Memory: 3096392k/3145664k available (2987k kernel code, 48820k reserved, 1237k data, 416k init, 2236360k highmem)
    Nov 8 10:37:07 localhost kernel: virtual kernel memory layout:
    Nov 8 10:37:07 localhost kernel: fixmap : 0xfff16000 - 0xfffff000 ( 932 kB)
    Nov 8 10:37:07 localhost kernel: pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    Nov 8 10:37:07 localhost kernel: vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    Nov 8 10:37:07 localhost kernel: lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    Nov 8 10:37:07 localhost kernel: .init : 0xc1421000 - 0xc1489000 ( 416 kB)
    Nov 8 10:37:07 localhost kernel: .data : 0xc12eac4c - 0xc1420200 (1237 kB)
    Nov 8 10:37:07 localhost kernel: .text : 0xc1000000 - 0xc12eac4c (2987 kB)
    Nov 8 10:37:07 localhost kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Nov 8 10:37:07 localhost kernel: SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Nov 8 10:37:07 localhost kernel: Hierarchical RCU implementation.
    Nov 8 10:37:07 localhost kernel: RCU-based detection of stalled CPUs is disabled.
    Nov 8 10:37:07 localhost kernel: Verbose stalled-CPUs detection is disabled.
    Nov 8 10:37:07 localhost kernel: NR_IRQS:512
    Nov 8 10:37:07 localhost kernel: Console: colour VGA+ 132x43
    Nov 8 10:37:07 localhost kernel: console [tty0] enabled
    Nov 8 10:37:07 localhost kernel: Fast TSC calibration using PIT
    Nov 8 10:37:07 localhost kernel: Detected 1666.888 MHz processor.
    Nov 8 10:37:07 localhost kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3335.68 BogoMIPS (lpj=5556293)
    Nov 8 10:37:07 localhost kernel: pid_max: default: 32768 minimum: 301
    Nov 8 10:37:07 localhost kernel: Security Framework initialized
    Nov 8 10:37:07 localhost kernel: Mount-cache hash table entries: 512
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys ns
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys cpuacct
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys memory
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys devices
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys freezer
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys net_cls
    Nov 8 10:37:07 localhost kernel: Initializing cgroup subsys blkio
    Nov 8 10:37:07 localhost kernel: mce: CPU supports 4 MCE banks
    Nov 8 10:37:07 localhost kernel: Performance Events: AMD PMU driver.
    Nov 8 10:37:07 localhost kernel: ... version: 0
    Nov 8 10:37:07 localhost kernel: ... bit width: 48
    Nov 8 10:37:07 localhost kernel: ... generic registers: 4
    Nov 8 10:37:07 localhost kernel: ... value mask: 0000ffffffffffff
    Nov 8 10:37:07 localhost kernel: ... max period: 00007fffffffffff
    Nov 8 10:37:07 localhost kernel: ... fixed-purpose events: 0
    Nov 8 10:37:07 localhost kernel: ... event mask: 000000000000000f
    Nov 8 10:37:07 localhost kernel: SMP alternatives: switching to UP code
    Nov 8 10:37:07 localhost kernel: Freeing SMP alternatives: 12k freed
    Nov 8 10:37:07 localhost kernel: ACPI: Core revision 20100428
    Nov 8 10:37:07 localhost kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Nov 8 10:37:07 localhost kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Nov 8 10:37:07 localhost kernel: CPU0: AMD Athlon(tm) XP 2000+ stepping 00
    Nov 8 10:37:07 localhost kernel: Brought up 1 CPUs
    Nov 8 10:37:07 localhost kernel: Total of 1 processors activated (3335.68 BogoMIPS).
    Nov 8 10:37:07 localhost kernel: devtmpfs: initialized
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 16
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pci registered
    Nov 8 10:37:07 localhost kernel: PCI: PCI BIOS revision 2.10 entry at 0xfdaf1, last bus=1
    Nov 8 10:37:07 localhost kernel: PCI: Using configuration type 1 for base access
    Nov 8 10:37:07 localhost kernel: bio: create slab <bio-0> at 0
    Nov 8 10:37:07 localhost kernel: ACPI: EC: Look up EC in DSDT
    Nov 8 10:37:07 localhost kernel: ACPI: Interpreter enabled
    Nov 8 10:37:07 localhost kernel: ACPI: (supports S0 S3 S4 S5)
    Nov 8 10:37:07 localhost kernel: ACPI: Using IOAPIC for interrupt routing
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP1] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [URP2] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [FDDP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: Power Resource [LPTP] (off)
    Nov 8 10:37:07 localhost kernel: ACPI: No dock devices found.
    Nov 8 10:37:07 localhost kernel: PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci_root PNP0A03:00: host bridge window [mem 0xfee01000-0xffdfffff] (ignored)
    Nov 8 10:37:07 localhost kernel: pci 0000:00:00.0: reg 10: [mem 0xe0000000-0xe3ffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: supports D1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 10: [mem 0xdc000000-0xdfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: reg 30: [mem 0xdbff0000-0xdbffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: reg 20: [io 0xe400-0xe41f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.0: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: reg 20: [io 0xe800-0xe81f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.1: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: reg 20: [io 0xec00-0xec1f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.2: PME# disabled
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: reg 10: [mem 0xdbfeff00-0xdbfeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 8 10:37:07 localhost kernel: pci 0000:00:10.3: PME# disabled
    Nov 8 10:37:07 localhost kernel: HPET not enabled in BIOS. You might try hpet=force boot option
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0800-0x087f] claimed by vt8235 PM
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.0: quirk: [io 0x0400-0x040f] claimed by vt8235 SMB
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.1: reg 20: [io 0xfc00-0xfc0f]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: reg 10: [io 0xe000-0xe0ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:11.5: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 10: [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 14: [io 0xc800-0xc8ff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 18: [mem 0xd7ef0000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: reg 30: [mem 0xd7ec0000-0xd7edffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: supports D1 D2
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xb7d00000-0xd7cfffff pref]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: on NUMA node 0
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Nov 8 10:37:07 localhost kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Nov 8 10:37:07 localhost kernel: HEST: Table is not found!
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:00:0b.0,decodes=io+mem,owns=io+mem,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Nov 8 10:37:07 localhost kernel: vgaarb: loaded
    Nov 8 10:37:07 localhost kernel: PCI: Using ACPI for IRQ routing
    Nov 8 10:37:07 localhost kernel: PCI: pci_cache_line_size set to 32 bytes
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: address space collision: [mem 0xb7d00000-0xd7cfffff pref] conflicts with System RAM [mem 0x00100000-0xbffeffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: no compatible bridge window for [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 000000000009fc00 - 000000000009ffff
    Nov 8 10:37:07 localhost kernel: reserve RAM buffer: 00000000bfff0000 - 00000000bfffffff
    Nov 8 10:37:07 localhost kernel: NetLabel: Initializing
    Nov 8 10:37:07 localhost kernel: NetLabel: domain hash size = 128
    Nov 8 10:37:07 localhost kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Nov 8 10:37:07 localhost kernel: NetLabel: unlabeled traffic allowed by default
    Nov 8 10:37:07 localhost kernel: Switching to clocksource tsc
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI init
    Nov 8 10:37:07 localhost kernel: ACPI: bus type pnp registered
    Nov 8 10:37:07 localhost kernel: pnp 00:01: disabling [io 0x0820-0x0821] because it overlaps 0000:00:11.0 BAR 13 [io 0x0800-0x087f]
    Nov 8 10:37:07 localhost kernel: pnp: PnP ACPI: found 9 devices
    Nov 8 10:37:07 localhost kernel: ACPI: ACPI bus type pnp unregistered
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0290-0x0297] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x03f0-0x03f1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x04d0-0x04d1] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [io 0x0400-0x040f] has been reserved
    Nov 8 10:37:07 localhost kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: BAR 15: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: assigned [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: BAR 0: set to [mem 0xc0000000-0xcfffffff pref] (PCI address [0xc0000000-0xcfffffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: PCI bridge to [bus 01-01]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 0 [io 0xc000-0xcfff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xd7e00000-0xd7efffff]
    Nov 8 10:37:07 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff pref]
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 2
    Nov 8 10:37:07 localhost kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    Nov 8 10:37:07 localhost kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    Nov 8 10:37:07 localhost kernel: TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    Nov 8 10:37:07 localhost kernel: TCP: Hash tables configured (established 131072 bind 65536)
    Nov 8 10:37:07 localhost kernel: TCP reno registered
    Nov 8 10:37:07 localhost kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 1
    Nov 8 10:37:07 localhost kernel: pci 0000:00:01.0: disabling DAC on VIA PCI bridge
    Nov 8 10:37:07 localhost kernel: pci 0000:00:0b.0: Boot video device
    Nov 8 10:37:07 localhost kernel: PCI: CLS 32 bytes, default 32
    Nov 8 10:37:07 localhost kernel: Unpacking initramfs...
    Nov 8 10:37:07 localhost kernel: Freeing initrd memory: 2340k freed
    Nov 8 10:37:07 localhost kernel: apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    Nov 8 10:37:07 localhost kernel: apm: overridden by ACPI.
    Nov 8 10:37:07 localhost kernel: Scanning for low memory corruption every 60 seconds
    Nov 8 10:37:07 localhost kernel: audit: initializing netlink socket (disabled)
    Nov 8 10:37:07 localhost kernel: type=2000 audit(1289212597.233:1): initialized
    Nov 8 10:37:07 localhost kernel: highmem bounce pool size: 64 pages
    Nov 8 10:37:07 localhost kernel: VFS: Disk quotas dquot_6.5.2
    Nov 8 10:37:07 localhost kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Nov 8 10:37:07 localhost kernel: msgmni has been set to 1684
    Nov 8 10:37:07 localhost kernel: alg: No test for stdrng (krng)
    Nov 8 10:37:07 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    Nov 8 10:37:07 localhost kernel: io scheduler noop registered
    Nov 8 10:37:07 localhost kernel: io scheduler deadline registered (default)
    Nov 8 10:37:07 localhost kernel: io scheduler cfq registered
    Nov 8 10:37:07 localhost kernel: ERST: Table is not found!
    Nov 8 10:37:07 localhost kernel: isapnp: Scanning for PnP cards...
    Nov 8 10:37:07 localhost kernel: isapnp: No Plug & Play device found
    Nov 8 10:37:07 localhost kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Nov 8 10:37:07 localhost kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Nov 8 10:37:07 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Nov 8 10:37:07 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Nov 8 10:37:07 localhost kernel: mice: PS/2 mouse device common for all mice
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor ladder
    Nov 8 10:37:07 localhost kernel: cpuidle: using governor menu
    Nov 8 10:37:07 localhost kernel: TCP cubic registered
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 17
    Nov 8 10:37:07 localhost kernel: Using IPI No-Shortcut mode
    Nov 8 10:37:07 localhost kernel: PM: Resume from disk failed.
    Nov 8 10:37:07 localhost kernel: registered taskstats version 1
    Nov 8 10:37:07 localhost kernel: Initalizing network drop monitor service
    Nov 8 10:37:07 localhost kernel: Freeing unused kernel memory: 416k freed
    Nov 8 10:37:07 localhost kernel: udev[31]: starting version 163
    Nov 8 10:37:07 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Nov 8 10:37:07 localhost kernel: Linux agpgart interface v0.103
    Nov 8 10:37:07 localhost kernel: agpgart: Detected VIA KT400/KT400A/KT600 chipset
    Nov 8 10:37:07 localhost kernel: agpgart-via 0000:00:00.0: AGP aperture is 64M @ 0xe0000000
    Nov 8 10:37:07 localhost kernel: [drm] Initialized drm 1.1.0 20060810
    Nov 8 10:37:07 localhost kernel: [drm] VGACON disable radeon kernel modesetting.
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Nov 8 10:37:07 localhost kernel: [drm] Initialized radeon 1.33.0 20080528 for 0000:01:00.0 on minor 0
    Nov 8 10:37:07 localhost kernel: SCSI subsystem initialized
    Nov 8 10:37:07 localhost kernel: Floppy drive(s): fd0 is 1.44M
    Nov 8 10:37:07 localhost kernel: FDC 0 is a post-1991 82077
    Nov 8 10:37:07 localhost kernel: libata version 3.00 loaded.
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: version 0.3.4
    Nov 8 10:37:07 localhost kernel: pata_via 0000:00:11.1: can't derive routing for PCI INT A
    Nov 8 10:37:07 localhost kernel: scsi0 : pata_via
    Nov 8 10:37:07 localhost kernel: scsi1 : pata_via
    Nov 8 10:37:07 localhost kernel: ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xfc00 irq 14
    Nov 8 10:37:07 localhost kernel: ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xfc08 irq 15
    Nov 8 10:37:07 localhost kernel: ata1.00: ATA-6: ST380011A, 3.04, max UDMA/100
    Nov 8 10:37:07 localhost kernel: ata1.00: 156301488 sectors, multi 16: LBA48
    Nov 8 10:37:07 localhost kernel: ata1.00: configured for UDMA/100
    Nov 8 10:37:07 localhost kernel: scsi 0:0:0:0: Direct-Access ATA ST380011A 3.04 PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: ata2.00: ATAPI: LITE-ON DVD SOHD-16P9S, FS0J, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: ATAPI: LITE-ON LTR-52246S, 6S0F, max UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.00: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: ata2.01: configured for UDMA/33
    Nov 8 10:37:07 localhost kernel: scsi 1:0:0:0: CD-ROM LITE-ON DVD SOHD-16P9S FS0J PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: scsi 1:0:1:0: CD-ROM LITE-ON LTR-52246S 6S0F PQ: 0 ANSI: 5
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write Protect is off
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Nov 8 10:37:07 localhost kernel: sda:sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: Uniform CD-ROM driver Revision: 3.20
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Nov 8 10:37:07 localhost kernel: sda1 sda2 sda3 sda4 < sda5 sda6 sda7sr1: scsi3-mmc drive: 15x/52x writer cd/rw xa/form2 cdda tray
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi CD-ROM sr1
    Nov 8 10:37:07 localhost kernel: sda8 sda9 sda10 >
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: RTC can wake from S4
    Nov 8 10:37:07 localhost kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
    Nov 8 10:37:07 localhost kernel: rtc0: alarms up to one year, y3k, 114 bytes nvram
    Nov 8 10:37:07 localhost kernel: udev[496]: starting version 163
    Nov 8 10:37:07 localhost kernel: fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
    Nov 8 10:37:07 localhost kernel: Disabling lock debugging due to kernel taint
    Nov 8 10:37:07 localhost kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
    Nov 8 10:37:07 localhost kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
    Nov 8 10:37:07 localhost kernel: sr 1:0:1:0: Attached scsi generic sg2 type 5
    Nov 8 10:37:07 localhost kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Nov 8 10:37:07 localhost kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Nov 8 10:37:07 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver usbfs
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver hub
    Nov 8 10:37:07 localhost kernel: usbcore: registered new device driver usb
    Nov 8 10:37:07 localhost kernel: psmouse serio1: ID: 10 00 64
    Nov 8 10:37:07 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.0: irq 21, io base 0x0000e400
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 1-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.1: irq 21, io base 0x0000e800
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 2-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: PCI INT C -> GSI 21 (level, low) -> IRQ 21
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: UHCI Host Controller
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3
    Nov 8 10:37:07 localhost kernel: uhci_hcd 0000:00:10.2: irq 21, io base 0x0000ec00
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 23
    Nov 8 10:37:07 localhost kernel: [fglrx] Maximum main memory to use for locked dma buffers: 2880 MBytes.
    Nov 8 10:37:07 localhost kernel: [fglrx] vendor: 1002 device: 9495 count: 1
    Nov 8 10:37:07 localhost kernel: [fglrx] ioport: bar 1, base 0xc800, size: 0x100
    Nov 8 10:37:07 localhost kernel: pci 0000:01:00.0: PCI: Disallowing DAC for device
    Nov 8 10:37:07 localhost kernel: [fglrx] Kernel PAT support is enabled
    Nov 8 10:37:07 localhost kernel: [fglrx] module loaded - fglrx 8.78.6 [Oct 5 2010] with 1 minors
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: USB hub found
    Nov 8 10:37:07 localhost kernel: hub 3-0:1.0: 2 ports detected
    Nov 8 10:37:07 localhost kernel: ACPI: acpi_idle registered with cpuidle
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRB]
    Nov 8 10:37:07 localhost kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    Nov 8 10:37:07 localhost kernel: ACPI: Sleep Button [SLPB]
    Nov 8 10:37:07 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    Nov 8 10:37:07 localhost kernel: ACPI: Power Button [PWRF]
    Nov 8 10:37:07 localhost kernel: usb 1-1: new full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input5
    Nov 8 10:37:07 localhost kernel: ACPI: resource vt596_smbus [io 0x0400-0x0407] conflicts with ACPI region SMOV [??? 0x00000400-0x00000406 flags 0x56]
    Nov 8 10:37:07 localhost kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: PCI INT C -> GSI 22 (level, low) -> IRQ 22
    Nov 8 10:37:07 localhost kernel: VIA 82xx Audio 0000:00:11.5: setting latency timer to 64
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 8
    Nov 8 10:37:07 localhost kernel: NET: Registered protocol family 20
    Nov 8 10:37:07 localhost kernel: usb 1-1: reset full speed USB device using uhci_hcd and address 2
    Nov 8 10:37:07 localhost kernel: usbcore: registered new interface driver speedtch
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 1 firmware speedtch-1.bin.4.00
    Nov 8 10:37:07 localhost kernel: speedtch 1-1:1.0: found stage 2 firmware speedtch-2.bin.4.00
    Nov 8 10:37:07 localhost kernel: ATM dev 0: ADSL line is synchronising
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda2): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda6): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT3-fs: barriers not enabled
    Nov 8 10:37:07 localhost kernel: kjournald starting. Commit interval 5 seconds
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): using internal journal
    Nov 8 10:37:07 localhost kernel: EXT3-fs (sda3): mounted filesystem with writeback data mode
    Nov 8 10:37:07 localhost kernel: EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    Nov 8 10:37:07 localhost kernel: Adding 1052220k swap on /dev/sda5. Priority:-1 extents:1 across:1052220k
    Nov 8 10:37:09 localhost kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
    Nov 8 10:37:09 localhost kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    Nov 8 10:37:09 localhost kernel: CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
    Nov 8 10:37:09 localhost kernel: nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
    Nov 8 10:37:09 localhost kernel: sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
    Nov 8 10:37:11 localhost kernel: PPP generic driver version 2.4.2
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:37:13 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:37:13 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:37:13 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:37:13 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:37:13 localhost kernel: [fglrx] Could not enable MSI; System prevented initialization
    Nov 8 10:37:13 localhost kernel: [fglrx] Firegl kernel thread PID: 2202
    Nov 8 10:37:13 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:37:14 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:37:14 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:37:20 localhost kernel: ATM dev 0: ADSL line is up (5312 kb/s down | 320 kb/s up)
    Nov 8 10:38:09 localhost kernel: [fglrx] IRQ 16 Disabled
    Nov 8 10:38:09 localhost kernel: BUG: scheduling while atomic: X/2191/0x00000002
    Nov 8 10:38:09 localhost kernel: Modules linked in: pppoatm ppp_generic slhc xt_tcpudp nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack iptable_filter ip_tables x_tables ext4 jbd2 crc16 ext2 speedtch usbatm atm snd_via82xx gameport snd_ac97_codec ac97_bus snd_pcm snd_timer snd_page_alloc snd_mpu401_uart snd_rawmidi snd_seq_device i2c_viapro snd soundcore button thermal processor via_ircc uhci_hcd irda crc_ccitt psmouse usbcore fglrx(P) shpchp pcspkr serio_raw pci_hotplug sg evdev rtc_cmos rtc_core rtc_lib ext3 jbd mbcache sd_mod sr_mod cdrom pata_acpi pata_via libata floppy scsi_mod radeon ttm drm_kms_helper drm i2c_algo_bit i2c_core via_agp agpgart
    Nov 8 10:38:09 localhost kernel: Pid: 2191, comm: X Tainted: P 2.6.35-ARCH #1
    Nov 8 10:38:09 localhost kernel: Call Trace:
    Nov 8 10:38:09 localhost kernel: [<c1034d1d>] __schedule_bug+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e6dcf>] schedule+0x47f/0x6f0
    Nov 8 10:38:09 localhost kernel: [<f8761b22>] ? KAS_Event_Set+0x92/0xa0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c12e9505>] ? _raw_spin_unlock_irqrestore+0x25/0x30
    Nov 8 10:38:09 localhost kernel: [<f87624a6>] KAS_Thread_WaitForFinish+0x86/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c105eb30>] ? autoremove_wake_function+0x0/0x40
    Nov 8 10:38:09 localhost kernel: [<f877bafa>] MCIL_WorkerThread+0x1da/0x2c0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8841790>] ? PassiveRing_Cleanup+0x60/0xc0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8791e58>] ? firegl_trace+0x28/0x190 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f8840d01>] IRQMGR_FreeResources+0x21/0x60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f877e87e>] irqmgr_wrap_shutdown+0x17e/0x1d0 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876e4c9>] ? firegl_takedown+0x989/0xa60 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f885600d>] ? amdPcsClose+0x3d/0x40 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f876d35f>] ? firegl_release+0x14f/0x220 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<f875e5be>] ? ip_firegl_release+0xe/0x10 [fglrx]
    Nov 8 10:38:09 localhost kernel: [<c10f8153>] ? fput+0xf3/0x1f0
    Nov 8 10:38:09 localhost kernel: [<c10f4f69>] ? filp_close+0x49/0x70
    Nov 8 10:38:09 localhost kernel: [<c1046d57>] ? put_files_struct+0x87/0x100
    Nov 8 10:38:09 localhost kernel: [<c1046e72>] ? exit_files+0x42/0x60
    Nov 8 10:38:09 localhost kernel: [<c104727a>] ? do_exit+0x14a/0x770
    Nov 8 10:38:09 localhost kernel: [<c1053f0d>] ? __sigqueue_free+0x2d/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1047ab9>] ? do_group_exit+0x39/0xa0
    Nov 8 10:38:09 localhost kernel: [<c10563ad>] ? get_signal_to_deliver+0x25d/0x470
    Nov 8 10:38:09 localhost kernel: [<c1054e12>] ? __send_signal+0x162/0x390
    Nov 8 10:38:09 localhost kernel: [<c1002909>] ? do_signal+0x69/0x870
    Nov 8 10:38:09 localhost kernel: [<c105592f>] ? do_send_specific+0x7f/0xc0
    Nov 8 10:38:09 localhost kernel: [<c1183c90>] ? _atomic_dec_and_lock+0x50/0x70
    Nov 8 10:38:09 localhost kernel: [<c110e426>] ? mntput_no_expire+0x16/0x90
    Nov 8 10:38:09 localhost kernel: [<c1053162>] ? recalc_sigpending+0x12/0x30
    Nov 8 10:38:09 localhost kernel: [<c1053e65>] ? sigprocmask+0x75/0xf0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10567b4>] ? sys_rt_sigprocmask+0xc4/0xe0
    Nov 8 10:38:09 localhost kernel: [<c10033fd>] ? do_notify_resume+0x5d/0x70
    Nov 8 10:38:09 localhost kernel: [<c12e9af8>] ? work_notifysig+0x13/0x1b
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP detected, AgpState = 0x1f000a1b (hardware caps of chipset)
    Nov 8 10:38:10 localhost kernel: [fglrx] [agp] enabling AGP with mode=0x1f000b1a
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: AGP 3.5 bridge
    Nov 8 10:38:10 localhost kernel: agpgart-via 0000:00:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: fglrx_pci 0000:01:00.0: putting AGP V3 device into 8x mode
    Nov 8 10:38:10 localhost kernel: [fglrx] AGP enabled, AgpCommand = 0x1f000312 (selected caps)
    Nov 8 10:38:10 localhost kernel: [fglrx] Setup AGP aperture
    Nov 8 10:38:10 localhost kernel: [fglrx] Firegl kernel thread PID: 2426
    Nov 8 10:38:10 localhost kernel: [fglrx] IRQ 16 Enabled
    Nov 8 10:38:11 localhost kernel: [fglrx] Gart cacheable size:1318 M.
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Shared offset:0, size:1000000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:fd0a000, size:2f6000
    Nov 8 10:38:11 localhost kernel: [fglrx] Reserved FB block: Unshared offset:3fffd000, size:3000
    Nov 8 10:38:33 localhost kernel: [fglrx] IRQ 16 Disabled
    2) Sometimes computer freeze while I working in KDE. I don't save logs, but I remeber that:
    X: page allocation failure
    in kernel.log.
    Can anyone has tips or workarounds for this bugs (or just catalyst proprietary driver is piece of sh*t?)?
    Can anyone help?

    I guess I have the same issue ( https://bbs.archlinux.org/viewtopic.php?id=108083 ). I removed the catalyst package and installed the open source driver (packages: xf86-video-ati and ati-dri) as a workaround to wait until the issue is resolved. If you want to do that, remember to update your xorg.conf (you can simple rename that... it's not needed with ati driver) and rc.conf (unblacklist the radeon module). Maybe downgrading to Xorg 1.8 and installing older driver would help. Hopefully somebody with greater knowledge will notice this problem.
    Last edited by kleofas (2010-11-11 12:42:38)

  • Xorg 1.8.1.902 & Catalyst 10.6-5 & Mobility Radeon HD 2600

    Hello all,
    I'm reporting in with an error that I can't seem to shake since the Xorg 1.8 and Catalyst 10.6 release. I have been unable to get the two to place nice with the Mobility Radeon HD 2600 in my HP Compaq 8510p notebook. I've followed the instructions on the Arch ATI Catalyst wiki using the repository approach. Everything installs correctly and I've configured the xorg.conf as instructed in the wiki. I actually just delete the existing xorg.conf and run aticonfig --initial, but still no dice. I've made sure that I have the fglrx module loaded in my rc.conf.
    When GDM tries to start, it freaks out with the screen flashing a few times and then crashes saying too many attempts to start X. I login and try to start X manually and it produces the following log file:
    [ 24.874]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 24.874]
    X.Org X Server 1.8.1.902 (1.8.2 RC 2)
    Release Date: 2010-06-21
    [ 24.874] X Protocol Version 11, Revision 0
    [ 24.874] Build Operating System: Linux 2.6.34-ARCH x86_64
    [ 24.874] Current Operating System: Linux gizmo 2.6.34-ARCH #1 SMP PREEMPT Mon Jul 5 22:12:11 CEST 2010 x86_64
    [ 24.874] Kernel command line: root=/dev/disk/by-uuid/56888501-5e9b-4251-8d84-20eee8a125ce ro nomodeset
    [ 24.875] Build Date: 21 June 2010 12:01:49PM
    [ 24.875]
    [ 24.875] Current version of pixman: 0.18.2
    [ 24.875] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 24.875] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 24.875] (==) Log file: "/var/log/Xorg.1.log", Time: Fri Jul 23 19:47:16 2010
    [ 24.875] (==) Using config file: "/etc/X11/xorg.conf"
    [ 24.876] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 24.876] (==) ServerLayout "aticonfig Layout"
    [ 24.876] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 24.876] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 24.876] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 24.876] (==) Automatically adding devices
    [ 24.877] (==) Automatically enabling devices
    [ 24.877] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 24.877] Entry deleted from font path.
    [ 24.877] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 24.877] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 24.877] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 24.877] (II) Loader magic: 0x7ce880
    [ 24.877] (II) Module ABI versions:
    [ 24.877] X.Org ANSI C Emulation: 0.4
    [ 24.877] X.Org Video Driver: 7.0
    [ 24.877] X.Org XInput driver : 9.0
    [ 24.877] X.Org Server Extension : 3.0
    [ 24.888] (--) PCI:*(0:1:0:0) 1002:9581:103c:30c5 ATI Technologies Inc M76 [Radeon Mobility HD 2600 Series] rev 0, Mem @ 0xd0000000/268435456, 0xe4400000/65536, I/O @ 0x00004000/256, BIOS @ 0x????????/131072
    [ 24.888] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 24.888] (II) "extmod" will be loaded by default.
    [ 24.888] (II) "dbe" will be loaded by default.
    [ 24.888] (II) "glx" will be loaded by default.
    [ 24.888] (II) "record" will be loaded by default.
    [ 24.888] (II) "dri" will be loaded by default.
    [ 24.888] (II) "dri2" will be loaded by default.
    [ 24.888] (II) LoadModule: "extmod"
    [ 24.888] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 24.888] (II) Module extmod: vendor="X.Org Foundation"
    [ 24.888] compiled for 1.8.1.902, module version = 1.0.0
    [ 24.888] Module class: X.Org Server Extension
    [ 24.888] ABI class: X.Org Server Extension, version 3.0
    [ 24.888] (II) Loading extension MIT-SCREEN-SAVER
    [ 24.888] (II) Loading extension XFree86-VidModeExtension
    [ 24.888] (II) Loading extension XFree86-DGA
    [ 24.888] (II) Loading extension DPMS
    [ 24.888] (II) Loading extension XVideo
    [ 24.888] (II) Loading extension XVideo-MotionCompensation
    [ 24.888] (II) Loading extension X-Resource
    [ 24.888] (II) LoadModule: "dbe"
    [ 24.888] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 24.888] (II) Module dbe: vendor="X.Org Foundation"
    [ 24.888] compiled for 1.8.1.902, module version = 1.0.0
    [ 24.888] Module class: X.Org Server Extension
    [ 24.889] ABI class: X.Org Server Extension, version 3.0
    [ 24.889] (II) Loading extension DOUBLE-BUFFER
    [ 24.889] (II) LoadModule: "glx"
    [ 24.889] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 24.889] (II) Module glx: vendor="FireGL - ATI Technologies Inc."
    [ 24.889] compiled for 7.5.0, module version = 1.0.0
    [ 24.889] (II) Loading extension GLX
    [ 24.889] (II) LoadModule: "record"
    [ 24.889] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 24.889] (II) Module record: vendor="X.Org Foundation"
    [ 24.889] compiled for 1.8.1.902, module version = 1.13.0
    [ 24.889] Module class: X.Org Server Extension
    [ 24.889] ABI class: X.Org Server Extension, version 3.0
    [ 24.889] (II) Loading extension RECORD
    [ 24.889] (II) LoadModule: "dri"
    [ 24.889] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 24.889] (II) Module dri: vendor="X.Org Foundation"
    [ 24.889] compiled for 1.8.1.902, module version = 1.0.0
    [ 24.889] ABI class: X.Org Server Extension, version 3.0
    [ 24.889] (II) Loading extension XFree86-DRI
    [ 24.889] (II) LoadModule: "dri2"
    [ 24.889] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 24.889] (II) Module dri2: vendor="X.Org Foundation"
    [ 24.889] compiled for 1.8.1.902, module version = 1.2.0
    [ 24.889] ABI class: X.Org Server Extension, version 3.0
    [ 24.889] (II) Loading extension DRI2
    [ 24.890] (II) LoadModule: "fglrx"
    [ 24.890] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 24.898] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    [ 24.898] compiled for 1.7.1, module version = 8.74.4
    [ 24.898] Module class: X.Org Video Driver
    [ 24.898] (II) Loading sub module "fglrxdrm"
    [ 24.899] (II) LoadModule: "fglrxdrm"
    [ 24.899] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 24.899] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    [ 24.899] compiled for 1.7.1, module version = 8.74.4
    [ 24.899] (II) ATI Proprietary Linux Driver Version Identifier:8.74.4
    [ 24.899] (II) ATI Proprietary Linux Driver Release Identifier: 8.741
    [ 24.899] (II) ATI Proprietary Linux Driver Build Date: May 27 2010 12:52:57
    [ 24.899] (--) using VT number 7
    [ 24.900] (II) Primary Device is: PCI 01@00:00:0
    [ 24.900] (WW) Falling back to old probe method for fglrx
    [ 24.904] (II) Loading PCS database from /etc/ati/amdpcsdb
    [ 24.904] (--) Chipset Supported AMD Graphics Processor (0x9581) found
    [ 24.905] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 24.905] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 24.905] (II) AMD Video driver is signed
    [ 24.905] (II) fglrx(0): pEnt->device->identifier=0x1dcbc70
    [ 24.905] (II) fglrx(0): === [atiddxPreInit] === begin
    [ 24.905] (II) Loading sub module "vgahw"
    [ 24.905] (II) LoadModule: "vgahw"
    [ 24.905] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 24.905] (II) Module vgahw: vendor="X.Org Foundation"
    [ 24.905] compiled for 1.8.1.902, module version = 0.1.0
    [ 24.905] ABI class: X.Org Video Driver, version 7.0
    [ 24.905] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 24.905] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 24.905] (==) fglrx(0): Default visual is TrueColor
    [ 24.905] (**) fglrx(0): Option "DPMS" "true"
    [ 24.905] (==) fglrx(0): RGB weight 888
    [ 24.905] (II) fglrx(0): Using 8 bits per RGB
    [ 24.905] (==) fglrx(0): Buffer Tiling is ON
    [ 24.905] (II) Loading sub module "fglrxdrm"
    [ 24.905] (II) LoadModule: "fglrxdrm"
    [ 24.906] (II) Reloading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 24.907] ukiDynamicMajor: found major device number 253
    [ 24.907] ukiDynamicMajor: found major device number 253
    [ 24.907] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 24.907] ukiOpenDevice: node name is /dev/ati/card0
    [ 24.907] ukiOpenDevice: open result is 10, (OK)
    [ 24.907] ukiOpenByBusid: ukiOpenMinor returns 10
    [ 24.907] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 24.907] (==) fglrx(0): NoAccel = NO
    [ 24.907] (==) fglrx(0): ATI 2D Acceleration Architecture enabled
    [ 24.907] (--) fglrx(0): Chipset: "ATI Mobility Radeon HD 2600" (Chipset = 0x9581)
    [ 24.907] (--) fglrx(0): (PciSubVendor = 0x103c, PciSubDevice = 0x30c5)
    [ 24.907] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
    [ 24.907] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
    [ 24.907] (--) fglrx(0): MMIO registers at 0xe4400000
    [ 24.907] (--) fglrx(0): I/O port at 0x00004000
    [ 24.907] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 24.907] (II) fglrx(0): AC Adapter is used
    [ 24.909] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    [ 25.033] (II) Loading sub module "vbe"
    [ 25.033] (II) LoadModule: "vbe"
    [ 25.033] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 25.033] (II) Module vbe: vendor="X.Org Foundation"
    [ 25.033] compiled for 1.8.1.902, module version = 1.1.0
    [ 25.033] ABI class: X.Org Video Driver, version 7.0
    [ 25.033] (II) fglrx(0): VESA BIOS detected
    [ 25.033] (II) fglrx(0): VESA VBE Version 3.0
    [ 25.033] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
    [ 25.033] (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
    [ 25.033] (II) fglrx(0): VESA VBE OEM Software Rev: 10.56
    [ 25.033] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc.
    [ 25.033] (II) fglrx(0): VESA VBE OEM Product: M76M
    [ 25.033] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    [ 25.063] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
    [ 25.063] (--) fglrx(0): Video RAM: 262144 kByte, Type: DDR3
    [ 25.063] (II) fglrx(0): PCIE card detected
    [ 25.063] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 25.063] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 25.065] (II) fglrx(0): Using adapter: 1:0.0.
    [ 25.097] (II) fglrx(0): [FB] MC range(MCFBBase = 0xc0000000, MCFBSize = 0x10000000)
    [ 25.129] (II) fglrx(0): Interrupt handler installed at IRQ 33.
    [ 25.129] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 25.129] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 25.129] (==) fglrx(0): Center Mode is disabled
    [ 25.129] (II) Loading sub module "fb"
    [ 25.129] (II) LoadModule: "fb"
    [ 25.129] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 25.129] (II) Module fb: vendor="X.Org Foundation"
    [ 25.129] compiled for 1.8.1.902, module version = 1.0.0
    [ 25.129] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 25.129] (II) Loading sub module "ddc"
    [ 25.129] (II) LoadModule: "ddc"
    [ 25.129] (II) Module "ddc" already built-in
    [ 25.395] (II) fglrx(0): Finished Initialize PPLIB!
    [ 25.397] (II) Loading sub module "ddc"
    [ 25.397] (II) LoadModule: "ddc"
    [ 25.397] (II) Module "ddc" already built-in
    [ 25.397] (II) fglrx(0): Connected Display0: LCD on internal LVDS [lvds]
    [ 25.397] (II) fglrx(0): Display0 EDID data ---------------------------
    [ 25.397] (II) fglrx(0): Manufacturer: CMO Model: 1520 Serial#: 0
    [ 25.397] (II) fglrx(0): Year: 1990 Week: 0
    [ 25.397] (II) fglrx(0): EDID Version: 1.3
    [ 25.397] (II) fglrx(0): Digital Display Input
    [ 25.397] (II) fglrx(0): Max Image Size [cm]: horiz.: 33 vert.: 20
    [ 25.397] (II) fglrx(0): Gamma: 2.20
    [ 25.397] (II) fglrx(0): No DPMS capabilities specified
    [ 25.397] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 25.397] (II) fglrx(0): First detailed timing is preferred mode
    [ 25.397] (II) fglrx(0): redX: 0.626 redY: 0.354 greenX: 0.294 greenY: 0.589
    [ 25.397] (II) fglrx(0): blueX: 0.144 blueY: 0.097 whiteX: 0.309 whiteY: 0.329
    [ 25.397] (II) fglrx(0): Manufacturer's mask: 0
    [ 25.397] (II) fglrx(0): Supported detailed timing:
    [ 25.397] (II) fglrx(0): clock: 131.5 MHz Image Size: 331 x 207 mm
    [ 25.397] (II) fglrx(0): h_active: 1680 h_sync: 1771 h_sync_end 1831 h_blank_end 1978 h_border: 0
    [ 25.397] (II) fglrx(0): v_active: 1050 v_sync: 1056 v_sync_end 1068 v_blanking: 1108 v_border: 0
    [ 25.397] (II) fglrx(0): N154Z1-L01
    [ 25.397] (II) fglrx(0): CMO
    [ 25.397] (II) fglrx(0): N154Z1-L01
    [ 25.397] (II) fglrx(0): EDID (in hex):
    [ 25.397] (II) fglrx(0): 00ffffffffffff000daf201500000000
    [ 25.397] (II) fglrx(0): 00000103802114780a77f1a05a4b9624
    [ 25.397] (II) fglrx(0): 184f5400000001010101010101010101
    [ 25.397] (II) fglrx(0): 0101010101015e33902a611a3a405b3c
    [ 25.397] (II) fglrx(0): 6c004bcf10000018000000fe004e3135
    [ 25.397] (II) fglrx(0): 345a312d4c30310a2020000000fe0043
    [ 25.397] (II) fglrx(0): 4d4f0a202020202020202020000000fe
    [ 25.397] (II) fglrx(0): 004e3135345a312d4c30310a202000f2
    [ 25.397] (II) fglrx(0): End of Display0 EDID data --------------------
    [ 25.397] (II) fglrx(0): Output LVDS using monitor section aticonfig-Monitor[0]-0
    [ 25.397] (II) fglrx(0): Output DFP1 has no monitor section
    [ 25.397] (II) fglrx(0): Output DFP2 has no monitor section
    [ 25.397] (II) fglrx(0): Output CRT1 has no monitor section
    [ 25.397] (II) fglrx(0): Output TV has no monitor section
    [ 25.397] (II) fglrx(0): Output COMPONENT_VIDEO has no monitor section
    [ 25.552] (II) fglrx(0): EDID vendor "CMO", prod id 5408
    [ 25.552] (II) fglrx(0): Printing DDC gathered Modelines:
    [ 25.553] (II) fglrx(0): Modeline "1680x1050"x0.0 131.50 1680 1771 1831 1978 1050 1056 1068 1108 -hsync -vsync (66.5 kHz)
    [ 25.553] (II) fglrx(0): Output LVDS connected
    [ 25.553] (II) fglrx(0): Output DFP1 disconnected
    [ 25.553] (II) fglrx(0): Output DFP2 disconnected
    [ 25.553] (II) fglrx(0): Output CRT1 disconnected
    [ 25.553] (II) fglrx(0): Output TV disconnected
    [ 25.553] (II) fglrx(0): Output COMPONENT_VIDEO disconnected
    [ 25.553] (II) fglrx(0): Using exact sizes for initial modes
    [ 25.553] (II) fglrx(0): Output LVDS using initial mode 1680x1050
    [ 25.553] (II) fglrx(0): Display dimensions: (330, 200) mm
    [ 25.553] (II) fglrx(0): DPI set to (129, 133)
    [ 25.553] (II) fglrx(0): Adapter ATI Mobility Radeon HD 2600 has 2 configurable heads and 1 displays connected.
    [ 25.553] (==) fglrx(0): QBS disabled
    [ 25.553] (==) fglrx(0): PseudoColor visuals disabled
    [ 25.553] (II) Loading sub module "ramdac"
    [ 25.553] (II) LoadModule: "ramdac"
    [ 25.553] (II) Module "ramdac" already built-in
    [ 25.553] (==) fglrx(0): NoDRI = NO
    [ 25.553] (==) fglrx(0): Capabilities: 0x00000000
    [ 25.553] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 25.553] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 25.553] (==) fglrx(0): UseFastTLS=0
    [ 25.553] (==) fglrx(0): BlockSignalsOnLock=1
    [ 25.553] (--) Depth 24 pixmap format is 32 bpp
    [ 25.553] (II) Loading extension ATIFGLRXDRI
    [ 25.553] (II) fglrx(0): doing swlDriScreenInit
    [ 25.553] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 25.553] ukiDynamicMajor: found major device number 253
    [ 25.553] ukiDynamicMajor: found major device number 253
    [ 25.553] ukiDynamicMajor: found major device number 253
    [ 25.553] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 25.553] ukiOpenDevice: node name is /dev/ati/card0
    [ 25.553] ukiOpenDevice: open result is 15, (OK)
    [ 25.553] ukiOpenByBusid: ukiOpenMinor returns 15
    [ 25.553] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 25.553] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 25.553] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
    [ 25.553] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x10000
    [ 25.553] (II) fglrx(0): [uki] mapped SAREA 0x10000 to 0x7f2043e35000
    [ 25.553] (II) fglrx(0): [uki] framebuffer handle = 0x11000
    [ 25.554] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 25.554] (II) fglrx(0): swlDriScreenInit done
    [ 25.554] (II) fglrx(0): Kernel Module Version Information:
    [ 25.554] (II) fglrx(0): Name: fglrx
    [ 25.554] (II) fglrx(0): Version: 8.74.4
    [ 25.554] (II) fglrx(0): Date: May 27 2010
    [ 25.554] (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    [ 25.554] (II) fglrx(0): Kernel Module version matches driver.
    [ 25.554] (II) fglrx(0): Kernel Module Build Time Information:
    [ 25.554] (II) fglrx(0): Build-Kernel UTS_RELEASE: 2.6.34-ARCH
    [ 25.554] (II) fglrx(0): Build-Kernel MODVERSIONS: no
    [ 25.554] (II) fglrx(0): Build-Kernel __SMP__: no
    [ 25.554] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 25.554] (II) fglrx(0): [uki] register handle = 0x00012000
    [ 25.571] (II) fglrx(0): Display width adjusted to to 1792 due to alignment constraints
    [ 25.571] (II) fglrx(0): DRI initialization successfull!
    [ 25.571] (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x010a0000
    [ 25.571] (II) fglrx(0): FBMM initialized for area (0,0)-(1792,2432)
    [ 25.571] (II) fglrx(0): FBMM auto alloc for area (0,0)-(1792,1792) (front color buffer - assumption)
    [ 25.571] (II) fglrx(0): Largest offscreen area available: 1792 x 640
    [ 25.571] (==) fglrx(0): Backing store disabled
    [ 25.571] (II) Loading extension FGLRXEXTENSION
    [ 25.572] (**) fglrx(0): DPMS enabled
    [ 25.572] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 25.572] (**) fglrx(0): Textured Video is enabled.
    [ 25.572] (II) LoadModule: "glesx"
    [ 25.572] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 25.572] (II) Module glesx: vendor="X.Org Foundation"
    [ 25.572] compiled for 1.7.1, module version = 1.0.0
    [ 25.573] (II) Loading extension GLESX
    [ 25.573] (II) fglrx(0): GLESX enableFlags = 592
    [ 25.573] (II) fglrx(0): GLESX is enabled
    [ 25.573] (II) fglrx(0): Acceleration enabled
    [ 25.573] (II) LoadModule: "amdxmm"
    [ 25.573] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 25.573] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 25.573] compiled for 1.7.1, module version = 1.0.0
    [ 25.573] (II) Loading extension AMDXVOPL
    [ 25.575] (II) fglrx(0): UVD2 feature is available
    [ 25.577] (II) fglrx(0): Enable composite support successfully
    [ 25.577] (WW) fglrx(0): Option "VendorName" is not used
    [ 25.577] (WW) fglrx(0): Option "ModelName" is not used
    [ 25.577] (II) fglrx(0): X context handle = 0x1
    [ 25.577] (II) fglrx(0): [DRI] installation complete
    [ 25.577] (==) fglrx(0): Silken mouse enabled
    [ 25.577] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 25.577] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
    [ 25.577] (II) fglrx(0): 'LVDS LCD' ConnectorType, abstracted as 'Panel'
    [ 25.577] (II) fglrx(0): 'eDP LCD' ConnectorType, abstracted as 'Panel'
    [ 25.579] (II) fglrx(0): Cannot get TV Format. Set all TV geometry value to zero!
    [ 25.579] (II) fglrx(0): Cannot set TV horizontal size.
    [ 25.579] (II) fglrx(0): Cannot get TV Format for trying to adjust horizontal position after horizontal size changed.
    [ 25.579] (II) fglrx(0): Cannot set TV horizontal position.
    [ 25.579] (II) fglrx(0): Cannot set TV vertical position.
    [ 25.614] (--) RandR disabled
    [ 25.614] (II) Initializing built-in extension Generic Event Extension
    [ 25.614] (II) Initializing built-in extension SHAPE
    [ 25.614] (II) Initializing built-in extension MIT-SHM
    [ 25.614] (II) Initializing built-in extension XInputExtension
    [ 25.614] (II) Initializing built-in extension XTEST
    [ 25.614] (II) Initializing built-in extension BIG-REQUESTS
    [ 25.614] (II) Initializing built-in extension SYNC
    [ 25.614] (II) Initializing built-in extension XKEYBOARD
    [ 25.614] (II) Initializing built-in extension XC-MISC
    [ 25.614] (II) Initializing built-in extension SECURITY
    [ 25.614] (II) Initializing built-in extension XINERAMA
    [ 25.614] (II) Initializing built-in extension XFIXES
    [ 25.614] (II) Initializing built-in extension RENDER
    [ 25.614] (II) Initializing built-in extension RANDR
    [ 25.614] (II) Initializing built-in extension COMPOSITE
    [ 25.614] (II) Initializing built-in extension DAMAGE
    [ 25.616] ukiDynamicMajor: found major device number 253
    [ 25.616] ukiDynamicMajor: found major device number 253
    [ 25.616] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 25.616] ukiOpenDevice: node name is /dev/ati/card0
    [ 25.616] ukiOpenDevice: open result is 16, (OK)
    [ 25.616] ukiOpenByBusid: ukiOpenMinor returns 16
    [ 25.616] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 25.661]
    Backtrace:
    [ 25.661] 0: /usr/bin/Xorg (xorg_backtrace+0x28) [0x498588]
    [ 25.661] 1: /usr/bin/Xorg (0x400000+0x672d9) [0x4672d9]
    [ 25.661] 2: /lib/libpthread.so.0 (0x7f2043180000+0xf1c0) [0x7f204318f1c0]
    [ 25.661] Segmentation fault at address (nil)
    [ 25.661]
    Fatal server error:
    [ 25.661] Caught signal 11 (Segmentation fault). Server aborting
    [ 25.661]
    [ 25.661]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 25.661] Please also check the log file at "/var/log/Xorg.1.log" for additional information.
    [ 25.661]
    [ 25.661] (II) fglrx(0): Backup framebuffer data.
    [ 25.661] (EE) fglrx(0): total backup size zero
    [ 25.661] (II) fglrx(0): Backup complete.
    Any help would be greatly appreciated.

    skottish wrote:
    Welcome to the forums.
    Please don't post general issues in this sub-forum. Moving...
    Oops, my bad.
    As for my issue(s), I'm not going to bother with the proprietary driver until AMD gets their act together.

  • Can't install catalyst on windows 7 64 bit

    Hi, I'm a newbie to adobe and just got production suite which has catalyst, I had to upgrade from xp to windows 7 64 bit which was A clean Install so lost everything. I have issues with catalyst not installing at all with it saying there are errors, I see from other posts people talking about java, would this effect the install as I don't have it. Or does it sound like a software issue. I have the CDs.

    Are there any special charaters in your user name? I know that has caused issues in the past. You might need to contact Adobe support for this one.
    Chris

  • Photo Gallery thumbnails in business catalyst render in different sizes in different browsers

    Photo Gallery thumbnails in business catalyst render in different sizes in safari and chrome but are fine in firefox. What is the issue with Safari? I have tried the different algorithm options such as fill_proportional etc and firefox is the only browser that displays correctly. I thought safari was the most standards compatible browser - what's the problem here?

    Hi,
    If you have seperate XML file but with the same basic structure then you can change the XML a Spry dataset refers to and regenerate the spry region without reloading the full page.
    So on my photo gallery page I can change the album the photos are shown from via the seturl sprydata function as below.  dsPhotos being my Spry dataset that points to the relevant XML dataset with my image references and captions etc.  My XML is actually dynamically generated from Picasa RSS feeds (and RSS feeds are XML) but the principle will be the same with your static XML.
    First I add an event listener for when someone clicks on an album (the li tag within my div with the id "albums" holds a photo and title for each album.)
    function Albums()
    var myalbums = Spry.$$("#albums li", "TabbedPanels1")
    var rows = dsAlbums.getData();
    var setListener = function( element, value )
      Spry.Utils.addEventListener( element, "click", function(){ showAlbum( value ); },false );
    for( var i = 0, length = myalbums.length; i < length; i++ )
      setListener( myalbums[i], i );
    Then this is the code which changes the photo album to be shown. (when the user clicks the relevant album)
    function showAlbum(i)
    pauseShow();
    pImage = 'No';
    var rows = dsAlbums.getData();
    var albumid = rows[i]["albumid"];
    var url = "xml/PicasaAphotoFeed.asp?albumid=" + albumid;
    dsPhotos.setURL(url);
    dsPhotos.loadData();
    var rowcount = dsAlbums.getRowCount() - 1;
    var nextalbum;
    var navnext;
    var n;
    The page is here www.thehmc.co.uk/photo5.html is you want to see it in context.
    In your case showAlbum would switch between Frank.xml or Wolfie.xml depending on how you decide to name your xml datasets.
    Regards
    Phil

  • Help with code for inserting horizontal scroll bar in photo gallery in Business Catalyst site?

    Hi,
    I am using Business Catalyst and Dreamweaver to create a trial site.
    I am not sure if this is the correct forum to post this request but anyway I have inserted a photo gallery module at the bottom of the sidebar in the homepage of my test site.
    Can anyone advise on whether jquery or any other code can be inserted into the page or module code that will replace the "next" hyperlink below the first 4 photos with a horizontal scroll bar at bottom of the gallery so users can just scroll through all 12 images ?
    Kind Regards, Matt.
    http://craftime-bs6.businesscatalyst.com/

    Alyssa,
    Have you tried putting this rule back as it was originally:
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto; /*was 9px*/
        color: #EF9CCF;
        background-color: #FFF;
    That is, changing your 9px back to auto.
    And giving  us a link (as you did) is much better than printing out the code for us! Thanks!
    Beth

  • How do you reference a valueObject located in main to a custom component created in Catalyst?

    Hello,
    I have been working with the Catalyst Beta 2 / Flash Builder beta trying to create a photogallery and have hit a little bit of a snag, try as I might I can't seem to find the answer anywhere. I am still new to Flex so please excuse me if this is a basic question, I have been trying to understand more about Flex to make my designs in Catalyst better.
    I found this video on Adobe TV: http://tv.adobe.com/watch/rich-internet-applications-101/ria-stepbystep-16-binding-a-data- service-to-flash-builder-components/
    It's wonderful and I have the datalist I created in Catalyst working with the XML file I generated but I designed my little photogallery a bit diffrent, I created a Custom Component in Catalyst so that when you click an item on the DataList it pop's up a little screen with a larger photo in on it, rather then having an image in the main application. Now my problem seems to be that I can't refrence the valueObject I created with the wizard as it's in my Main.mxml file, is there a way to refrence it from my Custom Component so the larger image will display? Is there a way to let the component know which item on the dataList in the main application is selected and display the correct image?
    I should also say I really enjoy working with the Beta for both Flash Builder / Catalyst, thanks for the hard work!
    Thanks for the help,
    Chris

    I am afraid you cannot bind to static properties in Windows Store Apps. It is simply not supported.
    You could create a proxy class that exposes the static command property and bind to this property of an instance of the proxy object:
    http://stackoverflow.com/questions/14186175/bind-to-a-static-field-in-windows-8-xaml
    http://stackoverflow.com/questions/4708711/how-can-i-use-the-xstatic-extension-for-phone7-silverlight-apps
    You will of course have to create an instance of the proxy object. There is no way around this.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question.

  • The difference between VTP server and transparent mode on Catalyst Switch.

    Hello 
    I have a question about the difference between VTP server mode and VTP transparent mode on general catalyst switch.
    Basically VTP server mode can create and modify VLAN configuration but  actually there is not any VLAN configuration through running-config, is it true?  When I checked it on Cat3550, certainly there is not VLAN configuration on VTP server mode. But VTP transparent can create VLAN and configuration but does not synchronize with other switch VLAN status. I appreciate any related information and reason of the VTP server mode specification, thank you very much.
    [VTP Transparent mode]
    3550#sh vtp status
    VTP Version                     : 2
    Configuration Revision          : 0
    Maximum VLANs supported locally : 1005
    Number of existing VLANs        : 27
    VTP Operating Mode              : Transparent
    VTP Domain Name                 :
    VTP Pruning Mode                : Disabled
    VTP V2 Mode                     : Disabled
    VTP Traps Generation            : Disabled
    *omit
    3550#
    3550#sh run
    Building configuration...
    *omit
    vlan 99
     name TEST-VLAN
    [VTP Server mode]
    3550#sh vtp status
    VTP Version                     : 2
    Configuration Revision          : 0
    Maximum VLANs supported locally : 1005
    Number of existing VLANs        : 27
    VTP Operating Mode              : Server
    VTP Domain Name                 :
    VTP Pruning Mode                : Disabled
    VTP V2 Mode                     : Disabled
    VTP Traps Generation            : Disabled
    *omit
    3550#
    3550#sh run
    Building configuration...
    *no VLAN like above configuration on VTP transparent mode.
    Best Regards,
    Masanobu Hiyoshi

    Hi mhiyoshi,
    3550#sh vtp status
    VTP Version                     : 2
    Configuration Revision          : 0
    Maximum VLANs supported locally : 1005
    Number of existing VLANs        : 27
    VTP Operating Mode              : Transparent
    VTP Domain Name                 :
    VTP Pruning Mode                : Disabled
    VTP V2 Mode                     : Disabled
    VTP Traps Generation            : Disabled
    *omit
    3550#
    3550#sh run
    Building configuration...
    *omit
    vlan 99
     name TEST-VLAN
    The above out put indicates that Vlan is created and then mode changed to transparent. i.e why revision no is 0.
    3550#sh vtp status
    VTP Version                     : 2
    Configuration Revision          : 0
    Maximum VLANs supported locally : 1005
    Number of existing VLANs        : 27
    VTP Operating Mode              : Server
    VTP Domain Name                 :
    VTP Pruning Mode                : Disabled
    VTP V2 Mode                     : Disabled
    VTP Traps Generation            : Disabled
    *omit
    3550#
    3550#sh run
    Building configuration...
    *no VLAN like above configuration on VTP transparent mode.
    This indicates that vlan never created in server mode nor learnt from another switch as revision no is 0

  • What is up with the Help and Support Section for Business Catalyst?

    It has been very difficult for my customers and myself to access the help and support section of the site for Business Catalyst issues as we are constantly diverted to non-related Abode issues. The portal for support on Business Catalyst issue needs to be ISOLATED from ADOBE's main support section. It is bad enough that there are so many issues to deal with, but to add all the issues for all the applications is simply impossible to decipher and discover a solution.
    Before the Adobe integration on the Cloud services it was much more simpler, wiith a much more efficient and cleaner layout, now every page looks like its generated by a bot that doesn't understand what I am looking for. Even the actual URL of the page is hidden so I can't even book mark it without opening the frame in a new window. My clients will not know how to do that.
    Simplify plesase!
    Teejay

    Teejay,
    Yes we are looking into this very thing and hope to improve this very soon.  Not only making things a bit clearer but also a central location for all your BC support needs. 
    Kind regards,
    -Sidney

  • I am registered for creative cloud how do i use Buissiness Catalyst to regist my website?

    I am registered with Adobe Cloud services, it tells me on the cloude website with my subscription i can register up to 5 websites using Buissiness Catalyst. How do do this?

    Hi super waffle,
    does that here help you any? http://tv.adobe.com/watch/learn-creative-cloud/publishing-and-managing-a-website-with-crea tive-cloud/
    Nicole - BCGurus.com

  • NAT IN CATALYST 6509-HOW TO DO IT?

    Hello friends,
    The LAN CAMPUS is conformed by more than 20 VLANS and all the PCs can go to Internet.
    Now I have a new network cloud and I have to attach that network into my campus.
    To do that, I have a Public IP Pool to do translation.
    But I just need that some IPs (from diferent Vlans)could go to the new Network while keep having connecivity to Internet.
    So my Question is:
    I am not interested in perform Static NAT.
    I wonder if I can NAT a group of IPs (in different subnets) with the Public POOL. i.e: group to group.
    I have a PIX 525. I could do it in that PIX but I think It could be better to do it in the Catalyst 6509. (Because the Pix CPU percentage is High-and sometimes I have problems)
    How can I do NAT in C 6509?
    I am attaching a referecial picture.

    Hi bosalaza:
    yes, I think ACL will help so much...
    Look I need to translate only this IPs:
    172.16.8.56
    172.16.24.85
    172.16.33.95
    172.16.86.56
    172.16.125.81
    172.16.157.89
    To this Public IPs:
    200.xx.45.170
    200.xx.45.171
    200.xx.45.172
    200.xx.45.173
    200.xx.45.174
    200.xx.45.175
    But whitout Static NAT.
    And do it but in the C6509.
    I have no enough experience to perform NAt in C6509.
    Thanks in advance.

  • How do I link my Creative Cloud account with Business Catalyst Web Hosting service?

    Hello,
    I'm having difficulty understanding how to access the Business Catalyst service. I have attempted to log in directly to businesscatalyst.com/admin but continue to receive an error login message stating that my username and password are not recognized. I was not able to create a new business catalyst website via Dreamweaver either, despite having successfully logged into my Adobe Cloud account.
    The only way I was able to set-up a website for use with Business Catalyst was by logging in via http://www.adobe.com/products/business-catalyst.html, and pressing the "try now" button, which allowed me to create a demo site. This also allowed me to log into BC, but when I attempted to upgrade the site from a trial to the webbasic service, I am asked for a payment method.
    I understand that the creative cloud service includes basic web hosting for up to 5 sites and should work seamlessly with DW or Muse, or using the InContext editing options provided via browser, but I am unable to truly access any of this content. Am I doing something wrong here?
    Thank you

    Please approach our support and supply them with your Adobe ID and the site URL you want to take live and they will do this for you in couple of minutes.
    Cheers,
    -m

Maybe you are looking for

  • Navigational Attribute in Reporting

    Hi experts, Suppose I have created one attribute as navigational attribute in my infoobject characteristic.This Characteristic is in Infocube. Now after executing query on this infocube,Can I drilldown from thic characteristic to Navigational attribu

  • How can i format my device to get sound on my dv4-2145dx?

    i somehow changed my audio settings to 24 bit 48000 hz on my laptop and now it wont let me play any sounds when i try to test the sounds or change back to default settings a message pops up saying "this format is not compatible for the device" im not

  • Dead firewire port

    Seems my firewire port suddenly died. I tried plugging in my iSight and it's not detected, and I tried a firewire hard drive as well, and that is not detected. Any steps I should try on my own before contacting Apple for APP repair?

  • Pages not opening documents

    I have a brand new iMac (one week old) that won't save or share current documents.  I just created the doc, went to save, and the reply I got was "The file Untitled 2.pages couldn't be opened."  What?! Then I tried to share the file and I got the sam

  • How to view score of one track while recording another.

    I want to record audio on one track. I want to read the notes and chords from another track while recording. ( I want to use the previously recorded track only for providing me with the score ) I would very much prefer to have Logic chase the score s