VideoSampleAccess unusable

videoSampleAccess set in the Application.xml or on the client
object works randomly for me with Flash CS4 and FMS 3.0.1 Sometimes
I can call BitmapData.draw a few times before I get Error #2123,
sometimes the first call throws that error and stops the video.
Does anybody know how to make it work consistently?

Here we exchange some processing in spite of performance, direct path load bypass much of the steps compared with regular insert/update.
Basically, data going in is passed to the direct path API engine, gives some format, builds blocks and index keys. Those blocks are directly writen to the DB.
Recommend SQL*Loader concepts (pages 6-9 and 11-4), from the Oracle Database Utilities manual.
Regards
Ignacio
http://oracledisect.blogspot.com

Similar Messages

  • Unused packages in import statement

    Guyz,
    Can anyone throw some light on this ?
    Does using a lot of unused packages in import statement of a jsp affects its performance in terms of page loading ?
    Thanks.

    I have just found the answer for my question in another forum.
    Please visit:
    http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f=15&t=000240
    Thanks.

  • UNUSED EXISTING INDEXES / Index usage

    We are using CRM 2007, Netweaver 7.0 with DB2 UDB v9.1 fixpack4 on AIX.
    Is there a way to find out  UNUSED EXISTING INDEXES for tables ? We have close 12 indexes on the crmd_order_index table and want to find out if some of them can safely deleted. Is there any way to monitor index usage in SAP ? Is there any toold to aid this ?
    Pls advise.
    thank you
    regards
    Laxmi

    Laxmi,
    I am not aware of any such tools with DB2 9.1.  However, "last_used" columns are being added to various catalog tables in DB2 9.7.  Below is an excerpt from a slide presented in the  TLU2008A "DB2 LUW V9.7 Cobra u2013 Storage is Charmed" session.
    The last reference time of an object will now be maintained in the LASTUSED column of
    the corresponding catalog table for the object
    u2013 SYSCAT.INDEXES.LASTUSED (prior to V9.7 db2pd u2013tcbstats indexes)
    u2013 SYSCAT.TABLES.LASTUSED
    u2013 SYSCAT.DATAPARTITIONS.LASTUSED
    u2013 SYSCAT.PACKAGE.LASTUSED
    The LASTUSED column is of type DATE (default value is 1/1/0001)
    Use Cases:
    u2013 Detach table partitions that are no longer actively used (esp. when not partitioned by time)
    u2013 Determine inactive or infrequently used indexes
    u2013 Easily identify tables which are no longer in use
    u2013 Get rid of unused packages
    The presenter said the code will begin populating these columns in an upcoming fixpack.
    Regards,
    Rick

  • Index issue with or and between when we set one partition index to unusable

    Need to understand why optimizer unable to use index in case of "OR" whenn we set one partition index to unusable, the same query with between uses index.
    “OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
    1. Created local index on partitioned table
    2. ndex partition t_dec_2009 set to unusable
    -- Partitioned local Index behavior with “OR” and with “BETWEEN”
    SQL> CREATE TABLE t (
      2    id NUMBER NOT NULL,
      3    d DATE NOT NULL,
      4    n NUMBER NOT NULL,
      5    pad VARCHAR2(4000) NOT NULL
      6  )
      7  PARTITION BY RANGE (d) (
      8    PARTITION t_jan_2009 VALUES LESS THAN (to_date('2009-02-01','yyyy-mm-dd')),
      9    PARTITION t_feb_2009 VALUES LESS THAN (to_date('2009-03-01','yyyy-mm-dd')),
    10    PARTITION t_mar_2009 VALUES LESS THAN (to_date('2009-04-01','yyyy-mm-dd')),
    11    PARTITION t_apr_2009 VALUES LESS THAN (to_date('2009-05-01','yyyy-mm-dd')),
    12    PARTITION t_may_2009 VALUES LESS THAN (to_date('2009-06-01','yyyy-mm-dd')),
    13    PARTITION t_jun_2009 VALUES LESS THAN (to_date('2009-07-01','yyyy-mm-dd')),
    14    PARTITION t_jul_2009 VALUES LESS THAN (to_date('2009-08-01','yyyy-mm-dd')),
    15    PARTITION t_aug_2009 VALUES LESS THAN (to_date('2009-09-01','yyyy-mm-dd')),
    16    PARTITION t_sep_2009 VALUES LESS THAN (to_date('2009-10-01','yyyy-mm-dd')),
    17    PARTITION t_oct_2009 VALUES LESS THAN (to_date('2009-11-01','yyyy-mm-dd')),
    18    PARTITION t_nov_2009 VALUES LESS THAN (to_date('2009-12-01','yyyy-mm-dd')),
    19    PARTITION t_dec_2009 VALUES LESS THAN (to_date('2010-01-01','yyyy-mm-dd'))
    20  );
    SQL> INSERT INTO t
      2  SELECT rownum, to_date('2009-01-01','yyyy-mm-dd')+rownum/274, mod(rownum,11), rpad('*',100,'*')
      3  FROM dual
      4  CONNECT BY level <= 100000;
    SQL> CREATE INDEX i ON t (d) LOCAL;
    SQL> execute dbms_stats.gather_table_stats(user,'T')
    -- Mark partition t_dec_2009 to unusable:
    SQL> ALTER INDEX i MODIFY PARTITION t_dec_2009 UNUSABLE;
    --- Let’s check whether the usable index partition can be used to apply a restriction: BETWEEN
    SQL> SELECT count(d)
        FROM t
        WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
                    AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
    SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
    | Id  | Operation               | Name | Pstart| Pstop |
    |   0 | SELECT STATEMENT        |      |       |       |
    |   1 |  SORT AGGREGATE         |      |       |       |
    |   2 |   PARTITION RANGE SINGLE|      |    12 |    12 |
    |   3 |    INDEX RANGE SCAN     | I    |    12 |    12 |
    --- Let’s check whether the usable index partition can be used to apply a restriction: OR
    SQL> SELECT count(d)
        FROM t
        WHERE
        (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'))
        or
        (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'))
    SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
    | Id  | Operation           | Name | Pstart| Pstop |
    |   0 | SELECT STATEMENT    |      |       |       |
    |   1 |  SORT AGGREGATE     |      |       |       |
    |   2 |   PARTITION RANGE OR|      |KEY(OR)|KEY(OR)|
    |   3 |    TABLE ACCESS FULL| T    |KEY(OR)|KEY(OR)|
    ----------------------------------------------------“OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
    Regards,
    Sachin B.

    Hi,
    What is your database version????
    I ran the same test and optimizer was able to pick the index for both the queries.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>
    SQL> set autotrace traceonly exp
    SQL>
    SQL>
    SQL>  SELECT count(d)
      2  FROM t
      3  WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
      4              AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
    Execution Plan
    Plan hash value: 2381380216
    | Id  | Operation                 | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT          |      |     1 |     8 |    25   (0)| 00:00:01 |       |       |
    |   1 |  SORT AGGREGATE           |      |     1 |     8 |            |          |       |       |
    |   2 |   PARTITION RANGE ITERATOR|      |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
    |*  3 |    INDEX RANGE SCAN       | I    |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
    Predicate Information (identified by operation id):
       3 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss'))
    SQL>  SELECT count(d)
      2  FROM t
      3  WHERE
      4  (
      5  (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'
      6  or
      7  (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'
      8  );
    Execution Plan
    Plan hash value: 3795917108
    | Id  | Operation                | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT         |      |     1 |     8 |     4   (0)| 00:00:01 |       |       |
    |   1 |  SORT AGGREGATE          |      |     1 |     8 |            |          |       |       |
    |   2 |   CONCATENATION          |      |       |       |            |          |       |       |
    |   3 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
    |*  4 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
    |   5 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  6 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
    Predicate Information (identified by operation id):
       4 - access("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss'))
       6 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-01-01 23:59:59', 'syyyy-mm-dd hh24:mi:ss'))
           filter(LNNVL("D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss')) OR
                  LNNVL("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss')))
    SQL> set autotrace off
    SQL>Asif Momen
    http://momendba.blogspot.com

  • IPhone 5S GPRS/E slow / unusable

    Hi,
    A month ago I upgraded from an iPhone 4 to the iPhone 5S. Ever since I had the 5S I have noticed the GPRS / E data is extremely slow and most of the time it is unusable as pages time out or you end up giving up.
    I am on Tesco mobile in the UK (O2).
    I decided a few days ago to compare my 5S with the iPhone 4 which my wife now has and is also on the same type of contact with Tesco mobile.
    If I turn wifi off and turn off 3G/4G (Settings / Enable 3G/4G toggle) on both phones then I can see they both switch to GPRS mode. I load the same webpage on both phones together and although slow as you would expect on GPRS the iPhone 4 loads the page first while the iPhone 5S just sits there blank with the blue bar at the top initially moving then paused.
    So I contacted Apple support to ask why. After many calls reseting the phone and updating to iOS7.1, checking setting with Tesco mobile etc I still dont have a fix.
    Today I went into the Southampton Apple store, a genius lady acknowledged the issue once I showed her and straight away gave me a replacement saying it looked like hardware fault. However on testing the replacement it still had the issue. A more senior genius guy then looked at it and also saw the issue. He was suggesting that it must be my sim card so I said to them to show me an iPhone 5S with another sim card working like the iPhone4. They searched for another sim and then tried a new pay as you go O2 sim which they could not get working as it didn't seem to be activated. In the end I gave up as had already been in the store over an hour and thought as I got a replacement phone it was worth checking at home again.
    Back home though as expected I get exactly the same issue with GPRS/E not being usable.
    Does anyone else have this issue or know a fix? I also contacted a relative who also owns an iPhone 5S on vodafone and he also thought the GPRS / E is not usable compared to the iPhone 4.
    I guess my next step will be to purchase a working pay as you go sim on O2 to see if it has the same issue.
    Is this a general iPhone 5S hardware or software issue, I know must people probably are using 3G or 4G so maybe do not notice.
    Be great to hear other 5S users experience using GPRS/E.
    Thanks
    Nigel

    Hi Nigel. I was having the same issue after recently getting a new 5s operating 7.1.2  however I'm not sure it's linked to GPRS/Edge. I'm on tesco mobile so probably a similar network to you in England. The phone for the past few weeks has been performing a lot slower than my previous 5 which was performing a lot quicker and snappier. I have been searching for a solution in the forums and nothing. I think I have found a solution though and I don't know how this works but it does. I simply changed the time format to 24 hours and vola it seemed to have fixed the problem. The 5s operates as it was designed to do now. It is so much snappier and responsive now with no lagging when loading apps or switching between apps and no more slow loading blue bar while loading webpages. Im very happy with the speed of the phone now so just flagging it up as a potential solution. Hope it works for you too. Let us know if it makes a difference. I'm hoping apple bring out a fix in this because I much prefer 12 hour time format.

  • HT5312 Downloaded songs to wrong iPod. Can I stop, re-do on other iPod, get credit of unused downloads?!

    I accidentally started a download of around 25 songs on iTunes using a gift card, but did it too the wrong iPod. Is there a way too cancel the downloads and transfer the unused credit too my other iPod?
    Downloaded songs to wrong iPod. Can I stop, re-do on other iPod, get credit of unused downloads?!
    iPod touch 2nd generation iPod touch with 4.2.1 iOS, stopping iTunes, downloading midway,

    You should be able to connect the iPod to your computer's iTunes and do File > Devices > Transfer Purchases to copy them over and you can then sync them to your other iPod.

  • After updating to 10.10.2, my OpenGL applications do not work, and there are problems with window updates/refresh in App Store, and many applications, Google Chrome is unusable.

    After performing the OS X 10.10.2 update, OpenGL applications, for example Starry Night Pro fail to run, there are numerous windows update/refresh problems (incomplete refresh, remnants of window/frame borders), and some applications, for example Google Chrome are unusable, as cursor motion in the application window causes the display to flash horizontal bars in the window.
    I've tried a variety of things, including downloading the most current release of Xcode, turning on/off transparency in Accessibility, graphics switching, and a few other things, but the problem persists.
    The App Store display behaves similarly.  I am running a MacBook Pro.
    This is the output from EtreCheck:
    Problem description:
    Screen/windows corruption
    EtreCheck version: 2.1.8 (121)
    Report generated March 11, 2015 at 10:26:15 PM CDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.6 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 36
    Video Information: ℹ️
        Intel HD Graphics 4000
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 23:26:45
    Disk Information: ℹ️
        APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 748.96 GB (146.71 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 749.30 GB Online
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple iPod
        Western Digital My Book 1 TB
            EFI (disk3s1) <not mounted> : 210 MB
            WDP1 (disk3s2) /Volumes/WDP1 : 333.40 GB (9.12 GB free)
            WDP2 (disk3s3) /Volumes/WDP2 : 333.40 GB (2.55 GB free)
            WDP3 (disk3s4) /Volumes/WDP3 : 332.79 GB (94.00 GB free)
        Western Digital My Book 1140 2 TB
            EFI (disk4s1) <not mounted> : 210 MB
            2TB_1 (disk4s2) /Volumes/2TB_1 : 666.79 GB (31.36 GB free)
            2TB_2 (disk4s3) /Volumes/2TB_2 : 666.79 GB (58.76 GB free)
            2TB_3 (disk4s4) /Volumes/2TB_3 : 666.18 GB (70.41 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Logitech USB Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.1 28614 - SDK 10.7) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.1) [Click for support]
            /Library/Extensions
        [loaded]    com.epson.driver.EPSONProjectorUDAudio (1.40 - SDK 10.6) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.18 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) [Click for support]
        [not loaded]    com.Ralink.driver.RT73 (1.1.6) [Click for support]
        [not loaded]    com.beceem.BeceemAppleWiMAXAdapter (5.2.56d16) [Click for support]
        [not loaded]    com.cisco.nke.ipsec (2.0.1) [Click for support]
        [not loaded]    com.devguru.driver.DIFMCDFree (1.1.0) [Click for support]
        [not loaded]    com.devguru.driver.DIFMSerial (1.1.0) [Click for support]
        [not loaded]    com.fklt.driver (1.8.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (2.2.8) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (1.2) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (2.0.0) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.39) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBEDriver (4.70) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBLoader (4.70.2) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraDevSupport (2.0.6) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraFSCSupport (2.0.6) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.7 - SDK 10.8) [Click for support]
        [not loaded]    org.emul.driver.EarthMate (1.0.0d1) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (2.2.8) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [not loaded]    com.canon.MFManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [running]    com.Logitech.Control Center.Daemon.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.autodesk.backburner_manager.plist [Click for support]
        [running]    com.autodesk.backburner_server.plist [Click for support]
        [loaded]    com.autodesk.backburner_start.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.makerbot.conveyor.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Firmware Updater.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Software Updater.plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        Google Drive    Application  (/Applications/Google Drive.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
    Internet Plug-ins: ℹ️
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 6.0
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 [Click for support]
        AdobePDFViewer: Version: 9.5.5 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: Unknown [Click for support]
        BrowserPlus_2.6.0: Version: 2.6.0 [Click for support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        fbplugin_1_0_1: Version: Unknown [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        GoPro  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        Logitech Control Center  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 748.96 GB Disk used: 602.25 GB
        Destinations:
            WDP3 [Local]
            Total size: 332.79 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 12:26:32 +0000
            Last backup: 2013-04-03 12:26:32 +0000
            Size of backup disk: Too small
                Backup size 332.79 GB < (Disk used 602.25 GB X 3)
            STAR_TECH_EXT [Local]
            Total size: 499.76 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 14:26:44 +0000
            Last backup: 2013-04-03 14:26:44 +0000
            Size of backup disk: Too small
                Backup size 499.76 GB < (Disk used 602.25 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    Creative Cloud
             0%    firefox
             0%    fontd
             0%    AdobeUpdateDaemon
    Top Processes by Memory: ℹ️
        670 MB    Safari
        567 MB    firefox
        464 MB    softwareupdated
        395 MB    mds_stores
        309 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.43 GB    Free RAM
        7.87 GB    Active RAM
        6.40 GB    Inactive RAM
        1.47 GB    Wired RAM
        7.30 GB    Page-ins
        205 KB    Page-outs
    Diagnostics Information: ℹ️
        Mar 11, 2015, 04:04:23 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-160423_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 02:54:29 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-145429_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 10:18:18 AM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-101818_[redacted]. cpu_resource.diag [Click for details]
        Mar 10, 2015, 10:55:10 PM    Self test - passed
        Mar 9, 2015, 03:21:58 AM    /Library/Logs/DiagnosticReports/SubmitDiagInfo_2015-03-09-032158_[redacted].cpu _resource.diag [Click for details]

    Here is the diagnostic script output:
    Start time: 12:06:12 03/14/15
    Revision: 1290
    Model Identifier: MacBookPro9,1
    System Version: OS X 10.10.2 (14C1510)
    Kernel Version: Darwin 14.1.0
    Time since boot: 3 days 13:11
    UID: 502
    Memory
        BANK 0/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
    USB
        Hub (Belkin Corporation)
        My Book 1140 (Western Digital Technologies, Inc.)
        My Book (Western Digital Technologies, Inc.)
        USB Receiver (Logitech Inc.)
        USB Receiver (Logitech Inc.)
    FileVault 2: On
    Activity
        CPU: user 13%, system 7%
    CPU usage (%)
        plugin-container (UID 502): 100.0
        com.apple.WebKit (UID 502): 26.2
    File opens (per sec)
        AdobeUpdateDaem (UID 0) => /tmp/UUID_OUT (status 60): 6
    Energy (lifetime)
        WindowServer (UID 88): 7.44
        com.apple.WebKit.WebContent (UID 502): 7.22
    Energy (sampled)
        plugin-container (UID 502): 99.13
        com.apple.WebKit.WebContent (UID 502): 23.60
        WindowServer (UID 88): 21.29
        com.apple.WebKit.WebContent (UID 502): 13.16
        Console (UID 502): 12.28
    Memory (MB)
        kernel_task (UID 0): 1327
    Font issues: 1
    Listeners
        launchd: ftp
    System caches/logs
        3.6 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-19 com.apple.WebKit.WebContent crash
        2015-02-20 Topaz Adjust 5 crash
        2015-02-20 Topaz ReStyle crash
        2015-02-20 com.apple.WebKit.WebContent crash x2
        2015-02-21 com.apple.WebKit.WebContent crash x2
        2015-02-25 com.apple.WebKit.WebContent crash
        2015-03-04 system_profiler crash
        2015-03-07 com.apple.WebKit.WebContent crash
        2015-03-08 MPEG Streamclip hang x2
        2015-03-08 com.apple.WebKit.WebContent crash
    I/O errors
        disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions 1
        disk2s2: do_jnl_io: strategy err 0x6 1
        disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions 1
        disk2s3: do_jnl_io: strategy err 0x6 1
        disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions 1
        disk2s4: do_jnl_io: strategy err 0x6 1
        disk3s2: do_jnl_io: strategy err 0x6 1
        disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions 1
        disk3s3: do_jnl_io: strategy err 0x6 1
        disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions 1
        disk3s4: do_jnl_io: strategy err 0x6 1
        disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions 1
        disk4s3: do_jnl_io: strategy err 0x6 1
    Volumes
        disk1: /
        disk5s3: /Volumes/WDP2
        disk5s2: /Volumes/WDP1
        disk5s4: /Volumes/WDP3
        disk6s2: /Volumes/2TB_1
        disk6s4: /Volumes/2TB_3
        disk6s3: /Volumes/2TB_2
        disk7s2: /Volumes/Starry Night Pro 7
    HID errors: 3
    Kernel log
        Mar  8 17:08:19 firefox (map: 0xffffff80501790f0) triggered DYLD shared region unnest for map: 0xffffff80501790f0, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  8 17:08:59 firefox (map: 0xffffff8051e54870) triggered DYLD shared region unnest for map: 0xffffff8051e54870, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 08:11:09 jnl: disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s2: write_journal_header: error writing the journal header!
        Mar  9 08:11:09 jnl: disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions
        Mar  9 11:42:59 firefox (map: 0xffffff8031b5e780) triggered DYLD shared region unnest for map: 0xffffff8031b5e780, region 0x7fff89e00000->0x7fff8a000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 13:44:08 Limiting closed port RST response from 310 to 250 packets per second
        Mar 10 23:03:12 firefox (map: 0xffffff802a954780) triggered DYLD shared region unnest for map: 0xffffff802a954780, region 0x7fff90000000->0x7fff90200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 23:20:37 Limiting icmp unreach response from 302 to 250 packets per second
        Mar 11 08:39:04 jnl: disk4s3: write_journal_header: error writing the journal header!
        Mar 11 08:39:04 jnl: disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions
        Mar 13 17:42:33 Limiting icmp unreach response from 428 to 250 packets per second
        Mar 13 17:42:34 Limiting icmp unreach response from 433 to 250 packets per second
    System log
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128828
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128829
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128830
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128831
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:32:27 com.apple.sbd:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 7
        Mar 14 09:35:28 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:47:41 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Installer" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:50:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:52:55 WindowServer: WSGetSurfaceInWindow : Invalid surface 583724228 for window 1898
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:48 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:49 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:55 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:10:08 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    launchd log
        Mar  8 17:07:46 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar  9 11:41:23 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar 10 22:48:48 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = imklaunchagent.14852, service = com.parallels.inputmethod.ParallelsIM.5712, error = 134: Service cannot load in requested session
        Mar 10 22:48:58 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.WacomTouchDriver.183780, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = prl_deskctl_age.14812, service = com.parallels.mobile.prl_deskctl_agent.220416.UUID, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.TabletDriver.184064, error = 134: Service cannot load in requested session
        Mar 10 22:56:21 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.apple.photostream-agent, error = 119: Service is disabled
    Loaded kernel extensions
        com.Logitech.Control Center.HID Driver (3.6.0)
        com.Logitech.Unifying.HID Driver (1.2.0)
        com.epson.driver.EPSONProjectorUDAudio (1.40)
        com.parallels.virtualsound (1.0.36 36)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.adobe.fpsaud
        com.apple.watchdogd
        com.autodesk.backburner_manager
        com.autodesk.backburner_server
        com.autodesk.backburner_start
        com.google.keystone.daemon
        com.makerbot.conveyor.daemon
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.parallels.mobile.dispatcher.launchdaemon
        com.parallels.mobile.kextloader.launchdaemon
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.security.FDERecoveryAgent
        com.apple.mtmd
        com.apple.mrt
        com.apple.mtmfs
    Login services loaded
        com.GoPro.GoPro-Importer
        com.Logitech.Control Center.Daemon
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.Safari
        - status: 78
        com.apple.mrt.uiagent
        com.citrixonline.GoToMeeting.G2MUpdate
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.system.agent
        com.kodak.BonjourAgent
        com.kodak.KODAK AiO Firmware Updater
        com.kodak.KODAK AiO Software Updater
        com.oracle.java.Java-Updater
        com.parallels.mobile.prl_deskctl_agent.launchagent
        com.parallels.mobile.startgui.launchagent
        com.valvesoftware.steamclean
        com.wacom.wacomtablet
        gldrvmond
        org.macosforge.xquartz.startx
    Global login items
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User login items
        Google Drive
        - /Applications/Google Drive.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User crontab
        #SqzS VERSION = 1.0.0
        #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
        #PLEASE DO NOT EDIT.
        # Enc=1 Name="Update Virus Protection"  EvType1=1 EvType2=0 Sched=2
        0 8 * * 5 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUdf"
        # Enc=1 Name="My AntiVirus Scan Task"  EvType1=2 EvType2=0 Sched=2
        #0 9 * * 6 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" -n  2 "/Library/Application Support/Symantec/AntiVirus/ScanNotification.app/Contents/scheduledScanner" "    "  "NVsi"  "SCae"  "path" '/' "kydo" "niCE" "long" 0
        # Enc=1 Name="My Product Update Task"  EvType1=1 EvType2=0 Sched=3
        0 8 * * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  3 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUlu"
        #SqzS END SYMANTEC CRON ENTRIES
    Safari extensions
        Open in Internet Explorer
        - com.parallels.openinie
    Widgets
        TimeCalc
        eCalc_Scientific
    iCloud errors
        bird 137
        cloudd 18
        storedownloadd 2
        CallHistorySyncHelper 2
    Continuity errors
        lsuseractivityd 21
        sharingd 11
    Restricted files: 10847
    Lockfiles: 19
    High file counts
        Desktop: 84
    Accessibility
        Keyboard Zoom: On
        Scroll Zoom: On
    Contents of /Library/LaunchAgents/com.canon.MFManager.plist
        - mod date: May 22 05:23:32 2012
        - checksum: 290641261
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.canon.MFManager</string>
        <key>Program</key>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 02:11:48 2014
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 16:24:29 2014
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 01:39:00 2012
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Feb 15 11:22:20 2014
        - checksum: 2857777334
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>71</integer>
        <key>Minute</key>
        <integer>54</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.parallels.mobile.prl_deskctl_agent.launchagent.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 1795713191
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/etc/com.parallels.mobile.prl_deskctl_agent.launchd</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.parallels.mobile.prl_deskctl_agent.launchagent</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Agent.app/Contents/MacOS/prl_deskctl_agent</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Oct 11 17:37:46 2013
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 16:52:54 2014
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_manager.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 3394451584
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_manager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerManager</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_server.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 2405015914
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_server</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerServer</string>
        </array>
        <key>Nice</key>
        <integer>18</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_start.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 597826117
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.autodesk.backburner_start</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburner</string>
        <string>boot</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.makerbot.conveyor.plist
        - mod date: Dec  2 11:47:26 2013
        - checksum: 147573995
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Disabled</key>
            <false/>
            <key>Label</key>
            <string>com.makerbot.conveyor.daemon</string>
            <key>WorkingDirectory</key>
            <string>/Library/MakerBot</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/MakerBot/conveyor-svc</string>
                <string>--config_file</string>
                <string>/Library/MakerBot/conveyor.conf</string>
            </array>
            <key>KeepAlive</key>
            <true/>
            <key>EnvironmentVariables</key>
            <dict/>
            <key>RunAtLoad</key>
            <true/>
            <key>UserName</key>
            <string>_conveyor</string>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchDaemons/com.parallels.mobile.dispatcher.launchdaemon.plist
        - mod date: Feb 24 10:45:50 2015
        - checksum: 1994226602
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.dispatcher.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Dispatcher Service.app/Contents/MacOS/prl_pm_service</string>
        <string>-e</string>
        <string>--logfile</string>
        <string>/var/log/prl_disp_service_server.log</string>
        <string>--pidfile</string>
        <string>/var/run/prl_pm_service.pid</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.parallels.mobile.kextloader.launchdaemon.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 3938648138
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.kextloader.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
                <string>/sbin/kextload</string>
        <string>/Applications/Parallels Access.app/Contents/Library/Extensions/10.9/prl_virtual_sound.kext</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /private/etc/ssh_config
        - mod date: Nov 19 19:03:16 2012
        - checksum: 1281775184
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 20 19:45:18 2011
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 29 16:03:43 2010
        - checksum: 2544798274
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 8/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Sep 11 18:20:35 2011
        - checksum: 2170691092
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Oct 19 12:47:52 2009
        - checksum: 10744905
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
        - mod date: Jan 30 08:36:08 2015
        - checksum: 1189540302
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
        - mod date: Dec 18 09:24:48 2008
        - checksum: 3493273791
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.citrixonline.GoToMeeting.G2MUpdate.plist
        - mod date: Dec 15 10:55:51 2014
        - checksum: 3001252484
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.citrixonline.GoToMeeting.G2MUpdate</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CitrixOnline/GoToMeeting/G2MUpdate</string>
        </array>
        <key>StartInterval</key>
        <integer>3660</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.parallels.mobile.startgui.launchagent.plist
        - mod date: Mar 10 23:00:25 2015
        - checksum: 662430762
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.startgui.launchagent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/prl_deskctl_wizard</string>
                <string>--autorun</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.valvesoftware.steamclean.plist
        - mod date: Mar  7 15:48:06 2014
        - checksum: 1327160095
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.valvesoftware.steamclean</string>
        <key>Program</key>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <string>Public</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>SteamContentPaths</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Applications/Steam.app</string>
        </array>
        </dict>
        </plist>
    App extensions
        com.google.GoogleDrive.FinderSyncAPIExtension
        com.parallels.desktop.console.Resource-Monitor
    Installations
        Topaz Detail2: 11/15/12, 2:58 PM
        Topaz DeNoise 5: 11/15/12, 2:57 PM
        Topaz Adjust 5: 1

  • Yoga 2 Pro stuck volume, missing cursor, onscreen keyboard unusable

    I'm having several issues with a Yoga 2 Pro laptop running Windows 8.1 that's about a year old.
    1) Volume is stuck at 0. I can raise the volume, but it automatically lowers back down to zero, as if the volume-down key is stuck. The volume indicator is always onscreen.
    2) Cursor is missing, however I can still right click/left click. Also, the cursor will reappear when I uninstall the Synaptic touchpad drivers.
    3) The onscreen touch keyboard is unusable. I can click on the icon and it pops up, but it immediatly goes back down.
    4) Side screen charms won't stay on screen (example: pressing the F10 key or project screen the side menu pops in but immediately pops out, similar to the keyboard). Also if I swipe in from the right and try to use anything (devices, settings, etc.) it does not respond
    5) Pressing the start key doesn't bring it to the start screen, but holding it down for a few seconds does.
    The above problems still exist in safe mode.I'm thinking it's a hardware issue or a bad connection of some kind. I've tried:
    1) Removing/reinstalling various drivers (touchpad, audio, graphics)
    2) Disabling services (YMC comes up often when looking at trackpad problems, but this hasn't worked for me)
    3) Uninstalled/reinstalled programs (Energy Management, Transitions, etc.)
    4) Did a complete factory reset at one point, had no effect.
    I've had the problem a couple times before, and one thing that DID work was to hold down the power button for ten seconds while the computer was off, then let it reboot. Unfortunately that solution is no longer working. The threads I've linked below have been the closest I've found to a problem like this, but neither of their solutions worked for me.
    https://forums.lenovo.com/t5/Yoga-Flex-Laptops-and/Yoga-13-Volume-Control-Issues/td-p/976589
    https://forums.lenovo.com/t5/Yoga-Flex-Laptops-and/Yoga-2-Pro-Problem-Volume-Touch-Touch-Keyboard-no...
    Any help would be much appreciated! Definitely affecting my usability of this otherwise wonderful machine.

    Update in case anyone else comes across a similar problem: I ended up sending my laptop into warranty, and it came back a week later working completely. No idea what the problem, cause, or fix was, although they didn't replace any major parts (battery, cable, cpu, fan, hard drive, keyboard, touch pad, display, memory, motherboard...going off the list they sent back, none of those were replaced), so I'm not sure what to think. Not even a factory reset. I'd love to know what the issue was, in case it comes up again but am happy that my laptop is once again functioning in either case!

  • Previewing Pages via Testing Server Unusable???

    Hello,
    I typically set up a local testing server during development.
    When hitting F12, Dw uploads the current page to the testing
    server, and then correctly shows that page in my browser. However,
    Dw DOES NOT update the CSS file, and since most changes these days
    are done in the linked/attached CSS file (even while editing the
    main html page), this F12 preview in browser shortcut is unusable.
    The only workaround I know of is to click on synchronize in
    the files panel, click preview and then OK in two different dialog
    boxes.
    Does anyone know how to make Dreamweaver upload ALL dependent
    files to the testing server upon pressing F12?

    There is a roundabout way to do this by using "upload files
    on save",
    but I would not recommend using that unless you are very good
    about
    making backups to all of your files.
    Another solution would be to Preview in Browser using "Temp"
    files.
    HTH,
    Randy
    > I typically set up a local testing server during
    development. When hitting
    > F12, Dw uploads the current page to the testing server,
    and then correctly
    > shows that page in my browser. However, Dw DOES NOT
    update the CSS file, and
    > since most changes these days are done in the
    linked/attached CSS file (even
    > while editing the main html page), this F12 preview in
    browser shortcut is
    > unusable.
    >
    > The only workaround I know of is to click on synchronize
    in the files panel,
    > click preview and then OK in two different dialog boxes.
    >
    > Does anyone know how to make Dreamweaver upload ALL
    dependent files to the
    > testing server upon pressing F12?

  • IMac 27" unusable w/ Yosemite

    Hello everyone,
    I'm barely writing this, being interrupted every 30 seconds with the spinning beach ball. I have iMac 27" (Late 2013) with Yosemite. Since the day I bought this mac I first had issues with itunes playing songs, it would stop during playback, I would have spinning beachball and after few seconds it would work again (that was on Mavericks). After update problem seemed gone, until Yosemite. Upgrade to the latest one 10.10.1 made my life miserable. Long story short, computer is unusable. Spinning wheel is triggered by random actions, like typing, listening to music, playing video on youtube, writing a document, and now it got to the point where it will jsut be on standby with nothing opened and still every now and then have the beach ball spinning. I looked into Console and had several "kernel disk0s2: I/O error". after running Disk Utility, Apple Hardware Test and S.M.A.R.T. result is that everyting, according to these programs, is ok. I don't know where to look anymore, I seem to have all of the symptoms and system works the best in Safe Mode, from which I7m writing right now, with spinning ball still showing up but not constantly as in normal mode. Console is giving me right now lots of logs "watchdog_daemon: cannot initialize daemon service", don't know if that is of any importance
    here is what EtreCheck says, and thanks alot for any kind of help
    EtreCheck version: 2.1.3 (106)
    Report generated 17 Dec 2014 15:10:06 CET
    Hardware Information: ℹ️
      iMac (27-inch, Late 2013) (Verified)
      iMac - model: iMac14,2
      1 3.2 GHz Intel Core i5 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      empty empty empty empty
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      4 GB DDR3 1600 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
      NVIDIA GeForce GT 755M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 1:3:24
    Disk Information: ℹ️
      APPLE HDD ST1000DM003 disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (455.04 GB free) - 100 errors
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.devguru.driver.SamsungComposite (1.4.20 - SDK 10.6) [Support]
      /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
      [not loaded] com.devguru.driver.SamsungACMControl (1.4.20 - SDK 10.6) [Support]
      [not loaded] com.devguru.driver.SamsungACMData (1.4.20 - SDK 10.6) [Support]
      [not loaded] com.devguru.driver.SamsungMTP (1.4.20 - SDK 10.5) [Support]
      [not loaded] com.devguru.driver.SamsungSerial (1.4.20 - SDK 10.6) [Support]
    Launch Agents: ℹ️
      [not loaded] com.teamviewer.teamviewer.plist [Support]
      [not loaded] com.teamviewer.teamviewer_desktop.plist [Support]
    Launch Daemons: ℹ️
      [not loaded] com.adobe.fpsaud.plist [Support]
      [not loaded] com.microsoft.office.licensing.helper.plist [Support]
      [not loaded] com.teamviewer.teamviewer_service.plist [Support]
    User Launch Agents: ℹ️
      [not loaded] com.google.keystone.agent.plist [Support]
      [not loaded] com.vladalexa.MagicPrefs.plist [Support]
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      fuspredownloader ApplicationHidden (/Users/[redacted]/Library/Application Support/.FUS/fuspredownloader.app)
    Internet Plug-ins: ℹ️
      SharePointBrowserPlugin: Version: 14.1.3 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 [Support]
      QuickTime Plugin: Version: 7.7.3
      Default Browser: Version: 600 - SDK 10.10
    User internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 7.1 [Support]
    Safari Extensions: ℹ️
      AdBlock [Installed]
      Best YouTube Downloader [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      MagicPrefs  [Support]
    Time Machine: ℹ️
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 544.31 GB
      Destinations:
      VERBATIM HD [Local]
      Total size: 999.86 GB
      Total number of backups: 33
      Oldest backup: 2014-09-24 13:33:55 +0000
      Last backup: 2014-12-16 18:23:54 +0000
      Size of backup disk: Too small
      Backup size 999.86 GB < (Disk used 544.31 GB X 3)
    Top Processes by CPU: ℹ️
          7% WindowServer
          7% com.apple.WebKit.WebContent
          2% Console
          1% Safari
          1% fontd
    Top Processes by Memory: ℹ️
      421 MB Safari
      249 MB com.apple.WebKit.WebContent
      242 MB WindowServer
      163 MB Finder
      129 MB Console
    Virtual Memory Information: ℹ️
      5.15 GB Free RAM
      2.19 GB Active RAM
      404 MB Inactive RAM
      846 MB Wired RAM
      1.49 GB Page-ins
      0 B Page-outs
    Diagnostics Information: ℹ️
      Dec 17, 2014, 02:07:17 PM Self test - passed
      Dec 16, 2014, 11:41:59 PM System Preferences_2014-12-16-234159_Jelenas-iMac.hang
      Dec 16, 2014, 10:30:15 PM iTunes_2014-12-16-223015_Jelenas-iMac.hang
      Dec 16, 2014, 08:00:08 PM iTunes_2014-12-16-200008_Jelenas-iMac.hang
      Dec 16, 2014, 07:50:10 PM Finder_2014-12-16-195010_Jelenas-iMac.hang
      Dec 16, 2014, 07:16:25 PM Activity Monitor_2014-12-16-191625_Jelenas-iMac.crash
      Dec 16, 2014, 06:33:32 PM Messages_2014-12-16-183332_Jelenas-iMac.crash
      Dec 16, 2014, 05:39:52 PM iTunes_2014-12-16-173952_Jelenas-iMac.hang
      Dec 16, 2014, 04:59:45 PM callservicesd_2014-12-16-165945_Jelenas-iMac.crash
      Dec 16, 2014, 04:12:13 PM CleanMyMac 2_2014-12-16-161213_Jelenas-iMac.cpu_resource.diag [Details]

    UPDATE:
    Customer support advised to return the machine back to Mavericks, just to check if the problems will continue, I restored it to the last known version that worked without problems (10.9.5) and right now system and the machine work as new, etrecheck shows no errors on the disk, and now 2 hours of using it not one I/O error showed up.
    Thanks for the help, and I hope this helps to others that might have the same issue

  • PCI slot in Thinkpad Dock II unusable

    Hello, I have a Thinkpad a22m 2628-S1U which can be used with the Thinkpad Dock II. To avoid feeling tempted to buy a new laptop I bought that dock as well as an ATI Radeon x1550 to put in its PCI slot. These items were said to be compatible on http://thinkwiki.org the Linux thinkpad wiki.
    Now that I've tried it out, I'm starting to think the contributors to that site were windows users who didn't read the topic. Starting up docked gave the following lspci output (notice there's no radeon card):
    00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
    00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
    00:02.0 CardBus bridge: Texas Instruments PCI1450 (rev 03)
    00:02.1 CardBus bridge: Texas Instruments PCI1450 (rev 03)
    00:03.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 09)
    00:03.1 Serial controller: Xircom Mini-PCI V.90 56k Modem
    00:04.0 PCI bridge: Texas Instruments PCI2032 PCI Docking Bridge
    00:05.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
    00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
    00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
    00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
    00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03)
    01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility M3 AGP 2x (rev 02)
    08:01.0 IDE interface: Silicon Image, Inc. PCI0648 (rev 01)
    08:02.0 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
    08:02.1 CardBus bridge: Texas Instruments PCI1420 PC card Cardbus Controller
    0f:00.0 Ethernet controller: Atheros Communications Inc. AR2413 802.11bg NIC (rev 01)
    For comparison, here's what my lspci looks like undocked:
    00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 03)
    00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 03)
    00:02.0 CardBus bridge: Texas Instruments PCI1450 (rev 03)
    00:02.1 CardBus bridge: Texas Instruments PCI1450 (rev 03)
    00:03.0 Ethernet controller: Intel Corporation 82557/8/9/0/1 Ethernet Pro 100 (rev 09)
    00:03.1 Serial controller: Xircom Mini-PCI V.90 56k Modem
    00:05.0 Multimedia audio controller: Cirrus Logic CS 4614/22/24/30 [CrystalClear SoundFusion Audio Accelerator] (rev 01)
    00:07.0 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 02)
    00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
    00:07.2 USB Controller: Intel Corporation 82371AB/EB/MB PIIX4 USB (rev 01)
    00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 03)
    01:00.0 VGA compatible controller: ATI Technologies Inc Rage Mobility M3 AGP 2x (rev 02)
    02:00.0 Ethernet controller: Atheros Communications Inc. AR2413 802.11bg NIC (rev 01)
    So a few parts of the dock are getting detected but not the most important parts. The error that I think is related to the absence of the graphics card appears in dmesg. Look for the part about "cannot allocate resource region":
    Linux version 2.6.26-ARCH (root@T-POWA-LX) (gcc version 4.3.2 (GCC) ) #1 SMP PREEMPT Tue Sep 9 10:15:21 UTC 2008
    PAT disabled. Not yet verified on this CPU type.
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
    BIOS-e820: 000000001fff0000 - 000000001fffec00 (ACPI data)
    BIOS-e820: 000000001fffec00 - 0000000020000000 (ACPI NVS)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    0MB HIGHMEM available.
    511MB LOWMEM available.
    Entering add_active_range(0, 0, 131056) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 131056
    HighMem 131056 -> 131056
    Movable zone start PFN for each node
    early_node_map[1] active PFN ranges
    0: 0 -> 131056
    On node 0 totalpages: 131056
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 992 pages used for memmap
    Normal zone: 125968 pages, LIFO batch:31
    HighMem zone: 0 pages used for memmap
    Movable zone: 0 pages used for memmap
    DMI 2.3 present.
    ACPI: RSDP 000F7160, 0014 (r0 PTLTD )
    ACPI: RSDT 1FFF53D5, 002C (r1 PTLTD RSDT 6040000 LTP 0)
    ACPI: FACP 1FFFEB65, 0074 (r1 IBM TP-13 6040000 0)
    ACPI: DSDT 1FFF5401, 9764 (r1 IBM TP-13 6040000 MSFT 100000C)
    ACPI: FACS 1FFFF000, 0040
    ACPI: BOOT 1FFFEBD9, 0027 (r1 PTLTD $SBFTBL$ 6040000 LTP 1)
    ACPI: PM-Timer IO Port: 0x1008
    Allocating PCI resources starting at 30000000 (gap: 20000000:dff80000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    SMP: Allowing 0 CPUs, 0 hotplug CPUs
    PERCPU: Allocating 39464 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 130032
    Kernel command line: BOOT_IMAGE=arch ro root=802 hpet=force pci=routeirq acpi_osi=Linux panic=10
    ACPI: Added _OSI(Linux)
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    mapped APIC to ffffb000 (0140e000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 2048 (order: 11, 8192 bytes)
    Detected 697.417 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Memory: 514452k/524224k available (2120k kernel code, 9264k reserved, 744k data, 264k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee4000 - 0xfffff000 (1132 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
    lowmem : 0xc0000000 - 0xdfff0000 ( 511 MB)
    .init : 0xc03d3000 - 0xc0415000 ( 264 kB)
    .data : 0xc031225e - 0xc03cc380 ( 744 kB)
    .text : 0xc0100000 - 0xc031225e (2120 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay using timer specific routine.. 973.82 BogoMIPS (lpj=1622127)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 16K, L1 D cache: 16K
    CPU: L2 cache: 256K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 9k freed
    ACPI: Core revision 20080321
    ACPI: Checking initramfs for custom DSDT
    ACPI: setting ELCR to 0200 (from 0e80)
    weird, boot CPU (#0) not listedby the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (973.82 BogoMIPS).
    net_namespace: 652 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfd94f, last bus=14
    PCI: Using configuration type 1 for base access
    Setting up standard PCI resources
    ACPI: EC: Look up EC in DSDT
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in interrupt mode
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:07.3: quirk: region 1000-103f claimed by PIIX4 ACPI
    pci 0000:00:07.3: quirk: region 1040-104f claimed by PIIX4 SMB
    pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    pci 0000:00:07.3: PIIX4 devres I PIO at 03f0-03f7
    pci 0000:00:07.3: PIIX4 devres J PIO at 002e-002f
    PCI: Transparent bridge - 0000:00:04.0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.DOCK._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11)
    ACPI: Power Resource [PSER] (off)
    ACPI: Power Resource [PSIO] (on)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp: PnP ACPI: found 15 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 9
    PCI: setting IRQ 9 as level-triggered
    ACPI: PCI Interrupt 0000:00:02.1[b] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10
    PCI: setting IRQ 10 as level-triggered
    ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    ACPI: PCI Interrupt 0000:00:03.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 7
    PCI: setting IRQ 7 as level-triggered
    ACPI: PCI Interrupt 0000:00:07.2[D] -> Link [LNKD] -> GSI 7 (level, low) -> IRQ 7
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt 0000:08:01.0[A] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt 0000:08:02.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    ACPI: PCI Interrupt 0000:08:02.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    PCI: Cannot allocate resource region 7 of bridge 0000:00:04.0
    PCI: Cannot allocate resource region 8 of bridge 0000:00:04.0
    PCI: Cannot allocate resource region 9 of bridge 0000:00:04.0
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:00: iomem range 0x100000-0x1fffffff could not be reserved
    system 00:00: iomem range 0xfff80000-0xffffffff could not be reserved
    system 00:02: ioport range 0x1000-0x103f has been reserved
    system 00:02: ioport range 0x1040-0x104f has been reserved
    system 00:02: ioport range 0xfe00-0xfe0f has been reserved
    system 00:09: ioport range 0x15e0-0x15ef has been reserved
    PCI: region 0000:08:02.0/9 too large: 0x0000000000000000-0x0000000003ffffff
    PCI: region 0000:08:02.1/9 too large: 0x0000000000000000-0x0000000003ffffff
    PCI: region 0000:08:02.0/10 too large: 0x0000000000000000-0x0000000003ffffff
    PCI: region 0000:08:02.1/10 too large: 0x0000000000000000-0x0000000003ffffff
    PCI: Bridge: 0000:00:01.0
    IO window: 2000-2fff
    MEM window: 0xf0200000-0xf02fffff
    PREFETCH window: 0x00000000f8000000-0x00000000fbffffff
    PCI: Bus 15, cardbus bridge: 0000:00:02.0
    IO window: 0x00001400-0x000014ff
    IO window: 0x00001c00-0x00001cff
    PREFETCH window: 0x30000000-0x33ffffff
    MEM window: 0x34000000-0x37ffffff
    PCI: Bus 19, cardbus bridge: 0000:00:02.1
    IO window: 0x00003400-0x000034ff
    IO window: 0x00003800-0x000038ff
    PREFETCH window: 0x38000000-0x3bffffff
    MEM window: 0x3c000000-0x3fffffff
    PCI: Bus 9, cardbus bridge: 0000:08:02.0
    IO window: 0x00004000-0x000040ff
    IO window: 0x00004400-0x000044ff
    PCI: Bus 13, cardbus bridge: 0000:08:02.1
    IO window: 0x00004800-0x000048ff
    IO window: 0x00004c00-0x00004cff
    PCI: Bridge: 0000:00:04.0
    IO window: 4000-4fff
    MEM window: disabled.
    PREFETCH window: disabled.
    ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt 0000:00:02.1[b] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt 0000:08:02.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    ACPI: PCI Interrupt 0000:08:02.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    TCP: Hash tables configured (established 16384 bind 16384)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 662k freed
    Simple Boot Flag at 0x35 set to 0x1
    IBM machine detected. Enabling interrupts during APM calls.
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1006
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    pci 0000:00:03.0: Firmware left e100 interrupts enabled; disabling
    pci 0000:01:00.0: Boot video device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial 00:0c: activated
    00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    ACPI: PCI Interrupt 0000:00:03.1[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 264k freed
    input: AT Translated Set 2 keyboard as /class/input/input1
    ACPI: ACPI Dock Station Driver
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ata_piix 0000:00:07.1: version 2.12
    scsi0 : ata_piix
    scsi1 : ata_piix
    Switched to high resolution mode on CPU 0
    ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1850 irq 14
    ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1858 irq 15
    ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    ata1.00: 195371568 sectors, multi 16: LBA48
    ata1.00: configured for UDMA/33
    ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T20L, NR02, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA AB21 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20L NR02 PQ: 0 ANSI: 5
    ACPI: PCI Interrupt 0000:08:01.0[A] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI interrupt for device 0000:08:01.0 disabled
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda:<4>Driver 'sr' needs updating - please use bus_type methods
    sda1 sda2 sda3 sda4
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    ReiserFS: sda2: found reiserfs format "3.6" with standard journal
    ReiserFS: sda2: using ordered data mode
    ReiserFS: sda2: journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: sda2: checking transaction log (sda2)
    ReiserFS: sda2: Using r5 hash to sort names
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k
    Non-volatile memory driver v1.2
    thinkpad_acpi: ThinkPad ACPI Extras v0.20
    thinkpad_acpi: http://ibm-acpi.sf.net/
    thinkpad_acpi: ThinkPad BIOS 13ET14WW (1.00c), EC unknown
    Registered led device: tpacpi::thinklight
    thinkpad_acpi: another device driver is already handling bay events
    thinkpad_acpi: disabling subdriver bay
    Registered led device: tpacpi::power
    Registered led device: tpacpi:orange:batt
    Registered led device: tpacpi:green:batt
    Registered led device: tpacpi::dock_active
    Registered led device: tpacpi::bay_active
    Registered led device: tpacpi::dock_batt
    Registered led device: tpacpi::unknown_led
    Registered led device: tpacpi::standby
    input: ThinkPad Extra Buttons as /class/input/input2
    e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10
    e100: eth0: e100_probe: addr 0xf0120000, irq 10, MAC addr 00:03:47:0f:de:3d
    eepro100.c:v1.09j-t 9/29/99 Donald Becker
    eepro100.c: $Revision: 1.36 $ 2000/11/17 Modified by Andrey V. Savochkin <[email protected]> and others
    ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    gameport: CS46xx Gameport is pci0000:00:05.0/gameport0, speed 1807kHz
    Linux agpgart interface v0.103
    agpgart: Detected an Intel 440BX Chipset.
    agpgart: AGP aperture is 64M @ 0xf4000000
    [drm] Initialized drm 1.1.0 20060810
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    [drm] Initialized r128 2.5.0 20030725 on minor 0
    ath_hal: module license 'Proprietary' taints kernel.
    AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
    fuse init (API version 7.9)
    Marking TSC unstable due to: cpufreq changes.
    /proc/exmap: insert
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Power Button (FF) as /class/input/input3
    ACPI: Power Button (FF) [PWRF]
    input: Lid Switch as /class/input/input4
    ACPI: Lid Switch [LID]
    input: Sleep Button (CM) as /class/input/input5
    ACPI: Sleep Button (CM) [SLPB]
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    ACPI: ACPI0007:00 is registered as cooling_device0
    ACPI: Processor [CPU] (supports 8 throttling states)
    Clocksource tsc unstable (delta = 142862014 ns)
    ACPI: LNXTHERM:01 is registered as thermal_zone0
    ACPI: Thermal Zone [THM0] (49 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    Yenta: CardBus bridge found at 0000:00:02.0 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.0, mfunc 0x00001000, devctl 0x66
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Yenta: ISA IRQ mask 0x0038, PCI irq 11
    Socket status: 30000020
    Yenta: CardBus bridge found at 0000:00:02.1 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.1, mfunc 0x00001000, devctl 0x66
    Yenta: ISA IRQ mask 0x0038, PCI irq 9
    Socket status: 30000006
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Yenta: CardBus bridge found at 0000:08:02.0 [1014:0148]
    PCI: Bus 9, cardbus bridge: 0000:08:02.0
    IO window: 0x00004000-0x000040ff
    IO window: 0x00004400-0x000044ff
    PREFETCH window: 0x40400000-0x407fffff
    MEM window: 0x40800000-0x40bfffff
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:08:02.0, mfunc 0x00001002, devctl 0x66
    irq 11: nobody cared (try booting with the "irqpoll" option)
    Pid: 1799, comm: modprobe Tainted: P 2.6.26-ARCH #1
    [<c015a764>] __report_bad_irq+0x24/0x90
    [<c015aa52>] note_interrupt+0x282/0x2c0
    [<c0159e70>] handle_IRQ_event+0x30/0x60
    [<c015b2c3>] handle_level_irq+0xd3/0x100
    [<c010712b>] do_IRQ+0x3b/0x70
    [<c01049c7>] common_interrupt+0x23/0x28
    [<c0159e57>] handle_IRQ_event+0x17/0x60
    [<c015b26d>] handle_level_irq+0x7d/0x100
    [<c010712b>] do_IRQ+0x3b/0x70
    [<c01049c7>] common_interrupt+0x23/0x28
    [<c015007b>] show_initstate+0xb/0x50
    [<e0bd4830>] yenta_probe_cb_irq+0x80/0xf0 [yenta_socket]
    [<e0bd4bbb>] ti12xx_override+0x23b/0x6a0 [yenta_socket]
    [<c0210ce3>] pci_setup_cardbus+0x103/0x190
    [<e0bd5f02>] yenta_probe+0x5f2/0x643 [yenta_socket]
    [<c01cfa11>] sysfs_find_dirent+0x21/0x30
    [<c01d09c5>] sysfs_create_link+0x85/0x120
    [<c020b700>] pci_match_device+0xa0/0xc0
    [<c020b816>] pci_device_probe+0x56/0x80
    [<c026a9a6>] driver_probe_device+0x86/0x1a0
    [<c026ab31>] __driver_attach+0x71/0x80
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026a2d4>] bus_for_each_dev+0x44/0x70
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026a836>] driver_attach+0x16/0x20
    [<c026aac0>] __driver_attach+0x0/0x80
    [<c0269c67>] bus_add_driver+0x1a7/0x220
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026accc>] driver_register+0x5c/0x130
    [<c020ba4d>] __pci_register_driver+0x3d/0x80
    [<c0150738>] sys_init_module+0x148/0x1ca0
    [<c01a4bfa>] seq_open+0x3a/0x90
    [<c01c2aa6>] pde_users_dec+0x16/0x50
    [<e0bc9000>] hotplug_slot_attr_show+0x0/0x30 [pci_hotplug]
    [<c0268610>] device_remove_file+0x0/0x20
    [<c0103f73>] sysenter_past_esp+0x78/0xb1
    =======================
    handlers:
    [<e0a5f340>] (snd_cs46xx_interrupt+0x0/0x1e0 [snd_cs46xx])
    [<e0bd57e0>] (yenta_interrupt+0x0/0xe0 [yenta_socket])
    Disabling IRQ #11
    pccard: CardBus card inserted into slot 0
    ath_pci 0000:0f:00.0: enabling device (0000 -> 0002)
    ACPI: PCI Interrupt 0000:0f:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    input: PC Speaker as /class/input/input6
    USB Universal Host Controller Interface driver v3.0
    input: Video Bus as /class/input/input7
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    input: TPPS/2 IBM TrackPoint as /class/input/input8
    PPP generic driver version 2.4.2
    Uniform Multi-Platform E-IDE driver
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    parport_pc 00:0d: activated
    parport_pc 00:0d: reported by Plug and Play ACPI
    parport0: PC-style at 0x278, irq 5 [PCSPP,TRISTATE]
    MadWifi: ath_attach: Switching rfkill capability off.
    NET: Registered protocol family 23
    wifi0: Atheros AR2413 chip found (MAC 7.8, PHY 2112A 4.5, Radio 5.6)
    nsc-ircc 00:0e: activated
    nsc-ircc, chip->init
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    ath_pci: wifi0: Atheros 5212: mem=0x34000000, irq=11
    IrDA: Registered device irda0
    nsc-ircc, Found dongle: Reserved
    ppdev: user-space parallel port driver
    Yenta: ISA IRQ mask 0x0018, PCI irq 10
    Socket status: 30000006
    pcmcia: parent PCI bridge I/O window: 0x4000 - 0x4fff
    cs: IO port probe 0x4000-0x4fff: clean.
    Yenta: CardBus bridge found at 0000:08:02.1 [1014:0148]
    PCI: Bus 13, cardbus bridge: 0000:08:02.1
    IO window: 0x00004800-0x000048ff
    IO window: 0x00004c00-0x00004cff
    PREFETCH window: 0x40c00000-0x40ffffff
    MEM window: 0x41000000-0x413fffff
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:08:02.1, mfunc 0x00001002, devctl 0x66
    irq 11: nobody cared (try booting with the "irqpoll" option)
    Pid: 1799, comm: modprobe Tainted: P 2.6.26-ARCH #1
    [<c015a764>] __report_bad_irq+0x24/0x90
    [<c015aa52>] note_interrupt+0x282/0x2c0
    [<c0159e70>] handle_IRQ_event+0x30/0x60
    [<c015b2c3>] handle_level_irq+0xd3/0x100
    [<c010712b>] do_IRQ+0x3b/0x70
    [<c01049c7>] common_interrupt+0x23/0x28
    [<c014007b>] set_process_cpu_timer+0x2b/0xd0
    [<c0159e57>] handle_IRQ_event+0x17/0x60
    [<c015b26d>] handle_level_irq+0x7d/0x100
    [<c010712b>] do_IRQ+0x3b/0x70
    [<c01049c7>] common_interrupt+0x23/0x28
    [<c015007b>] show_initstate+0xb/0x50
    [<e0bd4830>] yenta_probe_cb_irq+0x80/0xf0 [yenta_socket]
    [<e0bd4aff>] ti12xx_override+0x17f/0x6a0 [yenta_socket]
    [<c0210ce3>] pci_setup_cardbus+0x103/0x190
    [<e0bd5f02>] yenta_probe+0x5f2/0x643 [yenta_socket]
    [<c01cfa11>] sysfs_find_dirent+0x21/0x30
    [<c01d09c5>] sysfs_create_link+0x85/0x120
    [<c020b700>] pci_match_device+0xa0/0xc0
    [<c020b816>] pci_device_probe+0x56/0x80
    [<c026a9a6>] driver_probe_device+0x86/0x1a0
    [<c026ab31>] __driver_attach+0x71/0x80
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026a2d4>] bus_for_each_dev+0x44/0x70
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026a836>] driver_attach+0x16/0x20
    [<c026aac0>] __driver_attach+0x0/0x80
    [<c0269c67>] bus_add_driver+0x1a7/0x220
    [<c020b760>] pci_device_remove+0x0/0x40
    [<c026accc>] driver_register+0x5c/0x130
    [<c020ba4d>] __pci_register_driver+0x3d/0x80
    [<c0150738>] sys_init_module+0x148/0x1ca0
    [<c01a4bfa>] seq_open+0x3a/0x90
    [<c01c2aa6>] pde_users_dec+0x16/0x50
    [<e0bc9000>] hotplug_slot_attr_show+0x0/0x30 [pci_hotplug]
    [<c0268610>] device_remove_file+0x0/0x20
    [<c0103f73>] sysenter_past_esp+0x78/0xb1
    =======================
    handlers:
    [<e0a5f340>] (snd_cs46xx_interrupt+0x0/0x1e0 [snd_cs46xx])
    [<e0bd57e0>] (yenta_interrupt+0x0/0xe0 [yenta_socket])
    [<e0ae4e30>] (ath_intr+0x0/0x4810 [ath_pci])
    Disabling IRQ #11
    Yenta: ISA IRQ mask 0x0018, PCI irq 10
    Socket status: 30000006
    pcmcia: parent PCI bridge I/O window: 0x4000 - 0x4fff
    cs: IO port probe 0x4000-0x4fff: clean.
    ACPI: PCI Interrupt 0000:00:07.2[D] -> Link [LNKD] -> GSI 7 (level, low) -> IRQ 7
    uhci_hcd 0000:00:07.2: UHCI Host Controller
    uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:07.2: irq 7, io base 0x00001860
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    piix4_smbus 0000:00:07.3: Found 0000:00:07.3 device
    piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    piix4_smbus: probe of 0000:00:07.3 failed with error -1
    CMD648: IDE controller (0x1095:0x0648 rev 0x01) at PCI slot 0000:08:01.0
    ACPI: PCI Interrupt 0000:08:01.0[A] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9
    CMD648: 100% native mode on irq 9
    ide0: BM-DMA at 0x3000-0x3007
    ide1: BM-DMA at 0x3008-0x300f
    Probing IDE interface ide0...
    usb 1-1: new full speed USB device using uhci_hcd and address 2
    usb 1-1: configuration #1 chosen from 1 choice
    hub 1-1:1.0: USB hub found
    hub 1-1:1.0: 4 ports detected
    Probing IDE interface ide1...
    usb 1-1.4: new low speed USB device using uhci_hcd and address 3
    usb 1-1.4: configuration #1 chosen from 1 choice
    ide0 at 0x3020-0x3027,0x3016 on irq 9
    ide1 at 0x3018-0x301f,0x3012 on irq 9
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    lp0: using parport0 (interrupt-driven).
    usbcore: registered new interface driver hiddev
    input: Logitech Logitech USB Optical Mouse as /class/input/input9
    input,hidraw0: USB HID v1.11 Mouse [Logitech Logitech USB Optical Mouse] on usb-0000:00:07.2-1.4
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    JFS: nTxBlock = 4027, nTxLock = 32219
    Adding 1100444k swap on /dev/sda4. Priority:-1 extents:1 across:1100444k
    warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
    conservative governor failed, too long transition latency of HW, fallback to performance governor
    thinkpad_acpi: requested hot key mask 0x0000ffff, forced to 0x00008000 (NVRAM poll mask is 0x00fb8000): no firmware mask support
    For comparison here is my dockless dmesg:
    Linux version 2.6.26-ARCH (root@T-POWA-LX) (gcc version 4.3.2 (GCC) ) #1 SMP PREEMPT Tue Sep 9 10:15:21 UTC 2008
    PAT disabled. Not yet verified on this CPU type.
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
    BIOS-e820: 000000001fff0000 - 000000001fffec00 (ACPI data)
    BIOS-e820: 000000001fffec00 - 0000000020000000 (ACPI NVS)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    0MB HIGHMEM available.
    511MB LOWMEM available.
    Entering add_active_range(0, 0, 131056) 0 entries of 256 used
    Zone PFN ranges:
    DMA 0 -> 4096
    Normal 4096 -> 131056
    HighMem 131056 -> 131056
    Movable zone start PFN for each node
    early_node_map[1] active PFN ranges
    0: 0 -> 131056
    On node 0 totalpages: 131056
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 4064 pages, LIFO batch:0
    Normal zone: 992 pages used for memmap
    Normal zone: 125968 pages, LIFO batch:31
    HighMem zone: 0 pages used for memmap
    Movable zone: 0 pages used for memmap
    DMI 2.3 present.
    ACPI: RSDP 000F7160, 0014 (r0 PTLTD )
    ACPI: RSDT 1FFF53D5, 002C (r1 PTLTD RSDT 6040000 LTP 0)
    ACPI: FACP 1FFFEB65, 0074 (r1 IBM TP-13 6040000 0)
    ACPI: DSDT 1FFF5401, 9764 (r1 IBM TP-13 6040000 MSFT 100000C)
    ACPI: FACS 1FFFF000, 0040
    ACPI: BOOT 1FFFEBD9, 0027 (r1 PTLTD $SBFTBL$ 6040000 LTP 1)
    ACPI: PM-Timer IO Port: 0x1008
    Allocating PCI resources starting at 30000000 (gap: 20000000:dff80000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    SMP: Allowing 0 CPUs, 0 hotplug CPUs
    PERCPU: Allocating 39464 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 130032
    Kernel command line: BOOT_IMAGE=arch ro root=802 hpet=force pci=routeirq acpi_osi=Linux panic=10
    ACPI: Added _OSI(Linux)
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    mapped APIC to ffffb000 (0140e000)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 2048 (order: 11, 8192 bytes)
    Detected 697.425 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Memory: 514452k/524224k available (2120k kernel code, 9264k reserved, 744k data, 264k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee4000 - 0xfffff000 (1132 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
    lowmem : 0xc0000000 - 0xdfff0000 ( 511 MB)
    .init : 0xc03d3000 - 0xc0415000 ( 264 kB)
    .data : 0xc031225e - 0xc03cc380 ( 744 kB)
    .text : 0xc0100000 - 0xc031225e (2120 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay using timer specific routine.. 1396.15 BogoMIPS (lpj=2326640)
    Security Framework initialized
    Capability LSM initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 16K, L1 D cache: 16K
    CPU: L2 cache: 256K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 9k freed
    ACPI: Core revision 20080321
    ACPI: Checking initramfs for custom DSDT
    ACPI: setting ELCR to 0200 (from 0a20)
    weird, boot CPU (#0) not listedby the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (1396.15 BogoMIPS).
    net_namespace: 652 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfd94f, last bus=7
    PCI: Using configuration type 1 for base access
    Setting up standard PCI resources
    ACPI: EC: Look up EC in DSDT
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in interrupt mode
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:07.3: quirk: region 1000-103f claimed by PIIX4 ACPI
    pci 0000:00:07.3: quirk: region 1040-104f claimed by PIIX4 SMB
    pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    pci 0000:00:07.3: PIIX4 devres I PIO at 03f0-03f7
    pci 0000:00:07.3: PIIX4 devres J PIO at 002e-002f
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 6 7 9 10 11)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11)
    ACPI: Power Resource [PSER] (off)
    ACPI: Power Resource [PSIO] (on)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp: PnP ACPI: found 15 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 5
    PCI: setting IRQ 5 as level-triggered
    ACPI: PCI Interrupt 0000:00:02.1[b] -> Link [LNKB] -> GSI 5 (level, low) -> IRQ 5
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 9
    PCI: setting IRQ 9 as level-triggered
    ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt 0000:00:03.1[A] -> Link [LNKC] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5
    ACPI: PCI Interrupt 0000:00:07.2[D] -> Link [LNKD] -> GSI 5 (level, low) -> IRQ 5
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:00: iomem range 0x100000-0x1fffffff could not be reserved
    system 00:00: iomem range 0xfff80000-0xffffffff could not be reserved
    system 00:02: ioport range 0x1000-0x103f has been reserved
    system 00:02: ioport range 0x1040-0x104f has been reserved
    system 00:02: ioport range 0xfe00-0xfe0f has been reserved
    system 00:09: ioport range 0x15e0-0x15ef has been reserved
    PCI: Bridge: 0000:00:01.0
    IO window: 2000-2fff
    MEM window: 0xf0200000-0xf02fffff
    PREFETCH window: 0x00000000f8000000-0x00000000fbffffff
    PCI: Bus 2, cardbus bridge: 0000:00:02.0
    IO window: 0x00001400-0x000014ff
    IO window: 0x00001c00-0x00001cff
    PREFETCH window: 0x30000000-0x33ffffff
    MEM window: 0x34000000-0x37ffffff
    PCI: Bus 6, cardbus bridge: 0000:00:02.1
    IO window: 0x00003000-0x000030ff
    IO window: 0x00003400-0x000034ff
    PREFETCH window: 0x38000000-0x3bffffff
    MEM window: 0x3c000000-0x3fffffff
    ACPI: PCI Interrupt 0000:00:02.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    ACPI: PCI Interrupt 0000:00:02.1[b] -> Link [LNKB] -> GSI 5 (level, low) -> IRQ 5
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    TCP: Hash tables configured (established 16384 bind 16384)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 662k freed
    Simple Boot Flag at 0x35 set to 0x1
    IBM machine detected. Enabling interrupts during APM calls.
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1006
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    pci 0000:00:03.0: Firmware left e100 interrupts enabled; disabling
    pci 0000:01:00.0: Boot video device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled
    serial 00:0c: activated
    00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    ACPI: PCI Interrupt 0000:00:03.1[A] -> Link [LNKC] -> GSI 9 (level, low) -> IRQ 9
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 264k freed
    input: AT Translated Set 2 keyboard as /class/input/input1
    Switched to high resolution mode on CPU 0
    ACPI: ACPI Dock Station Driver
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ata_piix 0000:00:07.1: version 2.12
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1850 irq 14
    ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1858 irq 15
    ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    ata1.00: 195371568 sectors, multi 16: LBA48
    ata1.00: configured for UDMA/33
    ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T20L, NR02, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA AB21 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20L NR02 PQ: 0 ANSI: 5
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda:<4>Driver 'sr' needs updating - please use bus_type methods
    sda1 sda2 sda3 sda4
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    ReiserFS: sda2: found reiserfs format "3.6" with standard journal
    ReiserFS: sda2: using ordered data mode
    ReiserFS: sda2: journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: sda2: checking transaction log (sda2)
    ReiserFS: sda2: Using r5 hash to sort names
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k
    Non-volatile memory driver v1.2
    thinkpad_acpi: ThinkPad ACPI Extras v0.20
    thinkpad_acpi: http://ibm-acpi.sf.net/
    thinkpad_acpi: ThinkPad BIOS 13ET14WW (1.00c), EC unknown
    Registered led device: tpacpi::thinklight
    thinkpad_acpi: another device driver is already handling bay events
    thinkpad_acpi: disabling subdriver bay
    Registered led device: tpacpi::power
    Registered led device: tpacpi:orange:batt
    Registered led device: tpacpi:green:batt
    Registered led device: tpacpi::dock_active
    Registered led device: tpacpi::bay_active
    Registered led device: tpacpi::dock_batt
    Registered led device: tpacpi::unknown_led
    Registered led device: tpacpi::standby
    input: ThinkPad Extra Buttons as /class/input/input2
    e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    ACPI: PCI Interrupt 0000:00:03.0[A] -> Link [LNKC] -> GSI 9 (level, low) -> IRQ 9
    e100: eth0: e100_probe: addr 0xf0120000, irq 9, MAC addr 00:03:47:0f:de:3d
    eepro100.c:v1.09j-t 9/29/99 Donald Becker
    eepro100.c: $Revision: 1.36 $ 2000/11/17 Modified by Andrey V. Savochkin <[email protected]> and others
    ACPI: PCI Interrupt 0000:00:05.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    gameport: CS46xx Gameport is pci0000:00:05.0/gameport0, speed 1807kHz
    Linux agpgart interface v0.103
    agpgart: Detected an Intel 440BX Chipset.
    agpgart: AGP aperture is 64M @ 0xf4000000
    [drm] Initialized drm 1.1.0 20060810
    ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    [drm] Initialized r128 2.5.0 20030725 on minor 0
    ath_hal: module license 'Proprietary' taints kernel.
    AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
    fuse init (API version 7.9)
    Marking TSC unstable due to: cpufreq changes.
    /proc/exmap: insert
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Power Button (FF) as /class/input/input3
    ACPI: Power Button (FF) [PWRF]
    input: Lid Switch as /class/input/input4
    ACPI: Lid Switch [LID]
    input: Sleep Button (CM) as /class/input/input5
    ACPI: Sleep Button (CM) [SLPB]
    Clocksource tsc unstable (delta = 142842086 ns)
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    ACPI: ACPI0007:00 is registered as cooling_device0
    ACPI: Processor [CPU] (supports 8 throttling states)
    ACPI: LNXTHERM:01 is registered as thermal_zone0
    ACPI: Thermal Zone [THM0] (50 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Yenta: CardBus bridge found at 0000:00:02.0 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.0, mfunc 0x00001000, devctl 0x66
    spurious 8259A interrupt: IRQ7.
    Yenta: ISA IRQ mask 0x0498, PCI irq 11
    Socket status: 30000020
    Yenta: CardBus bridge found at 0000:00:02.1 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.1, mfunc 0x00001000, devctl 0x66
    Yenta: ISA IRQ mask 0x0498, PCI irq 5
    Socket status: 30000006
    pccard: CardBus card inserted into slot 0
    ath_pci 0000:02:00.0: enabling device (0000 -> 0002)
    ACPI: PCI Interrupt 0000:02:00.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    input: PC Speaker as /class/input/input6
    piix4_smbus 0000:00:07.3: Found 0000:00:07.3 device
    piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    piix4_smbus: probe of 0000:00:07.3 failed with error -1
    USB Universal Host Controller Interface driver v3.0
    ACPI: PCI Interrupt 0000:00:07.2[D] -> Link [LNKD] -> GSI 5 (level, low) -> IRQ 5
    uhci_hcd 0000:00:07.2: UHCI Host Controller
    uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:07.2: irq 5, io base 0x00001860
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    input: Video Bus as /class/input/input7
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    input: TPPS/2 IBM TrackPoint as /class/input/input8
    PPP generic driver version 2.4.2
    parport_pc 00:0d: activated
    parport_pc 00:0d: reported by Plug and Play ACPI
    parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
    NET: Registered protocol family 23
    nsc-ircc 00:0e: activated
    nsc-ircc, chip->init
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    IrDA: Registered device irda0
    nsc-ircc, Found dongle: Reserved
    MadWifi: ath_attach: Switching rfkill capability off.
    wifi0: Atheros AR2413 chip found (MAC 7.8, PHY 2112A 4.5, Radio 5.6)
    ath_pci: wifi0: Atheros 5212: mem=0x34000000, irq=11
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    lp0: using parport0 (interrupt-driven).
    ppdev: user-space parallel port driver
    JFS: nTxBlock = 4027, nTxLock = 32219
    Adding 1100444k swap on /dev/sda4. Priority:-1 extents:1 across:1100444k
    warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
    conservative governor failed, too long transition latency of HW, fallback to performance governor
    thinkpad_acpi: requested hot key mask 0x0000ffff, forced to 0x00008000 (NVRAM poll mask is 0x00fb8000): no firmware mask support
    I've tried multiple options in the BIOS. You can select AGP or PCI as the card for the root display device. The default is PCI so if there's a docked PCI card at POST, the BIOS will use that for the root display device... otherwise it will use the built in card. You can also select the root display device as LCD or CRT or both. The default is CRT so if there is an external monitor that's where the bootloader menu and such will appear, otherwise the laptop's own display gets used. Even if I've understood these incorrectly, all combinations yield a PCI video card that is not detected by lspci.
    I've also tried loading the module dock right after thinkpad_acpi. It loads and appears in lsmod but it doesn't help the situation at all. It also doesn't add a dock file to /proc/acpi/ibm. I also tried passing pci=routirq to the kernel, whatever that does and I've tried changing the four PCI related IRQ numbers in the BIOS and this has not helped.

    I did upgrade the kernel yesterday and it caused the syntax of dmesg to change somewhat. Here is a docked dmesg from 2.6.27:
    Linux version 2.6.27-ARCH (root@architect) (gcc version 4.3.2 (GCC) ) #1 SMP PREEMPT Sun Oct 12 15:16:25 CEST 2008
    PAT WC disabled due to known CPU erratum.
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
    BIOS-e820: 000000001fff0000 - 000000001fffec00 (ACPI data)
    BIOS-e820: 000000001fffec00 - 0000000020000000 (ACPI NVS)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    last_pfn = 0x1fff0 max_arch_pfn = 0x100000
    kernel direct mapping tables up to 1fff0000 @ 7000-d000
    RAMDISK: 00e4d000 - 00effb5b
    DMI 2.3 present.
    ACPI: RSDP 000F7160, 0014 (r0 PTLTD )
    ACPI: RSDT 1FFF53D5, 002C (r1 PTLTD RSDT 6040000 LTP 0)
    ACPI: FACP 1FFFEB65, 0074 (r1 IBM TP-13 6040000 0)
    ACPI: DSDT 1FFF5401, 9764 (r1 IBM TP-13 6040000 MSFT 100000C)
    ACPI: FACS 1FFFF000, 0040
    ACPI: BOOT 1FFFEBD9, 0027 (r1 PTLTD $SBFTBL$ 6040000 LTP 1)
    0MB HIGHMEM available.
    511MB LOWMEM available.
    mapped low ram: 0 - 1fff0000
    low ram: 00000000 - 1fff0000
    bootmap 00002000 - 00006000
    (9 early reservations) ==> bootmem [0000000000 - 001fff0000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 000050c280] TEXT DATA BSS ==> [0000100000 - 000050c280]
    #4 [0000e4d000 - 0000effb5b] RAMDISK ==> [0000e4d000 - 0000effb5b]
    #5 [000050d000 - 0000510000] INIT_PG_TABLE ==> [000050d000 - 0000510000]
    #6 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000]
    #7 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000]
    #8 [0000002000 - 0000006000] BOOTMAP ==> [0000002000 - 0000006000]
    Zone PFN ranges:
    DMA 0x00000000 -> 0x00001000
    Normal 0x00001000 -> 0x0001fff0
    HighMem 0x0001fff0 -> 0x0001fff0
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000000 -> 0x0000009f
    0: 0x00000100 -> 0x0001fff0
    On node 0 totalpages: 130959
    free_area_init_node: node 0, pgdat c03d9580, node_mem_map c1000000
    DMA zone: 3967 pages, LIFO batch:0
    Normal zone: 125968 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x1008
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    mapped APIC to ffffb000 (01402000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 30000000 (gap: 20000000:dff80000)
    PERCPU: Allocating 39324 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 1, nr_node_ids 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 129935
    Kernel command line: BOOT_IMAGE=arch ro root=802 hpet=force pci=routeirq acpi_osi=Linux panic=10
    ACPI: Added _OSI(Linux)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 2048 (order: 11, 8192 bytes)
    TSC: PIT calibration confirmed by PMTIMER.
    TSC: using PIT calibration value
    Detected 697.407 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Memory: 514248k/524224k available (2151k kernel code, 9460k reserved, 844k data, 288k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee8000 - 0xfffff000 (1116 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
    lowmem : 0xc0000000 - 0xdfff0000 ( 511 MB)
    .init : 0xc03f3000 - 0xc043b000 ( 288 kB)
    .data : 0xc0319f76 - 0xc03ed360 ( 844 kB)
    .text : 0xc0100000 - 0xc0319f76 (2151 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay loop (skipped), value calculated using timer frequency.. 1395.93 BogoMIPS (lpj=2324690)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 16K, L1 D cache: 16K
    CPU: L2 cache: 256K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 9k freed
    ACPI: Core revision 20080609
    ACPI: Checking initramfs for custom DSDT
    ACPI: setting ELCR to 0200 (from 0e00)
    weird, boot CPU (#0) not listedby the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (1395.93 BogoMIPS).
    net_namespace: 832 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfd94f, last bus=14
    PCI: Using configuration type 1 for base access
    ACPI: EC: Look up EC in DSDT
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in interrupt mode
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: 0000:00:00.0 reg 10 32bit mmio: [f4000000, f7ffffff]
    PCI: 0000:00:02.0 reg 10 32bit mmio: [50000000, 50000fff]
    pci 0000:00:02.0: supports D1
    pci 0000:00:02.0: supports D2
    pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.0: PME# disabled
    PCI: 0000:00:02.1 reg 10 32bit mmio: [50100000, 50100fff]
    pci 0000:00:02.1: supports D1
    pci 0000:00:02.1: supports D2
    pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.1: PME# disabled
    PCI: 0000:00:03.0 reg 10 32bit mmio: [f0120000, f0120fff]
    PCI: 0000:00:03.0 reg 14 io port: [1800, 183f]
    PCI: 0000:00:03.0 reg 18 32bit mmio: [f0100000, f011ffff]
    PCI: 0000:00:03.0 reg 30 32bit mmio: [0, fffff]
    pci 0000:00:03.0: supports D1
    pci 0000:00:03.0: supports D2
    pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:03.0: PME# disabled
    PCI: 0000:00:03.1 reg 10 io port: [1840, 1847]
    PCI: 0000:00:03.1 reg 14 32bit mmio: [f0121000, f0121fff]
    pci 0000:00:03.1: supports D1
    pci 0000:00:03.1: supports D2
    pci 0000:00:03.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:03.1: PME# disabled
    pci 0000:00:04.0: supports D1
    pci 0000:00:04.0: supports D2
    PCI: 0000:00:05.0 reg 10 32bit mmio: [f0122000, f0122fff]
    PCI: 0000:00:05.0 reg 14 32bit mmio: [f0000000, f00fffff]
    pci 0000:00:05.0: supports D1
    pci 0000:00:05.0: supports D2
    PCI: 0000:00:07.1 reg 20 io port: [1850, 185f]
    PCI: 0000:00:07.2 reg 20 io port: [1860, 187f]
    pci 0000:00:07.3: quirk: region 1000-103f claimed by PIIX4 ACPI
    pci 0000:00:07.3: quirk: region 1040-104f claimed by PIIX4 SMB
    pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    pci 0000:00:07.3: PIIX4 devres I PIO at 03f0-03f7
    pci 0000:00:07.3: PIIX4 devres J PIO at 002e-002f
    PCI: 0000:01:00.0 reg 10 32bit mmio: [f8000000, fbffffff]
    PCI: 0000:01:00.0 reg 14 io port: [2000, 20ff]
    PCI: 0000:01:00.0 reg 18 32bit mmio: [f0200000, f0203fff]
    PCI: 0000:01:00.0 reg 30 32bit mmio: [0, 1ffff]
    pci 0000:01:00.0: supports D1
    pci 0000:01:00.0: supports D2
    PCI: bridge 0000:00:01.0 io port: [2000, 2fff]
    PCI: bridge 0000:00:01.0 32bit mmio: [f0200000, f02fffff]
    PCI: bridge 0000:00:01.0 32bit mmio pref: [f8000000, fbffffff]
    PCI: 0000:08:01.0 reg 10 io port: [3020, 3027]
    PCI: 0000:08:01.0 reg 14 io port: [3014, 3017]
    PCI: 0000:08:01.0 reg 18 io port: [3018, 301f]
    PCI: 0000:08:01.0 reg 1c io port: [3010, 3013]
    PCI: 0000:08:01.0 reg 20 io port: [3000, 300f]
    pci 0000:08:01.0: supports D1
    pci 0000:08:01.0: supports D2
    PCI: 0000:08:02.0 reg 10 32bit mmio: [52000000, 52000fff]
    pci 0000:08:02.0: supports D1
    pci 0000:08:02.0: supports D2
    pci 0000:08:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:08:02.0: PME# disabled
    PCI: 0000:08:02.1 reg 10 32bit mmio: [53000000, 53000fff]
    pci 0000:08:02.1: supports D1
    pci 0000:08:02.1: supports D2
    pci 0000:08:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:08:02.1: PME# disabled
    pci 0000:00:04.0: transparent bridge
    PCI: bridge 0000:00:04.0 io port: [0, fff]
    PCI: bridge 0000:00:04.0 32bit mmio: [0, fffff]
    PCI: bridge 0000:00:04.0 32bit mmio pref: [0, fffff]
    bus 00 -> node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.DOCK._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11)
    ACPI: Power Resource [PSER] (off)
    ACPI: Power Resource [PSIO] (on)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:04.0 BAR 8 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:04.0 BAR 9 (0x0-0xfffff), disabling
    pnp 00:02: io resource (0x22-0x22) overlaps 0000:00:04.0 BAR 7 (0x0-0xfff), disabling
    pnp 00:02: io resource (0x92-0x92) overlaps 0000:00:04.0 BAR 7 (0x0-0xfff), disabling
    pnp 00:02: io resource (0xb2-0xb3) overlaps 0000:00:04.0 BAR 7 (0x0-0xfff), disabling
    pnp 00:0a: io resource (0x2e-0x2f) overlaps 0000:00:04.0 BAR 7 (0x0-0xfff), disabling
    pnp: PnP ACPI: found 15 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 9
    PCI: setting IRQ 9 as level-triggered
    pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 9
    pci 0000:00:02.1: PCI INT B -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    pci 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:00:03.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10
    PCI: setting IRQ 10 as level-triggered
    pci 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    pci 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    pci 0000:08:01.0: PCI INT A -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    pci 0000:08:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:08:02.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:00:04.0: BAR 7: can't allocate resource
    pci 0000:00:04.0: BAR 8: can't allocate resource
    pci 0000:00:04.0: BAR 9: can't allocate resource
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:00: iomem range 0x100000-0x1fffffff could not be reserved
    system 00:00: iomem range 0xfff80000-0xffffffff could not be reserved
    system 00:02: ioport range 0x1000-0x103f has been reserved
    system 00:02: ioport range 0x1040-0x104f has been reserved
    system 00:02: ioport range 0xfe00-0xfe0f has been reserved
    system 00:09: ioport range 0x15e0-0x15ef has been reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: 0x2000-0x2fff
    pci 0000:00:01.0: MEM window: 0xf0200000-0xf02fffff
    pci 0000:00:01.0: PREFETCH window: 0x000000f8000000-0x000000fbffffff
    pci 0000:00:02.0: CardBus bridge, secondary bus 0000:0f
    pci 0000:00:02.0: IO window: 0x001400-0x0014ff
    pci 0000:00:02.0: IO window: 0x001c00-0x001cff
    pci 0000:00:02.0: PREFETCH window: 0x30000000-0x33ffffff
    pci 0000:00:02.0: MEM window: 0x34000000-0x37ffffff
    pci 0000:00:02.1: CardBus bridge, secondary bus 0000:13
    pci 0000:00:02.1: IO window: 0x003400-0x0034ff
    pci 0000:00:02.1: IO window: 0x003800-0x0038ff
    pci 0000:00:02.1: PREFETCH window: 0x38000000-0x3bffffff
    pci 0000:00:02.1: MEM window: 0x3c000000-0x3fffffff
    pci 0000:08:02.0: CardBus bridge, secondary bus 0000:09
    pci 0000:08:02.0: IO window: 0x004000-0x0040ff
    pci 0000:08:02.0: IO window: 0x004400-0x0044ff
    pci 0000:08:02.0: PREFETCH window: 0x48000000-0x4bffffff
    pci 0000:08:02.0: MEM window: 0x40000000-0x43ffffff
    pci 0000:08:02.1: CardBus bridge, secondary bus 0000:0d
    pci 0000:08:02.1: IO window: 0x004800-0x0048ff
    pci 0000:08:02.1: IO window: 0x004c00-0x004cff
    pci 0000:08:02.1: PREFETCH window: 0x4c000000-0x4fffffff
    pci 0000:08:02.1: MEM window: 0x44000000-0x47ffffff
    pci 0000:00:04.0: PCI bridge, secondary bus 0000:08
    pci 0000:00:04.0: IO window: 0x4000-0x4fff
    pci 0000:00:04.0: MEM window: 0x40000000-0x47ffffff
    pci 0000:00:04.0: PREFETCH window: 0x00000048000000-0x0000004fffffff
    pci 0000:00:02.0: power state changed by ACPI to D0
    pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    pci 0000:00:02.1: power state changed by ACPI to D0
    pci 0000:00:02.1: PCI INT B -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    pci 0000:08:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:08:02.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    bus: 00 index 0 io port: [0, ffff]
    bus: 00 index 1 mmio: [0, ffffffff]
    bus: 01 index 0 io port: [2000, 2fff]
    bus: 01 index 1 mmio: [f0200000, f02fffff]
    bus: 01 index 2 mmio: [f8000000, fbffffff]
    bus: 01 index 3 mmio: [0, 0]
    bus: 0f index 0 io port: [1400, 14ff]
    bus: 0f index 1 io port: [1c00, 1cff]
    bus: 0f index 2 mmio: [30000000, 33ffffff]
    bus: 0f index 3 mmio: [34000000, 37ffffff]
    bus: 13 index 0 io port: [3400, 34ff]
    bus: 13 index 1 io port: [3800, 38ff]
    bus: 13 index 2 mmio: [38000000, 3bffffff]
    bus: 13 index 3 mmio: [3c000000, 3fffffff]
    bus: 08 index 0 io port: [4000, 4fff]
    bus: 08 index 1 mmio: [40000000, 47ffffff]
    bus: 08 index 2 mmio: [48000000, 4fffffff]
    bus: 08 index 3 io port: [0, ffff]
    bus: 08 index 4 mmio: [0, ffffffff]
    bus: 09 index 0 io port: [4000, 40ff]
    bus: 09 index 1 io port: [4400, 44ff]
    bus: 09 index 2 mmio: [48000000, 4bffffff]
    bus: 09 index 3 mmio: [40000000, 43ffffff]
    bus: 0d index 0 io port: [4800, 48ff]
    bus: 0d index 1 io port: [4c00, 4cff]
    bus: 0d index 2 mmio: [4c000000, 4fffffff]
    bus: 0d index 3 mmio: [44000000, 47ffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    TCP: Hash tables configured (established 16384 bind 16384)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 714k freed
    Simple Boot Flag at 0x35 set to 0x1
    IBM machine detected. Enabling interrupts during APM calls.
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1006
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    pci 0000:00:03.0: Firmware left e100 interrupts enabled; disabling
    pci 0000:01:00.0: Boot video device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver4 ports, IRQ sharing disabled
    serial 00:0c: activated
    00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    serial 0000:00:03.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 288k freed
    Switched to high resolution mode on CPU 0
    input: AT Translated Set 2 keyboard as /class/input/input1
    ACPI: ACPI Dock Station Driver
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ata_piix 0000:00:07.1: version 2.12
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1850 irq 14
    ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1858 irq 15
    ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    ata1.00: 195371568 sectors, multi 16: LBA48
    ata1.00: configured for UDMA/33
    ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T20L, NR02, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA AB21 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20L NR02 PQ: 0 ANSI: 5
    pata_acpi 0000:08:01.0: PCI INT A -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    pata_acpi 0000:08:01.0: PCI INT A disabled
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    Driver 'sr' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    ReiserFS: sda2: found reiserfs format "3.6" with standard journal
    ReiserFS: sda2: using ordered data mode
    ReiserFS: sda2: journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: sda2: checking transaction log (sda2)
    ReiserFS: sda2: Using r5 hash to sort names
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k
    Non-volatile memory driver v1.2
    thinkpad_acpi: ThinkPad ACPI Extras v0.21
    thinkpad_acpi: http://ibm-acpi.sf.net/
    thinkpad_acpi: ThinkPad BIOS 13ET14WW (1.00c), EC unknown
    Registered led device: tpacpi::thinklight
    thinkpad_acpi: another device driver is already handling bay events
    thinkpad_acpi: disabling subdriver bay
    Registered led device: tpacpi::power
    Registered led device: tpacpi:orange:batt
    Registered led device: tpacpi:green:batt
    Registered led device: tpacpi::dock_active
    Registered led device: tpacpi::bay_active
    Registered led device: tpacpi::dock_batt
    Registered led device: tpacpi::unknown_led
    Registered led device: tpacpi::standby
    input: ThinkPad Extra Buttons as /class/input/input2
    e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    e100 0000:00:03.0: PME# disabled
    e100: eth0: e100_probe: addr 0xf0120000, irq 11, MAC addr 00:03:47:0f:de:3d
    eepro100.c:v1.09j-t 9/29/99 Donald Becker
    eepro100.c: $Revision: 1.36 $ 2000/11/17 Modified by Andrey V. Savochkin <[email protected]> and others
    Sound Fusion CS46xx 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    gameport: CS46xx Gameport is pci0000:00:05.0/gameport0, speed 1807kHz
    Linux agpgart interface v0.103
    agpgart-intel 0000:00:00.0: Intel 440BX Chipset
    agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0xf4000000
    [drm] Initialized drm 1.1.0 20060810
    pci 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    [drm] Initialized r128 2.5.0 20030725 on minor 0
    ath_hal: module license 'Proprietary' taints kernel.
    AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
    fuse init (API version 7.9)
    Marking TSC unstable due to cpufreq changes
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Power Button (FF) as /class/input/input3
    ACPI: Power Button (FF) [PWRF]
    input: Lid Switch as /class/input/input4
    ACPI: Lid Switch [LID]
    input: Sleep Button (CM) as /class/input/input5
    ACPI: Sleep Button (CM) [SLPB]
    Clocksource tsc unstable (delta = 142865538 ns)
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    processor ACPI0007:00: registered as cooling_device0
    ACPI: Processor [CPU] (supports 8 throttling states)
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THM0] (24 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    Yenta: CardBus bridge found at 0000:00:02.0 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.0, mfunc 0x00001000, devctl 0x66
    Yenta: ISA IRQ mask 0x00b8, PCI irq 9
    Socket status: 30000020
    Yenta: CardBus bridge found at 0000:00:02.1 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.1, mfunc 0x00001000, devctl 0x66
    Yenta: ISA IRQ mask 0x00b8, PCI irq 9
    Socket status: 30000006
    Yenta: CardBus bridge found at 0000:08:02.0 [1014:0148]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:08:02.0, mfunc 0x00001002, devctl 0x66
    irq 9: nobody cared (try booting with the "irqpoll" option)
    Pid: 1302, comm: modprobe Tainted: P 2.6.27-ARCH #1
    [<c015ce54>] __report_bad_irq+0x24/0x90
    [<c015d142>] note_interrupt+0x282/0x2c0
    [<c015c450>] handle_IRQ_event+0x30/0x60
    [<c015d9b3>] handle_level_irq+0xd3/0x100
    [<c010710b>] do_IRQ+0x3b/0x70
    [<c0104927>] common_interrupt+0x23/0x28
    [<c03100d8>] cache_add_dev+0x272/0x44a
    [<c015c430>] handle_IRQ_event+0x10/0x60
    [<c015d95d>] handle_level_irq+0x7d/0x100
    [<c010710b>] do_IRQ+0x3b/0x70
    [<c015cbc1>] setup_irq+0x121/0x250
    [<c0104927>] common_interrupt+0x23/0x28
    [<c015007b>] rt_mutex_adjust_prio_chain+0x20b/0x340
    [<e0c168cc>] yenta_probe_cb_irq+0x9c/0x110 [yenta_socket]
    [<e0c16c58>] ti12xx_override+0x238/0x6a0 [yenta_socket]
    [<e0c17fe2>] yenta_probe+0x622/0x673 [yenta_socket]
    [<c01d4012>] sysfs_add_one+0x12/0x50
    [<c01d40bd>] sysfs_addrm_start+0x6d/0xc0
    [<c0318f05>] _spin_unlock+0x5/0x20
    [<c020bce0>] pci_match_device+0xa0/0xc0
    [<c020c4b6>] pci_device_probe+0x56/0x80
    [<c026da76>] driver_probe_device+0x86/0x1a0
    [<c0318af4>] _spin_lock_irqsave+0x34/0x50
    [<c026dc01>] __driver_attach+0x71/0x80
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026d3a4>] bus_for_each_dev+0x44/0x70
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026d906>] driver_attach+0x16/0x20
    [<c026db90>] __driver_attach+0x0/0x80
    [<c026cd37>] bus_add_driver+0x1a7/0x220
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026dd9c>] driver_register+0x5c/0x130
    [<e08be000>] yenta_socket_init+0x0/0x14 [yenta_socket]
    [<c020c6f7>] __pci_register_driver+0x47/0x90
    [<e08be000>] yenta_socket_init+0x0/0x14 [yenta_socket]
    [<c010111a>] do_one_initcall+0x2a/0x160
    [<c0123480>] hrtick_start_fair+0x190/0x1b0
    [<c0126635>] check_preempt_wakeup+0xe5/0x120
    [<c0126def>] try_to_wake_up+0xaf/0x180
    [<c015474b>] sys_init_module+0x8b/0x1b0
    [<c0103ef3>] sysenter_do_call+0x12/0x33
    =======================
    handlers:
    [<c0229cfc>] (acpi_irq+0x0/0x1f)
    [<e0a663c0>] (snd_cs46xx_interrupt+0x0/0x1f0 [snd_cs46xx])
    [<e0c17880>] (yenta_interrupt+0x0/0xf0 [yenta_socket])
    [<e0c17880>] (yenta_interrupt+0x0/0xf0 [yenta_socket])
    Disabling IRQ #9
    pccard: CardBus card inserted into slot 0
    PCI: 0000:0f:00.0 reg 10 32bit mmio: [0, ffff]
    ath_pci 0000:0f:00.0: enabling device (0000 -> 0002)
    ath_pci 0000:0f:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    input: PC Speaker as /class/input/input6
    USB Universal Host Controller Interface driver v3.0
    input: Video Bus as /class/input/input7
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    Error: Driver 'pcspkr' is already registered, aborting...
    NET: Registered protocol family 23
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    input: TPPS/2 IBM TrackPoint as /class/input/input8
    parport_pc 00:0d: activated
    parport_pc 00:0d: reported by Plug and Play ACPI
    parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
    nsc-ircc 00:0e: activated
    nsc-ircc, chip->init
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    IrDA: Registered device irda0
    nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
    PPP generic driver version 2.4.2
    Uniform Multi-Platform E-IDE driver
    MadWifi: ath_attach: Switching rfkill capability off.
    wifi0: Atheros AR2413 chip found (MAC 7.8, PHY 2112A 4.5, Radio 5.6)
    ppdev: user-space parallel port driver
    ath_pci: wifi0: Atheros 5212: mem=0x34000000, irq=9
    Yenta: ISA IRQ mask 0x0038, PCI irq 11
    Socket status: 30000006
    pcmcia: parent PCI bridge I/O window: 0x4000 - 0x4fff
    cs: IO port probe 0x4000-0x4fff: clean.
    pcmcia: parent PCI bridge Memory window: 0x40000000 - 0x47ffffff
    pcmcia: parent PCI bridge Memory window: 0x48000000 - 0x4fffffff
    cmd64x 0000:08:01.0: IDE controller (0x1095:0x0648 rev 0x01)
    CMD64x_IDE 0000:08:01.0: PCI INT A -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    cmd64x 0000:08:01.0: 100% native mode on irq 9
    ide0: BM-DMA at 0x3000-0x3007
    ide1: BM-DMA at 0x3008-0x300f
    Probing IDE interface ide0...
    Probing IDE interface ide1...
    ide0 at 0x3020-0x3027,0x3016 on irq 9
    ide1 at 0x3018-0x301f,0x3012 on irq 9
    piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    piix4_smbus: probe of 0000:00:07.3 failed with error -1
    Yenta: CardBus bridge found at 0000:08:02.1 [1014:0148]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:08:02.1, mfunc 0x00001002, devctl 0x66
    irq 9: nobody cared (try booting with the "irqpoll" option)
    Pid: 1302, comm: modprobe Tainted: P 2.6.27-ARCH #1
    [<c015ce54>] __report_bad_irq+0x24/0x90
    [<c015d142>] note_interrupt+0x282/0x2c0
    [<c015c450>] handle_IRQ_event+0x30/0x60
    [<c015d9b3>] handle_level_irq+0xd3/0x100
    [<c010710b>] do_IRQ+0x3b/0x70
    [<c0104927>] common_interrupt+0x23/0x28
    [<c031007b>] cache_add_dev+0x215/0x44a
    [<c03100d8>] cache_add_dev+0x272/0x44a
    [<c015c430>] handle_IRQ_event+0x10/0x60
    [<c015d95d>] handle_level_irq+0x7d/0x100
    [<c010710b>] do_IRQ+0x3b/0x70
    [<c015cbc1>] setup_irq+0x121/0x250
    [<c0104927>] common_interrupt+0x23/0x28
    [<c015007b>] rt_mutex_adjust_prio_chain+0x20b/0x340
    [<e0c168cc>] yenta_probe_cb_irq+0x9c/0x110 [yenta_socket]
    [<e0c16b97>] ti12xx_override+0x177/0x6a0 [yenta_socket]
    [<e0c17fe2>] yenta_probe+0x622/0x673 [yenta_socket]
    [<c01d4012>] sysfs_add_one+0x12/0x50
    [<c01d40bd>] sysfs_addrm_start+0x6d/0xc0
    [<c0318f05>] _spin_unlock+0x5/0x20
    [<c020bce0>] pci_match_device+0xa0/0xc0
    [<c020c4b6>] pci_device_probe+0x56/0x80
    [<c026da76>] driver_probe_device+0x86/0x1a0
    [<c0318af4>] _spin_lock_irqsave+0x34/0x50
    [<c026dc01>] __driver_attach+0x71/0x80
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026d3a4>] bus_for_each_dev+0x44/0x70
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026d906>] driver_attach+0x16/0x20
    [<c026db90>] __driver_attach+0x0/0x80
    [<c026cd37>] bus_add_driver+0x1a7/0x220
    [<c020c400>] pci_device_remove+0x0/0x40
    [<c026dd9c>] driver_register+0x5c/0x130
    [<e08be000>] yenta_socket_init+0x0/0x14 [yenta_socket]
    [<c020c6f7>] __pci_register_driver+0x47/0x90
    [<e08be000>] yenta_socket_init+0x0/0x14 [yenta_socket]
    [<c010111a>] do_one_initcall+0x2a/0x160
    [<c0123480>] hrtick_start_fair+0x190/0x1b0
    [<c0126635>] check_preempt_wakeup+0xe5/0x120
    [<c0126def>] try_to_wake_up+0xaf/0x180
    [<c015474b>] sys_init_module+0x8b/0x1b0
    [<c0103ef3>] sysenter_do_call+0x12/0x33
    =======================
    handlers:
    [<c0229cfc>] (acpi_irq+0x0/0x1f)
    [<e0a663c0>] (snd_cs46xx_interrupt+0x0/0x1f0 [snd_cs46xx])
    [<e0c17880>] (yenta_interrupt+0x0/0xf0 [yenta_socket])
    [<e0c17880>] (yenta_interrupt+0x0/0xf0 [yenta_socket])
    [<e0b3fdf0>] (ath_intr+0x0/0x4880 [ath_pci])
    [<e0cf28a0>] (ide_intr+0x0/0x220 [ide_core])
    [<e0cf28a0>] (ide_intr+0x0/0x220 [ide_core])
    Disabling IRQ #9
    Yenta: ISA IRQ mask 0x0038, PCI irq 11
    Socket status: 30000006
    pcmcia: parent PCI bridge I/O window: 0x4000 - 0x4fff
    cs: IO port probe 0x4000-0x4fff: clean.
    pcmcia: parent PCI bridge Memory window: 0x40000000 - 0x47ffffff
    pcmcia: parent PCI bridge Memory window: 0x48000000 - 0x4fffffff
    uhci_hcd 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    uhci_hcd 0000:00:07.2: UHCI Host Controller
    uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:07.2: irq 10, io base 0x00001860
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    usb 1-1: new full speed USB device using uhci_hcd and address 2
    usb 1-1: configuration #1 chosen from 1 choice
    hub 1-1:1.0: USB hub found
    hub 1-1:1.0: 4 ports detected
    lp0: using parport0 (interrupt-driven).
    usb 1-1.4: new low speed USB device using uhci_hcd and address 3
    usb 1-1.4: configuration #1 chosen from 1 choice
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    usbcore: registered new interface driver hiddev
    input: Logitech Logitech USB Optical Mouse as /class/input/input9
    input,hidraw0: USB HID v1.11 Mouse [Logitech Logitech USB Optical Mouse] on usb-0000:00:07.2-1.4
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    ACPI: EC: missing confirmations, switch off interrupt mode.
    JFS: nTxBlock = 4026, nTxLock = 32211
    Adding 1100444k swap on /dev/sda4. Priority:-1 extents:1 across:1100444k
    warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
    conservative governor failed, too long transition latency of HW, fallback to performance governor
    thinkpad_acpi: requested hot key mask 0x0000ffff, forced to 0x00008000 (NVRAM poll mask is 0x00fb8000): no firmware mask support
    Note the "can't allocate resource areas"... And here is the new dockless dmesg:
    Linux version 2.6.27-ARCH (root@architect) (gcc version 4.3.2 (GCC) ) #1 SMP PREEMPT Sun Oct 12 15:16:25 CEST 2008
    PAT WC disabled due to known CPU erratum.
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009f800 (usable)
    BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000001fff0000 (usable)
    BIOS-e820: 000000001fff0000 - 000000001fffec00 (ACPI data)
    BIOS-e820: 000000001fffec00 - 0000000020000000 (ACPI NVS)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    last_pfn = 0x1fff0 max_arch_pfn = 0x100000
    kernel direct mapping tables up to 1fff0000 @ 7000-d000
    RAMDISK: 00e4d000 - 00effb5b
    DMI 2.3 present.
    ACPI: RSDP 000F7160, 0014 (r0 PTLTD )
    ACPI: RSDT 1FFF53D5, 002C (r1 PTLTD RSDT 6040000 LTP 0)
    ACPI: FACP 1FFFEB65, 0074 (r1 IBM TP-13 6040000 0)
    ACPI: DSDT 1FFF5401, 9764 (r1 IBM TP-13 6040000 MSFT 100000C)
    ACPI: FACS 1FFFF000, 0040
    ACPI: BOOT 1FFFEBD9, 0027 (r1 PTLTD $SBFTBL$ 6040000 LTP 1)
    0MB HIGHMEM available.
    511MB LOWMEM available.
    mapped low ram: 0 - 1fff0000
    low ram: 00000000 - 1fff0000
    bootmap 00002000 - 00006000
    (9 early reservations) ==> bootmem [0000000000 - 001fff0000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 000050c280] TEXT DATA BSS ==> [0000100000 - 000050c280]
    #4 [0000e4d000 - 0000effb5b] RAMDISK ==> [0000e4d000 - 0000effb5b]
    #5 [000050d000 - 0000510000] INIT_PG_TABLE ==> [000050d000 - 0000510000]
    #6 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000]
    #7 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000]
    #8 [0000002000 - 0000006000] BOOTMAP ==> [0000002000 - 0000006000]
    Zone PFN ranges:
    DMA 0x00000000 -> 0x00001000
    Normal 0x00001000 -> 0x0001fff0
    HighMem 0x0001fff0 -> 0x0001fff0
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000000 -> 0x0000009f
    0: 0x00000100 -> 0x0001fff0
    On node 0 totalpages: 130959
    free_area_init_node: node 0, pgdat c03d9580, node_mem_map c1000000
    DMA zone: 3967 pages, LIFO batch:0
    Normal zone: 125968 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x1008
    SMP: Allowing 1 CPUs, 0 hotplug CPUs
    Local APIC disabled by BIOS -- you can enable it with "lapic"
    mapped APIC to ffffb000 (01402000)
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 30000000 (gap: 20000000:dff80000)
    PERCPU: Allocating 39324 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 1, nr_node_ids 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 129935
    Kernel command line: BOOT_IMAGE=arch ro root=802 hpet=force pci=routeirq acpi_osi=Linux panic=10
    ACPI: Added _OSI(Linux)
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 2048 (order: 11, 8192 bytes)
    TSC: PIT calibration confirmed by PMTIMER.
    TSC: using PIT calibration value
    Detected 697.409 MHz processor.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    Memory: 514248k/524224k available (2151k kernel code, 9460k reserved, 844k data, 288k init, 0k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee8000 - 0xfffff000 (1116 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xe0800000 - 0xff7fe000 ( 495 MB)
    lowmem : 0xc0000000 - 0xdfff0000 ( 511 MB)
    .init : 0xc03f3000 - 0xc043b000 ( 288 kB)
    .data : 0xc0319f76 - 0xc03ed360 ( 844 kB)
    .text : 0xc0100000 - 0xc0319f76 (2151 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    CPA: page pool initialized 1 of 1 pages preallocated
    SLUB: Genslabs=12, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    Calibrating delay loop (skipped), value calculated using timer frequency.. 1395.93 BogoMIPS (lpj=2324696)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I cache: 16K, L1 D cache: 16K
    CPU: L2 cache: 256K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    Checking 'hlt' instruction... OK.
    SMP alternatives: switching to UP code
    Freeing SMP alternatives: 9k freed
    ACPI: Core revision 20080609
    ACPI: Checking initramfs for custom DSDT
    ACPI: setting ELCR to 0200 (from 0e00)
    weird, boot CPU (#0) not listedby the BIOS.
    SMP motherboard not detected.
    Local APIC not detected. Using dummy APIC emulation.
    SMP disabled
    Brought up 1 CPUs
    Total of 1 processors activated (1395.93 BogoMIPS).
    net_namespace: 832 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: PCI BIOS revision 2.10 entry at 0xfd94f, last bus=7
    PCI: Using configuration type 1 for base access
    ACPI: EC: Look up EC in DSDT
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using PIC for interrupt routing
    ACPI: EC: GPE = 0x9, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in interrupt mode
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    PCI: 0000:00:00.0 reg 10 32bit mmio: [f4000000, f7ffffff]
    PCI: 0000:00:02.0 reg 10 32bit mmio: [50000000, 50000fff]
    pci 0000:00:02.0: supports D1
    pci 0000:00:02.0: supports D2
    pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.0: PME# disabled
    PCI: 0000:00:02.1 reg 10 32bit mmio: [50100000, 50100fff]
    pci 0000:00:02.1: supports D1
    pci 0000:00:02.1: supports D2
    pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.1: PME# disabled
    PCI: 0000:00:03.0 reg 10 32bit mmio: [f0120000, f0120fff]
    PCI: 0000:00:03.0 reg 14 io port: [1800, 183f]
    PCI: 0000:00:03.0 reg 18 32bit mmio: [f0100000, f011ffff]
    PCI: 0000:00:03.0 reg 30 32bit mmio: [0, fffff]
    pci 0000:00:03.0: supports D1
    pci 0000:00:03.0: supports D2
    pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:03.0: PME# disabled
    PCI: 0000:00:03.1 reg 10 io port: [1840, 1847]
    PCI: 0000:00:03.1 reg 14 32bit mmio: [f0121000, f0121fff]
    pci 0000:00:03.1: supports D1
    pci 0000:00:03.1: supports D2
    pci 0000:00:03.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:03.1: PME# disabled
    PCI: 0000:00:05.0 reg 10 32bit mmio: [f0122000, f0122fff]
    PCI: 0000:00:05.0 reg 14 32bit mmio: [f0000000, f00fffff]
    pci 0000:00:05.0: supports D1
    pci 0000:00:05.0: supports D2
    PCI: 0000:00:07.1 reg 20 io port: [1850, 185f]
    PCI: 0000:00:07.2 reg 20 io port: [1860, 187f]
    pci 0000:00:07.3: quirk: region 1000-103f claimed by PIIX4 ACPI
    pci 0000:00:07.3: quirk: region 1040-104f claimed by PIIX4 SMB
    pci 0000:00:07.3: PIIX4 devres C PIO at 15e8-15ef
    pci 0000:00:07.3: PIIX4 devres I PIO at 03f0-03f7
    pci 0000:00:07.3: PIIX4 devres J PIO at 002e-002f
    PCI: 0000:01:00.0 reg 10 32bit mmio: [f8000000, fbffffff]
    PCI: 0000:01:00.0 reg 14 io port: [2000, 20ff]
    PCI: 0000:01:00.0 reg 18 32bit mmio: [f0200000, f0203fff]
    PCI: 0000:01:00.0 reg 30 32bit mmio: [0, 1ffff]
    pci 0000:01:00.0: supports D1
    pci 0000:01:00.0: supports D2
    PCI: bridge 0000:00:01.0 io port: [2000, 2fff]
    PCI: bridge 0000:00:01.0 32bit mmio: [f0200000, f02fffff]
    PCI: bridge 0000:00:01.0 32bit mmio pref: [f8000000, fbffffff]
    bus 00 -> node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11)
    ACPI: Power Resource [PSER] (off)
    ACPI: Power Resource [PSIO] (on)
    Linux Plug and Play Support v0.97 (c) Adam Belay
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp 00:00: mem resource (0x0-0x9ffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc0000-0xc3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc4000-0xc7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xc8000-0xcbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xcc000-0xcffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd0000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd4000-0xd3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xd8000-0xd7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xdc000-0xdbfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe0000-0xe3fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe4000-0xe7fff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xe8000-0xebfff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xec000-0xeffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp 00:00: mem resource (0xf0000-0xfffff) overlaps 0000:00:03.0 BAR 6 (0x0-0xfffff), disabling
    pnp: PnP ACPI: found 15 devices
    ACPI: ACPI bus type pnp unregistered
    PCI: Using ACPI for IRQ routing
    PCI: Routing PCI interrupts for all devices because "pci=routeirq" specified
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 9
    PCI: setting IRQ 9 as level-triggered
    pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 9
    pci 0000:00:02.1: PCI INT B -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
    PCI: setting IRQ 11 as level-triggered
    pci 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:00:03.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    pci 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10
    PCI: setting IRQ 10 as level-triggered
    pci 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    pci 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    ACPI: RTC can wake from S4
    system 00:00: iomem range 0x100000-0x1fffffff could not be reserved
    system 00:00: iomem range 0xfff80000-0xffffffff could not be reserved
    system 00:02: ioport range 0x1000-0x103f has been reserved
    system 00:02: ioport range 0x1040-0x104f has been reserved
    system 00:02: ioport range 0xfe00-0xfe0f has been reserved
    system 00:09: ioport range 0x15e0-0x15ef has been reserved
    pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:01.0: IO window: 0x2000-0x2fff
    pci 0000:00:01.0: MEM window: 0xf0200000-0xf02fffff
    pci 0000:00:01.0: PREFETCH window: 0x000000f8000000-0x000000fbffffff
    pci 0000:00:02.0: CardBus bridge, secondary bus 0000:02
    pci 0000:00:02.0: IO window: 0x001400-0x0014ff
    pci 0000:00:02.0: IO window: 0x001c00-0x001cff
    pci 0000:00:02.0: PREFETCH window: 0x30000000-0x33ffffff
    pci 0000:00:02.0: MEM window: 0x34000000-0x37ffffff
    pci 0000:00:02.1: CardBus bridge, secondary bus 0000:06
    pci 0000:00:02.1: IO window: 0x003000-0x0030ff
    pci 0000:00:02.1: IO window: 0x003400-0x0034ff
    pci 0000:00:02.1: PREFETCH window: 0x38000000-0x3bffffff
    pci 0000:00:02.1: MEM window: 0x3c000000-0x3fffffff
    pci 0000:00:02.0: power state changed by ACPI to D0
    pci 0000:00:02.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    pci 0000:00:02.1: power state changed by ACPI to D0
    pci 0000:00:02.1: PCI INT B -> Link[LNKB] -> GSI 9 (level, low) -> IRQ 9
    bus: 00 index 0 io port: [0, ffff]
    bus: 00 index 1 mmio: [0, ffffffff]
    bus: 01 index 0 io port: [2000, 2fff]
    bus: 01 index 1 mmio: [f0200000, f02fffff]
    bus: 01 index 2 mmio: [f8000000, fbffffff]
    bus: 01 index 3 mmio: [0, 0]
    bus: 02 index 0 io port: [1400, 14ff]
    bus: 02 index 1 io port: [1c00, 1cff]
    bus: 02 index 2 mmio: [30000000, 33ffffff]
    bus: 02 index 3 mmio: [34000000, 37ffffff]
    bus: 06 index 0 io port: [3000, 30ff]
    bus: 06 index 1 io port: [3400, 34ff]
    bus: 06 index 2 mmio: [38000000, 3bffffff]
    bus: 06 index 3 mmio: [3c000000, 3fffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
    TCP established hash table entries: 16384 (order: 5, 131072 bytes)
    TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
    TCP: Hash tables configured (established 16384 bind 16384)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 714k freed
    Simple Boot Flag at 0x35 set to 0x1
    IBM machine detected. Enabling interrupts during APM calls.
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: overridden by ACPI.
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1006
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:00.0: Limiting direct PCI/PCI transfers
    pci 0000:00:03.0: Firmware left e100 interrupts enabled; disabling
    pci 0000:01:00.0: Boot video device
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver4 ports, IRQ sharing disabled
    serial 00:0c: activated
    00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    serial 0000:00:03.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 288k freed
    Switched to high resolution mode on CPU 0
    input: AT Translated Set 2 keyboard as /class/input/input1
    ACPI: ACPI Dock Station Driver
    SCSI subsystem initialized
    libata version 3.00 loaded.
    ata_piix 0000:00:07.1: version 2.12
    scsi0 : ata_piix
    scsi1 : ata_piix
    ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0x1850 irq 14
    ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0x1858 irq 15
    ata1.00: ATA-6: TOSHIBA MK1032GAX, AB211A, max UDMA/100
    ata1.00: 195371568 sectors, multi 16: LBA48
    ata1.00: configured for UDMA/33
    ata2.00: ATAPI: HL-DT-ST DVDRAM GSA-T20L, NR02, max UDMA/33
    ata2.00: configured for UDMA/33
    scsi 0:0:0:0: Direct-Access ATA TOSHIBA MK1032GA AB21 PQ: 0 ANSI: 5
    scsi 1:0:0:0: CD-ROM HL-DT-ST DVDRAM GSA-T20L NR02 PQ: 0 ANSI: 5
    Driver 'sd' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 0:0:0:0: [sda] 195371568 512-byte hardware sectors (100030 MB)
    sd 0:0:0:0: [sda] Write Protect is off
    sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda: sda1 sda2 sda3 sda4
    Driver 'sr' needs updating - please use bus_type methods
    sd 0:0:0:0: [sda] Attached SCSI disk
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:0:0: Attached scsi CD-ROM sr0
    ReiserFS: sda2: found reiserfs format "3.6" with standard journal
    ReiserFS: sda2: using ordered data mode
    ReiserFS: sda2: journal params: device sda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30
    ReiserFS: sda2: checking transaction log (sda2)
    ReiserFS: sda2: Using r5 hash to sort names
    rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one month, y3k
    Non-volatile memory driver v1.2
    thinkpad_acpi: ThinkPad ACPI Extras v0.21
    thinkpad_acpi: http://ibm-acpi.sf.net/
    thinkpad_acpi: ThinkPad BIOS 13ET14WW (1.00c), EC unknown
    Registered led device: tpacpi::thinklight
    thinkpad_acpi: another device driver is already handling bay events
    thinkpad_acpi: disabling subdriver bay
    Registered led device: tpacpi::power
    Registered led device: tpacpi:orange:batt
    Registered led device: tpacpi:green:batt
    Registered led device: tpacpi::dock_active
    Registered led device: tpacpi::bay_active
    Registered led device: tpacpi::dock_batt
    Registered led device: tpacpi::unknown_led
    Registered led device: tpacpi::standby
    input: ThinkPad Extra Buttons as /class/input/input2
    e100: Intel(R) PRO/100 Network Driver, 3.5.23-k4-NAPI
    e100: Copyright(c) 1999-2006 Intel Corporation
    e100 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
    e100 0000:00:03.0: PME# disabled
    e100: eth0: e100_probe: addr 0xf0120000, irq 11, MAC addr 00:03:47:0f:de:3d
    eepro100.c:v1.09j-t 9/29/99 Donald Becker
    eepro100.c: $Revision: 1.36 $ 2000/11/17 Modified by Andrey V. Savochkin <[email protected]> and others
    Sound Fusion CS46xx 0000:00:05.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    gameport: CS46xx Gameport is pci0000:00:05.0/gameport0, speed 1864kHz
    Linux agpgart interface v0.103
    agpgart-intel 0000:00:00.0: Intel 440BX Chipset
    agpgart-intel 0000:00:00.0: AGP aperture is 64M @ 0xf4000000
    [drm] Initialized drm 1.1.0 20060810
    pci 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    [drm] Initialized r128 2.5.0 20030725 on minor 0
    ath_hal: module license 'Proprietary' taints kernel.
    AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
    fuse init (API version 7.9)
    Marking TSC unstable due to cpufreq changes
    ACPI: AC Adapter [AC] (on-line)
    ACPI: Battery Slot [BAT0] (battery present)
    input: Power Button (FF) as /class/input/input3
    ACPI: Power Button (FF) [PWRF]
    input: Lid Switch as /class/input/input4
    ACPI: Lid Switch [LID]
    input: Sleep Button (CM) as /class/input/input5
    ACPI: Sleep Button (CM) [SLPB]
    Clocksource tsc unstable (delta = 142862504 ns)
    ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3])
    processor ACPI0007:00: registered as cooling_device0
    ACPI: Processor [CPU] (supports 8 throttling states)
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [THM0] (34 C)
    sd 0:0:0:0: Attached scsi generic sg0 type 0
    sr 1:0:0:0: Attached scsi generic sg1 type 5
    pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Yenta: CardBus bridge found at 0000:00:02.0 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.0, mfunc 0x00001000, devctl 0x66
    spurious 8259A interrupt: IRQ7.
    Yenta: ISA IRQ mask 0x00b8, PCI irq 9
    Socket status: 30000020
    Yenta: CardBus bridge found at 0000:00:02.1 [1014:0130]
    Yenta: Using INTVAL to route CSC interrupts to PCI
    Yenta: Routing CardBus interrupts to PCI
    Yenta TI: socket 0000:00:02.1, mfunc 0x00001000, devctl 0x66
    Yenta: ISA IRQ mask 0x00b8, PCI irq 9
    Socket status: 30000006
    shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    pccard: CardBus card inserted into slot 0
    PCI: 0000:02:00.0 reg 10 32bit mmio: [0, ffff]
    ath_pci 0000:02:00.0: enabling device (0000 -> 0002)
    ath_pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 9 (level, low) -> IRQ 9
    usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    input: PC Speaker as /class/input/input6
    USB Universal Host Controller Interface driver v3.0
    uhci_hcd 0000:00:07.2: PCI INT D -> Link[LNKD] -> GSI 10 (level, low) -> IRQ 10
    uhci_hcd 0000:00:07.2: UHCI Host Controller
    uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1
    uhci_hcd 0000:00:07.2: irq 10, io base 0x00001860
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 2 ports detected
    piix4_smbus 0000:00:07.3: IBM system detected; this module may corrupt your serial eeprom! Refusing to load module!
    piix4_smbus: probe of 0000:00:07.3 failed with error -1
    Error: Driver 'pcspkr' is already registered, aborting...
    usb 1-1: new low speed USB device using uhci_hcd and address 2
    input: Video Bus as /class/input/input7
    usb 1-1: configuration #1 chosen from 1 choice
    ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
    IBM TrackPoint firmware: 0x0e, buttons: 3/3
    input: TPPS/2 IBM TrackPoint as /class/input/input8
    NET: Registered protocol family 23
    parport_pc 00:0d: activated
    parport_pc 00:0d: reported by Plug and Play ACPI
    parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
    nsc-ircc 00:0e: activated
    nsc-ircc, chip->init
    nsc-ircc, Found chip at base=0x02e
    nsc-ircc, driver loaded (Dag Brattli)
    IrDA: Registered device irda0
    nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
    PPP generic driver version 2.4.2
    MadWifi: ath_attach: Switching rfkill capability off.
    wifi0: Atheros AR2413 chip found (MAC 7.8, PHY 2112A 4.5, Radio 5.6)
    lp0: using parport0 (interrupt-driven).
    ath_pci: wifi0: Atheros 5212: mem=0x34000000, irq=9
    ppdev: user-space parallel port driver
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    cs: IO port probe 0x100-0x3af: clean.
    cs: IO port probe 0x3e0-0x4ff: excluding 0x4d0-0x4d7
    cs: IO port probe 0x820-0x8ff: clean.
    cs: IO port probe 0xc00-0xcf7: clean.
    cs: IO port probe 0xa00-0xaff: clean.
    usbcore: registered new interface driver hiddev
    input: Logitech Logitech USB Optical Mouse as /class/input/input9
    input,hidraw0: USB HID v1.11 Mouse [Logitech Logitech USB Optical Mouse] on usb-0000:00:07.2-1
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    JFS: nTxBlock = 4026, nTxLock = 32211
    Adding 1100444k swap on /dev/sda4. Priority:-1 extents:1 across:1100444k
    warning: `avahi-daemon' uses 32-bit capabilities (legacy support in use)
    conservative governor failed, too long transition latency of HW, fallback to performance governor
    thinkpad_acpi: requested hot key mask 0x0000ffff, forced to 0x00008000 (NVRAM poll mask is 0x00fb8000): no firmware mask support
    The strangest thing has also happened recently. The laptop refuses to use its own display when starting up in the dock unless an external monitor is plugged in. If a CRT is plugged in, the docked laptop starts up and shows the splash screen on its LCD. If no CRT is plugged in, turning on the docked laptop results in a blank screen. This might have happened because I fiddled with the BIOS which would make alot of sense but resetting the BIOS to default configuration hasn't fixed the problem. I also could have broken a pin but the last thing I remember doing before this happened is running cat /sys/module/snd_ac97_codec/parameters/power_save. It's one of those untouchable virtual files that causes a kernel oops when I try to read it sometimes. I have no idea how this would break the dock but it doesn't matter. Even if using the dock requires some external monitor jazz, I still want the card to be detected and it isn't.
    Sorry to bombard you with obscure information but I don't know where else to turn. I've asked on the thinkpad mailing list and IRC channel to no response and I've seen one other "knowledgeable person" mention these errors on the LKML. I will subscribe to that and ask him too. I'm just very surprised... this gave me the impression that what I wanted to do would work trivially and automatically on Linux and now I'm finding that it's broken for me and possibly every other Linux user. I will seek out thinkpad users from around here with all types of models and distros and see if they have any luck. So far Arch, Arch install CD and an ancient Ubuntu install CD don't work here. If anyone has this and can test it or can decipher some ideas from the posted output (new kernel parameters, new kernel config flags, new udev rules, new modules?) I'd really appreciate it.

  • Delete unused audio from GB sessions from hard disk

    I would like to clear the unused audio from many Garage Band sessions from my hard disk. When audio is recorded in GB where is it stored?
    Thanks
    Mac OS X 10.4.11 MacBook 2 Ghz Intel Core duo
    Garage Band 3.0.4 (104.7)

    Normally, GB does a pretty good housekeeping job with the audio files: If you are not using a recording at all in you project, it gets deleted next time you save your project. (That means: not using even a fraction of a second - otherwise the whole audio is kept, since GB's edits are non-destructive.)
    Having said that - if you want to check, the audio recordings are in a folder inside the project package: ctrl-click the project in the Finder, select "show package content", and look inside the media folder. Be careful - deleting stuff from that folder that you think the project isn't using might confuse GB.

  • New Program Guide - unusable

    I want to be tactful about this - what would be the best way to characterize your new program guide - Sick Joke? In what sense is it an improvement over the previous one?  It is in fact immeasurably WORSE.  How could anyone at Verizon have signed off on this?
    The biggest problem is that it is now unacceptably, absurdly, SLOW.  Was that the intention?  I asked Verizon Phone Tech support if  they slowed it down intentionally , because maybe the network traffic volume was too costly for Verizon and they wanted to cut expenses.  Amazingly, he did not give a flat denial to this.  As I recall he said He didn't have any knowledge that that was the case.
    The way it used to work is for example you would hold down the right arrow button, and it would as expected just briskly scroll through  all the programming selections for that day for whatever channel you happened to be looking at, scrolling through all subsequent shows on the channel that day.  (And also as a recall when scrolling through subsdequent days).
    Now you hold down the right arrow button, and it scrolls forward just one show, and then just freezes, doing nothing.  If a few seconds later you lift your finger off the right arrow button,  it immediately jumps to say 8 hours in advance.  This makes this feature unusable.  How could you not understand that, Verizon?
    The same situation exists when scrolling to different channels with the up or down arrows.  Press and hold down  the down arrow, and it does in fact scroll through the subsequent channel icons, but it does NOT,  as it did with the previous program guide, scroll through all the  program DESCRIPTIONS in real time.  So why was that feature ditched? 
    The fastest it can scroll in real time now either left/right or up/down  is 1 entire second.  So, iow, hit the down arrow, and...one one thousand two ...OK NOW it switches.  What is up with that? 
    For the record, this is not the high-def Verizon box.  The TV on the high-def box seem to work a little better.  Does Verizon only support high-def now?
    And I haven't even mentioned the bizarre color scheme and other bizarre design decisions for the new Program Guide layout.  So, how is it better to reduce the size on the screen where the actual program info is, and surround it with a a lot of unused white space (or shoud I say unused sickly pale blue space)?  Just as far as the aesthetics of the new guide, there is not a single aspect of it that is not drastically worse than it was previously.  (e.g.hitting the info button during a show and it covering a third of  the screen.) 
    But disregard the complaints about  the colors, etc.  - just go wild with that if you want.  Just please restore the SPEED of the programming guide to what it was previously.  Because the way it is now its unusable. 
    Is there any way to go back to the old guide?  There is in fact an option in the Menu for the Classic Guide, but it does not do anything except rearrange the new guide a little bit to make it even worse.
    What is going on with you people (Verizon).

    I'm sorry to hear your frustration with the new guide. There is no way to go back to the old style guide. If unplugging the power cord to the box and plugging it in doesn't speed up the guide maneuvering, please send me a private message.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • MSI Z77A-GD65 1st PCI-E x16 slot is unusable

    Today I spent some time assembling my new system based on the Z77A-GD65.  It's a bummer but I think I have to RMA the mainboard.  My graphics card (MSI Twin Frozr II GTX 570) isn't recognized in the 1st PCI-E x16 slot (where it should be installed), but it does work in the second PCI-E x16 slot.  I've moved it back and forth a few times, and testing results are consistent.  When installed in the 1st x16 slot, the graphics card's two fans are running, but the card is "MIA".  What a poopy upgrade experience.
    I'm thinking I may just buy another GD65 (assuming most of them have working PCI-E slots & I was just unlucky), sell the 1st one on eBay after RMA is complete, and just take the (relatively minor) financial loss.  I don't want extended downtime.
    Any suggestions before I ship this board away on Monday?
    Thanks.

    I was aware of that possibility but was discounting it.  I just spent some time pulling out the board to have a good look at the CPU socket (with a magnifying glass and everything).  I did see one pin that was slightly off, and I very carefully tipped it back into place.  An out-of-place pin sticks out pretty clearly which is helpful.  After reassembly, unfortunately the first PCI-E x16 slot is still unusable.  It was a good suggestion (probably my only hope to avoid RMA), but sadly I think I can't make this board work properly.  RMA seems inevitable at this point :(
    Thanks for your replies though.

  • Iphone 4s upgraded IOS from 5.1.1 to 6.1.1. WIFI it's unusable. Phone it's connected, but doesn't navigate.... or navigate like a SNAIL.

    HI, Sorry for my BAD english, I'm Italian. I have an Iphone 4s.. four day ago, I upgraded my IOS from 5.1.1 to 6.1.1 (thinking that 6.1.1 was mature). This is WORST decision I was made. WIFI it's unusable. iPhone it's connected, but doesn't navigate.... or navigate like a SNAIL.
    I'm a computer technician and cisco CCNP... after some speedy try, I was able to use WIFI with WEP and not with WPA....
    Best result was with an 802.11/B AP  with 128bit WEP (no problem at ALL).......  I think there is a problem IOS - WPA and 802.11G AP...
    I hope this can help some user...... for me it's absolutely USELESS info because all my customer uses different AP with different encription so I CAN'T use anymore my phone.... I switch to galaxy sIII until apple resolve this issue.
    I'm an apple fan since 1987 (MY MAC II)  and NEVER has problem or problem was immediately resolved but
    on last THREE year, apple was made some mistake.... using CUSTOMER as TESTER....
    After 20 year of apple, if all continue so. I MUST abandon APPLE.

    I know that only some iphone 4s are affected by this problem but....
    before write, please CONNECT BRAIN and verify your info...
    So .... My brain and my iPhone are working, Yours are not.
    for your reference, HALF internet (including APPLE support ) are FULL of post regarding this issue....
    Do you actually knows how big the Internet is? Do you also know how many iPhones is out there?
    Stop BS.
    I'm an iphone fan since FIRST MODEL (2007) and an APPLE fan since MACII..
    My post would be a temporary solution for who are affected by this issue, for use wifi until apple fix it..
    I don't care what you have used since bla bla that won't change the facts.
    you don't know my skill so.... be propositive instead of....
    You don't know mine either
    Message was edited by: ckuan

Maybe you are looking for