Report - Return days since LAST activity

Hi,
I need a report that returns "All open SRs with the amount of days since the LAST completed activity of type X" (so we can see when the activity needs to happen again)
I have managed to create a report that brings back "all open SRs with the amount of days since EVERY completed activity of Type X (so if the activity happened 10 times i get the report returning the SR 10 times).
I was hoping i could use something like a min function in a pivot table to just return the days since the LAST one but am getting nowhere.
Any ideas?!?!?!
Thanks in advance
Rich

Hi Guys,
I'm doing a similar report also.
I have a analysis based on Activities that returns a list of service requests.
I have inserted a column with a timediff function to tell me how many days old the activity is. e.g.:
SR 1, act1, 2 days old
SR 1, act2, 4 days old
SR 2, act1, 6 days old
SR 3, act1, 3 days old
SR 3, act2, 9 days old
Using a pivot table i display only the first activity for each SR.
SR 1, act1, 2 days old
SR 2, act1, 6 days old
SR 3, act1, 3 days old
However i now want to be able to sort the pivot table in descending order of the Day Old column.
Unfortunately i can't get this to work.
Any idea's?

Similar Messages

  • MC46 - How is days since last consumption calculated?

    Customer is using MC46 (Analysis of Slow-Moving Items).
    They wish to know where does the days since last consumption come from ?
    Regards.
    Phil.

    hi,
    This depends on the GR which is made on which date...so based on that date till today it will calculate the days...
    Hope it helps..
    Regards
    Priyanka.P

  • TM Backup Failed - too many days since last backup

    I moved and it took awhile for me to plugin my TM drive. Finally plugged it in and got an error that says "Backup Failed it has been 89 days since your last backup." There is no option to start a new backup. How do I fix this?

    Hi Jake,
    Try repairing the TM backup using Disk Utility.
    If you back up to a Time Capsule or network disk:
    Open the Time Machine pane of System Preferences, and slide the switch to Off.
    Open Disk Utility, which is in the Utilities folder in the Applications folder.
    Make sure the Time Capsule or network disk is turned on and available.
    Open a Finder window, select your Time Capsule or network disk in the Shared section of the sidebar, and click Connect. If necessary, enter your user name and password.
    On the Time Capsule or network disk, select the disk or volume that contains Time Machine backups. Depending on how your Time Capsule is set up, there may be one or more disks or volumes.
    Locate your backup, and drag it to the Disk Utility sidebar.
    You can identify your backup by looking for your computer’s name in the backup’s filename.
    Select your backup in the Disk Utility sidebar, and then click Repair.
    If the repair is successful, attempt to back up using Time Machine. If the repair is not successful, delete your backup and start a new backup.
    Hope this helps.
    Neville

  • Determine Days Since Last Visit

    I think I may be overthinking this problem.
    What I have is a table that consists of membership data including visit dates. For each visit date, I need to determine the number of days since the last visit.
    I'm trying a combination of CTEs and partitions, but it is simply not coalescing in my head.
    Following is a sample set of data;
    KeyID          MemberID          AdmitDate          Last_Admit_Days
    1                 2601                 2014-04-17         
    2                 2001                 2014-05-04         
    3                 1001                 2014-05-15         
    4                 8001                 2014-05-28         
    5                 2601                 2014-05-23         
    6                 2601                 2014-05-28         
    7                 9301                 2014-03-21         
    8                 9301                 2014-05-15         
    9                 9301                 2014-05-21         
    10                8601                2014-05-26         
    11                3601                2014-04-13         
    12                3601                2014-05-05
    I tried putting that in as a code block, but it ended up putting everything on one line.
    Anyway, Member # 2601 has three admit dates; 2014-04-17, 2014-05-23 and 2014-05-28. So, the number in the Last_Admit_Days column for those records, should be the DATEDIFF in days between the AdmitDate and the AdmitDate of the immediately prior AdmitDate
    for #2601, like this;
    KeyID          MemberID          AdmitDate          Last_Admit_Days
    1                 2601                 2014-04-17         
    0
    5                 2601                 2014-05-23         
    36
    6                 2601                 2014-05-28         
    5
    I am stumped. Maybe the weekend will refresh me to take a better stab at it, but it's confounding me at the moment and I thought I'd ask here to see if anyone had a quick idea off the top of their heads.
    I truly appreciate any assistance.
    Thanx!

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. There is no such crap as a“key_id” in RDBMS; that night mare is mix of meta-data and attribute proprieties.
    CREATE TABLE Visits
    (member_id CHAR(4)NOT NULL,
    admission_date DATE NOT NULL,
    PRIMARY KEY(member_id,admission_date));
    INSERT INTO Visits
    VALUES
    ('2601','2014-04-17'),
    ('2001','2014-05-04'),
    ('1001','2014-05-15'),
    ('8001','2014-05-28'),
    ('2601','2014-05-23'),
    ('2601','2014-05-28),
    ('9301','2014-03-21'),
    ('9301','2014-05-15'),
    ('9301','2014-05-21'),
    ('8601','2014-05-26'),
    ('3601','2014-04-13'),
    ('3601','2014-05-05');
    SELECT member_id, admission_date,
           DATEDIFF(DAY,
                LAG(admission_date)
                OVER(PARTITION BY member_id
                     ORDER BY admission_date),
                 admission_date)
           AS visit_delta
      FROM Visits
      ORDER BY member_id, admission_date;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Get # of Days since last modified

    Is there anyway to have a number column that shows the number of days since the item or page was last updated? I was hoping to use a calculated column where [Today]-[Modified] but that doesn't work. A workflow wouldn't work because it would have to keep
    continuously running to keep that column updated.  Any ideas?
    Thanks.   
    Nick Hurst

    We ended up finding some posts online suggesting using Jquery to display this information on the page.  You can put this code in your page layout to display the number of days since the page was last modified or any date field you have associated
    with the page. 
    What we ended up doing was creating a calculated field to just grab a date field (in our case the column 'ReviewDate') and put it in the proper format:
    =TEXT([ReviewDate],"MM/DD/YYYY")
    Then we added a div to the page layout that has this date but is not displayed on the page:
    <div class="review-date-text" style="display:none;">
            <SharePoint:CalculatedField FieldName="ReviewDateDisplay" runat="server" ControlMode="Display"/>
    </div>
    Here's the code, I'm not a developer so there are probably better ways to do this but I was able to piece this together from a couple different posts:
    //The following gets the number of days since article was reviewed and writes the value into a right col div
    //Gets Todays date and format it as date
    var today = new Date();
    var dd = today.getDate();
    var mm = today.getMonth();
    var yyyy = today.getFullYear();
    if(dd<10) {
    dd='0'+dd
    if(mm<10) {
    mm='0'+mm
    var todaysDate = new Date(yyyy,mm,dd);
    //Finds the text value of the review date
    //The review date is in the review-date-text div
    var reviewdatetext = jQuery(".review-date-text").text();
    var reviewdatetext = jQuery.trim(reviewdatetext);
    //Parses the review date and formats as a new date
    var dateParts = reviewdatetext.split('/')
    var reviewyear = dateParts[2];
    var reviewday = dateParts[1];
    var reviewmonth = dateParts[0]-1;//January is 0!
    var reviewDate = new Date(reviewyear,reviewmonth,reviewday);
    //Finds the number of days difference between today and review date
    oneDay = 24*60*60*1000; // hours*minutes*seconds*milliseconds
    var diffDays = Math.round(Math.abs((todaysDate.getTime() - reviewDate.getTime())/(oneDay)));
    //Appends the number of days to the review-date div in the right column
    jQuery("<div class='Custom-Date-Review'>"+diffDays+" days ago</div>").appendTo("#review-date");
    Works great for us, hope that helps someone else. 
    Nick Hurst

  • Problems getting days since last used for licensed software

    Using SCCM 2007 SP2 R3
    We've been required to start removing certain licensed software after 60 days of non-use.  Tried the canned reports, but needed to do a customized one to get all the needed info:
    SELECT DISTINCT SYS.Netbios_Name0 AS 'NAME', CSYS.Manufacturer0 AS 'MFG', CSYS.Model0 AS 'MODEL'
    , PCB.SerialNumber0 AS 'SN#', SCUM.TopConsoleUser0 AS 'TOP USER'
    , RUA2.LastUserName0 AS 'LAST APP USER', OSYS.Caption0 AS 'OS', SMSIS.SMS_Installed_Sites0 AS 'SITE'
    , SYS.Resource_Domain_OR_Workgr0 AS 'DOMAIN', RUA2.ExplorerFileName0 AS 'FILE', RUA2.FileDescription0 AS 'PRODUCT'
    ,RUA2.ProductVersion0 AS 'METERED VERSION', SWF.FileVersion AS 'FILE VERSION'
    , CASE WHEN MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) IS NULL THEN CAST('NOT USED'AS VARCHAR)
    ELSE CAST (MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) AS VARCHAR)
    END AS 'VISIO LAST USED (> 60 DAYS)'
    FROM dbo.v_R_System SYS
    JOIN dbo.v_GS_SoftwareFile SWF ON SYS.ResourceID = SWF.ResourceID
    JOIN dbo.v_Add_Remove_Programs ARP ON SYS.ResourceID = ARP.ResourceID
    JOIN dbo.v_GS_COMPUTER_SYSTEM CSYS ON SYS.ResourceID = CSYS.ResourceID
    JOIN dbo.v_GS_PC_BIOS PCB ON SYS.ResourceID = PCB.ResourceID
    JOIN dbo.v_GS_OPERATING_SYSTEM OSYS ON SYS.ResourceID = OSYS.ResourceID
    JOIN dbo.v_RA_System_SMSInstalledSites SMSIS ON SYS.ResourceID = SMSIS.ResourceID
    JOIN dbo.v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP SCUM ON SYS.ResourceID = SCUM.ResourceID
    LEFT OUTER JOIN dbo.v_GS_CCM_RECENTLY_USED_APPS RUA2 ON SYS.ResourceID
    = (SELECT RUA2.ResourceID WHERE RUA2.ExplorerFileName0 = 'acrobat.exe')
    WHERE (SWF.FileName = 'acrobat.exe'
    AND SWF.FilePath LIKE 'c:\program%')
    AND SYS.Operating_System_Name_and0 LIKE '%workstation%'
    AND SYS.Client0 = '1'
    AND SYS.Obsolete0 = '0'
    AND ARP.DisplayName0 LIKE '%adobe %acrobat %'
    AND ARP.DisplayName0 NOT LIKE '%mui%'
    AND ARP.DisplayName0 NOT LIKE '%viewer%'
    AND ARP.DisplayName0 NOT LIKE '%pack%'
    AND ARP.DisplayName0 NOT LIKE '%update%'
    AND ARP.DisplayName0 NOT LIKE '%web%'
    AND ARP.DisplayName0 NOT LIKE '%modeler%'
    AND ARP.DisplayName0 NOT LIKE '%hotfix%'
    AND ARP.DisplayName0 NOT LIKE '%browser%'
    AND ARP.DisplayName0 NOT LIKE '%workgroup%'
    AND ARP.DisplayName0 NOT LIKE '%english%'
    AND ARP.DisplayName0 NOT LIKE '%extended%'
    AND ARP.DisplayName0 NOT LIKE '%cpsid%'
    GROUP BY SYS.Netbios_Name0, CSYS.Manufacturer0, CSYS.Model0, PCB.SerialNumber0, SYS.User_Name0, OSYS.Caption0, SMSIS.SMS_Installed_Sites0
    , SYS.Resource_Domain_OR_Workgr0, RUA2.ExplorerFileName0, RUA2.ProductName0, RUA2.FileDescription0
    , RUA2.ProductVersion0, RUA2.LastUserName0, SWF.FileVersion, SCUM.TopConsoleUser0
    HAVING MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) > '60'
    OR MIN(DateDiff(day, RUA2.LastUsedTime0, GetDate())) IS NULL
    ORDER BY 'DOMAIN', 'SITE', 'NAME'
    It produces output similar to the below:
    NAME
    MFG
    MODEL
    SN#
    TOP USER
    LAST APP USER
    OS
    SITE
    DOMAIN
    FILE
    PRODUCT
    METERED VERSION
    FILE VERSION
    ACROBAT LAST USED (> 60 DAYS)
    ECH-WS73030
    BIOSTAR Group
    P43D3
    None
    vha19\vhadengethoh
    NULL
    Microsoft Windows 7 Enterprise
    ECH
    VHA19
    NULL
    NULL
    NULL
    11.0.06.70
    NOT USED
    ECH-WS60512
    Dell Inc.
    OptiPlex 990
    FZVCHS1
    vha19\vhaechconnel
    VHA19\VHAECHSchneA
    Microsoft Windows 7 Enterprise
    ECH
    VHA19
    Acrobat.exe
    Adobe Acrobat
    11.0.03.37
    11.0.06.70
    87
    Running into two problems:
      1.  Despite the product actually being used on some computers, Recently Used Apps (RUA) View shows no usage (none in other SW Metering views, either) and not sure what the issue is--SW and HW inventory are both working perfectly fine, as
    are the metering processes on the site server.  Gives me a lot of false positives for not being used.
      2.  Have found some cases in which a previous version was installed, and used, then later upgraded, but not used--however, seems no way to filter out just usage for the CURRENT version.  Have looked at comparing the SW File Version and the
    RUA.File Version, but they are often not identical, particularly if the product was patched.
    Is there a better way to determine usage, or a better custom report to use?
    Thanks.

    I'm cleaning up old post, did you figure this out, if so how?
    http://www.enhansoft.com/

  • Reporting Last Activity Date on Contact

    Hello,
    I maybe lossing my mind here but i feel like i have been looking for "Last Activity Date" on the contact screen all day. Can someone veryify that this appears under reporting.
    Also does anyone know if you can create a case statement around this to state if values is less than 3 weeks = Dont not Contact and if greater Contact.
    Anyway hope someone can verify this.

    JE,
    i don't know about a last Activity date but I've just done it with Activity reporting on Service Requests. I did RANK(activity created date by SR ID) and then set the filter to RANK=1. This gives you the last activity created.
    I then did a calculation in another field TIMESTAMPDIFF(SQL_TSI_DAY, activity.createddate, Current_date) which gave me the number of days since an activity was last posted to an SR.
    You can then do conditional formatting or a CASE WHEN statement on this field.
    cheers
    ALEX
    ***NOTE I have a current SR with Oracle because I'm in sydney and Current_date returns Central Server time which is a 17 hour difference and for most of the day is a day behind so my formula above has had to be
    TIMESTAMPDIFF(SQL_TSI_DAY, activity.createddate, TIMESTAMPADD(SQL_TSI_HOUR, 17,Current_date))

  • Time since last update

    Hi
    I regularly update my website sometimes once a day sometimes several times. I would to place a script or something on the page that places a "mins/hours/days" since last update. Similar to post columns on forums. I have looked through Dreamweaver exchange but cannot find anything (or have i missed it)
    thanks

    Most likely you will require PHP and such to do that. JavaScript as such cannot list files and their properties etc.. File system access goes against its security model.
    Mylenium

  • Interval Since Last Panic Report:  33447 sec Panics Since Last Report:          1 Anonymous UUID:                    ECEB5F07-2A51-9202-7461-FDFF0E46A3A2  Mon Dec 16 20:46:05 2013 panic(cpu 1 caller 0xffffff7f9e64c300): "Potential Fifo Overflow in GFX\n"@

    Interval Since Last Panic Report:  33447 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    ECEB5F07-2A51-9202-7461-FDFF0E46A3A2
    Mon Dec 16 20:46:05 2013
    panic(cpu 1 caller 0xffffff7f9e64c300): "Potential Fifo Overflow in GFX\n"@/SourceCache/GraphicsDrivers/GraphicsDrivers-8.16.74/Common/IONDRV/Intel /HSW/AppleIntelFramebuffer/AppleIntelController.cpp:306
    Backtrace (CPU 1), Frame : Return Address
    0xffffff809c10b660 : 0xffffff801cc1d636
    0xffffff809c10b6d0 : 0xffffff7f9e64c300
    0xffffff809c10b710 : 0xffffff7f9e5ee7d7
    0xffffff809c10b740 : 0xffffff7f9e5e3b5f
    0xffffff809c10b7c0 : 0xffffff7f9e5f68a5
    0xffffff809c10b820 : 0xffffff7f9e5cb150
    0xffffff809c10b9e0 : 0xffffff7f9e55a0c5
    0xffffff809c10ba10 : 0xffffff7f9e55a391
    0xffffff809c10ba40 : 0xffffff7f9e565df5
    0xffffff809c10ba80 : 0xffffff7f9e5d49f1
    0xffffff809c10baa0 : 0xffffff7f9e5584d3
    0xffffff809c10bb30 : 0xffffff801d070173
    0xffffff809c10bb50 : 0xffffff801d070d4d
    0xffffff809c10bbb0 : 0xffffff801d06e74f
    0xffffff809c10bd00 : 0xffffff801cc98c21
    0xffffff809c10be10 : 0xffffff801cc20b4d
    0xffffff809c10be40 : 0xffffff801cc10448
    0xffffff809c10be90 : 0xffffff801cc1961b
    0xffffff809c10bf00 : 0xffffff801cca63ee
    0xffffff809c10bfb0 : 0xffffff801cccf221
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelFramebufferAzul(8.1.6)[8F074659-F84D-3303-8E40-F7726 C5A2B10]@0xffffff7f9e638000->0xffffff7f9e68dfff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f9d713000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9d251000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9d778000
             com.apple.iokit.IOAcceleratorFamily2(74.15)[CC44ABAB-C39F-34EF-853D-50DA40B6D45 F]@0xffffff7f9e552000->0xffffff7f9e5b5fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9d251000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9d778000
             com.apple.driver.AppleIntelHD5000Graphics(8.1.6)[E5B86F86-1654-369D-B939-C309BF D3BFAD]@0xffffff7f9e5c3000->0xffffff7f9e612fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9d251000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9d7bb000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9d778000
                dependency: com.apple.iokit.IOAcceleratorFamily2(74.15)[CC44ABAB-C39F-34EF-853D-50DA40B6D45 F]@0xffffff7f9e552000
    BSD process name corresponding to current thread: dota_osx
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000001ca00000
    Kernel text base: 0xffffff801cc00000
    System model name: MacBookAir6,2 (Mac-7DF21CB3ED6977E5)
    System uptime in nanoseconds: 3360862603418
    last loaded kext at 245079371034: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f9ea48000, size 65536)
    last unloaded kext at 305328682290: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f9ea48000, size 57344)
    loaded kexts:
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f4
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.13.12
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.ApplePlatformEnabler          2.0.7d2
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleHDA          2.4.7fc4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.AppleCameraInterface          4.08.1
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleIntelHD5000Graphics          8.1.6
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelFramebufferAzul          8.1.6
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.driver.AppleTopCaseHIDEventDriver          10.20
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.driver.AppleUSBHub          635.4.0
    com.apple.driver.AirPort.Brcm4360          641.15.1
    com.apple.driver.AppleUSBXHCI          635.4.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.DspFuncLib          2.4.7fc4
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.driver.AppleHDAController          2.4.7fc4
    com.apple.iokit.IOHDAFamily          2.4.7fc4
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f4
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.IOPlatformPluginFamily          5.4.1d13
    com.apple.iokit.IOAcceleratorFamily2          74.15
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleThunderboltDPInAdapter          2.5.0
    com.apple.driver.AppleThunderboltDPAdapterFamily          2.5.0
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.3.2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.driver.AppleHIDKeyboard          170.2.4
    com.apple.driver.AppleHSSPIHIDDriver          23
    com.apple.driver.AppleMultitouchDriver          237.4
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.driver.AppleThunderboltNHI          1.9.2
    com.apple.iokit.IOThunderboltFamily          2.7.7
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.driver.AppleHSSPISupport          23
    com.apple.driver.AppleIntelLpssSpiController          2.0.34
    com.apple.driver.AppleIntelLpssDmac          2.0.34
    com.apple.driver.AppleIntelLpssGspi          2.0.34
    com.apple.iokit.IOUSBFamily          635.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookAir6,2, BootROM MBA61.0099.B04, 2 processors, Intel Core i5, 1.3 GHz, 4 GB, SMC 2.13f7
    Graphics: Intel HD Graphics 5000, Intel HD Graphics 5000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638454455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638454455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (6.30.225.29.1)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8406, 0x15300000 / 3
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x14300000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x828f, 0x14330000 / 5
    USB Device: USB Optical Mouse, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0005, 0x14100000 / 2
    USB Device: USB Keyboard, 0x09da  (A-FOUR TECH CO., LTD.), 0x0260, 0x14200000 / 1

    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider. You may have to leave the machine there for several days.
    Print the first page of the panic report and bring it with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional — ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    *An SSD doesn't need to be zeroed.

  • Ordered to shut down computer during Netflix streaming.  Cannot find cause.  Reboots fine.  What should I do?  Apple store?  No warranty. Report is here:  Interval Since Last Panic Report:  84943 sec Panics Since Last Report:          1 Anonymous UUID:

    SHould I take my laptop to the Apple Store for diagnosis and repair?  Or is this a fix I can troubleshoot and fix myself?  Need guidance, please. Updated Adobe Flash today.  Had a similar event a few days ago.  Uninstalled Jacquie Lawson Advent Calendar, and thought that had fixed the problem until it happened again today.  Thanks for any help.

    Whoops--here it is, Bob:
    Interval Since Last Panic Report:  84943 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    85720E18-B0CE-4626-8886-0BD56F9809C4
    Thu Feb 20 23:19:35 2014
    panic(cpu 0 caller 0x2abf6a): Kernel trap at 0x5830e3e9, type 14=page fault, registers:
    CR0: 0x80010033, CR2: 0x00000000, CR3: 0x00100000, CR4: 0x00000668
    EAX: 0x00000004, EBX: 0x12a9e800, ECX: 0x42ac1d20, EDX: 0x00000000
    CR2: 0x00000000, EBP: 0x57082918, ESI: 0x0c113000, EDI: 0x42ca0000
    EFL: 0x00010202, EIP: 0x5830e3e9, CS:  0x00000008, DS:  0x00000010
    Error code: 0x00000000
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x57082708 : 0x21b837 (0x5dd7fc 0x5708273c 0x223ce1 0x0)
    0x57082758 : 0x2abf6a (0x59e3d0 0x5830e3e9 0xe 0x59e59a)
    0x57082838 : 0x2a1a78 (0x57082850 0x0 0x57082918 0x5830e3e9)
    0x57082848 : 0x5830e3e9 (0xe 0x48 0x10 0x10)
    0x57082918 : 0x58312c24 (0x42ca0000 0xc113000 0x57082970 0x100000)
    0x57082a58 : 0x5834c5d8 (0x42ca0000 0x1 0x57082b6c 0x57082b68)
    0x57082b08 : 0x5830efe1 (0x42ca0000 0x1 0x57082b6c 0x57082b68)
    0x57082b88 : 0x56da06 (0x42ca0000 0x0 0x57082ddc 0x57082c14)
    0x57082bd8 : 0x56e2a5 (0x5839d720 0x42ca0000 0x7fc3d88 0x1)
    0x57082c28 : 0x56eb59 (0x42ca0000 0x10 0x57082c70 0x0)
    0x57082d48 : 0x286638 (0x42ca0000 0x10 0x7fc3d88 0x1)
    0x57083df8 : 0x21dbe5 (0x7fc3d60 0xb88e5a0 0x1faa90 0xaf03)
    0x57083e38 : 0x210a86 (0x7fc3d00 0x0 0x9452bd0 0x93a4960)
    0x57083e98 : 0x216f84 (0x7fc3d00 0x0 0x0 0x0)
    0x57083f18 : 0x295914 (0x57083f44 0x0 0x0 0x0)
    0x57083fc8 : 0x2a20f8 (0x9090160 0x1 0x10 0x6f3ed80)
         Kernel Extensions in backtrace (with dependencies):
            com.apple.GeForce(6.3.6)@0x58303000->0x583b9fff
               dependency: com.apple.NVDAResman(6.3.6)@0x5863a000
               dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5816d000
               dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x50efa000
               dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x581b5000
    BSD process name corresponding to current thread: plugin-container
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro7,1 (Mac-F222BEC8)
    System uptime in nanoseconds: 88453110062996
    unloaded kexts:
    com.apple.filesystems.ntfs    3.4 (addr 0x6cde4000, size 0x393216) - last unloaded 6071822751529
    loaded kexts:
    com.apple.driver.AppleHWSensor    1.9.3d0 - last loaded 3957222089972
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AGPM    100.12.31
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleIntelPenrynProfile    17
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleMikeyDriver    2.0.5f14
    com.apple.driver.AppleHDA    2.0.5f14
    com.apple.driver.AppleMCCSControl    1.0.20
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.iokit.AppleBCM5701Ethernet    3.0.5b8
    com.apple.driver.AirPortBrcm43224    428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.driver.AppleLPC    1.5.1
    com.apple.driver.AppleBacklight    170.0.46
    com.apple.GeForce    6.3.6
    com.apple.driver.AppleUSBTCButtons    201.6
    com.apple.driver.AppleIRController    303.8
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleUSBCardReader    2.6.1
    com.apple.iokit.SCSITaskUserClient    2.6.8
    com.apple.BootCache    31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage    1.6.4
    com.apple.driver.AppleUSBHub    4.2.4
    com.apple.driver.AppleAHCIPort    2.1.7
    com.apple.driver.AppleUSBEHCI    4.2.4
    com.apple.driver.AppleFWOHCI    4.7.3
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.driver.AppleUSBOHCI    4.2.0
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient    142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement    142.6.0
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f3
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.driver.DspFuncLib    2.0.5f14
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.AppleHDAController    2.0.5f14
    com.apple.iokit.IOHDAFamily    2.0.5f14
    com.apple.nvidia.nv50hal    6.3.6
    com.apple.iokit.IOFireWireIP    2.0.3
    com.apple.iokit.AppleProfileFamily    41
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.driver.NVSMU    2.2.7
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.1
    com.apple.NVDAResman    6.3.6
    com.apple.iokit.IONDRVSupport    2.2.1
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f3
    com.apple.iokit.IOBluetoothFamily    2.4.5f3
    com.apple.driver.AppleUSBMultitouch    207.7
    com.apple.iokit.IOUSBHIDDriver    4.2.0
    com.apple.iokit.IOUSBMassStorageClass    2.6.7
    com.apple.iokit.IOSCSIBlockCommandsDevice    2.6.8
    com.apple.driver.AppleUSBMergeNub    4.2.4
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.8
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.driver.XsanFilter    402.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.8
    com.apple.iokit.IOUSBUserClient    4.2.4
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOUSBFamily    4.2.4
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.TMSafetyNet    6
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    289
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f7
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 232.89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24600000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06610000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x06500000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x06300000 / 2

  • Can someone please help with this code and what it means? Interval Since Last Panic Report:  6395213 sec Panics Since Last Report:          1 Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0  Tue Mar 18 13:30:13 2014 Machine-check c

    Interval Since Last Panic Report:  6395213 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    8AEBAB22-1943-48B3-8D30-E4D07CCDEEA0
    Tue Mar 18 13:30:13 2014
    Machine-check capabilities (cpu 3) 0x0000000000000006:
    family: 6 model: 15 stepping: 6 microcode: 198
    Intel(R) Xeon(R) CPU            5160  @ 3.00GHz
    6 error-reporting banks
    Machine-check status 0x0000000000000005:
    restart IP valid
    machine-check in progress
    MCA error-reporting registers:
    IA32_MC0_STATUS(0x401): 0x1000000020000000 invalid
    IA32_MC1_STATUS(0x405): 0x0000000000000000 invalid
    IA32_MC2_STATUS(0x409): 0x0000000000000000 invalid
    IA32_MC3_STATUS(0x40d): 0x0020000000000000 invalid
    IA32_MC4_STATUS(0x411): 0x0000000000000011 invalid
    IA32_MC5_STATUS(0x415): 0xb200001080200e0f valid
    MCA error code:            0x0e0f
    Model specific error code: 0x8020
    Other information:         0x00000010
    Status bits:
      Processor context corrupt
      Error enabled
      Uncorrected error
    panic(cpu 2 caller 0x2cf3cc): "Machine Check at 0x002d3432, trapno:0x12, err:0x0," "registers:\n" "CR0: 0x80010033, CR2: 0x103dd000, CR3: 0x00100000, CR4: 0x00000660\n" "EAX: 0x00000000, EBX: 0x000000be, ECX: 0x6241b000, EDX: 0x00000001\n" "ESP: 0x6f853c58, EBP: 0x6f853c58, ESI: 0x00000000, EDI: 0x827a6b3c\n" "EFL: 0x00000016, EIP: 0x002d3432\n"@/SourceCache/xnu/xnu-1699.32.7/osfmk/i386/trap_native.c:258
    Backtrace (CPU 2), Frame : Return Address (4 potential args on stack)
    0x6853cf38 : 0x2203de (0x6b08cc 0x6853cf58 0x229fb0 0x0)
    0x6853cf68 : 0x2cf3cc (0x6bde94 0x6bdfc8 0x2d3432 0x12)
    0x6853d0d8 : 0x2cf409 (0x6853d110 0xde 0x6bdfc8 0x1)
    0x6853d0f8 : 0x2e6182 (0x6853d110 0x0 0x0 0x0)
    0x6f853c58 : 0x2d381e (0x20 0x7fffffff 0x6f853c88 0x29701be)
    0x6f853c68 : 0x29701be (0x684b6100 0xffffffff 0x6f853cb8 0x9d8e800)
    0x6f853c88 : 0x297028b (0x684b6100 0xffffffff 0x7fffffff 0x827aa38d)
    0x6f853cb8 : 0x296864f (0x684b6100 0x827aa38d 0xbe 0xffffffff)
    0x6f853d58 : 0x29699fe (0x827aa38d 0xbe 0x3 0x0)
    0x6f853de8 : 0x2d0cde (0xffffffff 0x7fffffff 0x6f853e08 0x2cd4ca)
    0x6f853e08 : 0x22d3e5 (0x684c5000 0x827a6711 0xbe 0x684c5de0)
    0x6f853e48 : 0x22e1c0 (0xd58c7f0 0x684c5000 0x0 0x0)
    0x6f853e98 : 0x22f6c2 (0xd58c80c 0x2 0x12 0xd7c0e00)
    0x6f853ef8 : 0x22f821 (0x2150f0 0x0 0x0 0xd58c7f0)
    0x6f853f18 : 0x21505d (0x2150f0 0x7000006 0xc00 0xffffffff)
    0x6f853f48 : 0x21b385 (0xede8f28 0x7000006 0xc00 0xffffffff)
    0x6f853f98 : 0x2b7bb7 (0xd4c9954 0x7fff 0xd4c9984 0x8)
    0x6f853fc8 : 0x2e60c7 (0xd4c9950 0x0 0x10 0xd4c9950)
         Kernel Extensions in backtrace:
            com.apple.driver.AppleIntelCPUPowerManagement(195.0)[D1550426-D346-4805-A777-06 63C69080DA]@0x2966000->0x298ffff
    BSD process name corresponding to current thread: iTunes
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:26:45 PDT 2012; root:xnu-1699.32.7~1/RELEASE_I386
    Kernel UUID: 859B45FB-14BB-35ED-B823-08393C63E13B
    System model name: MacPro1,1 (Mac-F4208DC8)
    System uptime in nanoseconds: 818233088876
    last loaded kext at 91751914186: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0x2990000, size 28672)
    last unloaded kext at 226546974280: com.apple.driver.CSRHIDTransitionDriver          4.0.8f17 (addr 0x21cd000, size 12288)
    loaded kexts:
    com.parentalctrl.kext.filter          3.8.1
    com.logmein.driver.LogMeInSoundDriver          1.0.3
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AudioAUUC          1.59
    com.apple.GeForce7xxx          7.0.4
    com.apple.driver.AppleUSBDisplays          323.3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCEDriver          1.1.9
    com.apple.driver.Apple_iSight          4.0.1
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.CSRUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.driver.AppleRAID          4.0.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleIntel8254XEthernet          2.1.3b1
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleUSBUHCI          5.1.0
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.driver.AppleBluetoothHIDMouse          175.9
    com.apple.driver.AppleHIDMouse          175.9
    com.apple.driver.IOBluetoothHIDDriver          4.0.8f17
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.nvidia.nv40hal.G7xxx          7.0.4
    com.apple.NVDAResman.G7xxx          7.0.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleUSBHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOATAPIProtocolTransport          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.11
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 3 GHz, 5 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: DIMM Riser A/DIMM 1, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 2, 512 MB, DDR2 FB-DIMM, 667 MHz, 0x802C, 0x39485446363437324A592D36363742344433
    Memory Module: DIMM Riser A/DIMM 3, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Memory Module: DIMM Riser A/DIMM 4, 2 GB, DDR2 FB-DIMM, 667 MHz, 0x8319, 0x4D4B435333385554412D4944542020202020
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, sppci_displaycontroller, Slot-1
    Serial ATA Device: ST3250824AS  Q, 250.06 GB
    Serial ATA Device: SAMSUNG HD501LJ, 500.11 GB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Serial ATA Device: WDC WD10EADS-00M2B0, 1 TB
    Parallel ATA Device: SONY    DVD RW DW-D150A
    USB Device: hub_device, apple_vendor_id, 0x911d, 0xfd500000 / 3
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfd520000 / 5
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfd522000 / 6
    USB Device: Apple Cinema Display, apple_vendor_id, 0x921d, 0xfd530000 / 4
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd400000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8206, 0x5d200000 / 2
    FireWire Device: built-in_hub, 800mbit_speed
    FireWire Device: iSight, Apple Computer, Inc., 200mbit_speed
    FireWire Device: unknown_device, unknown_speed

    Kernel panic, machine check, uncorrected error correlates very strongly with RAM memory errors.
    Time for a Memory upgrade.

  • Mac Book Crashing Can anyone please help with this error message,  I've run Disk warrior and everthing is coming up fine, so may be a hardware issue, thank you Interval Since Last Panic Report:  22119 sec Panics Since Last Report:          14 Anonymous UU

    I've run Disk warrior, it says all the files and harddrive are fine.
    thanks for your help.  This crashing was happening before I upgraded to Lion
    Interval Since Last Panic Report:  22119 sec
    Panics Since Last Report:          14
    Anonymous UUID:                    1DA2B715-D1E5-4BF1-A47F-D31CBD8C1E78
    Wed Mar  7 13:21:17 2012
    panic(cpu 2 caller 0xffffff7f8098c907): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0x0a2910de 0x00100000 0x00000000, BAR0 0xd2000000 0xffffff80a0354000 0x0a5480a2, D0, P2/4
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80a398b800 : 0xffffff8000220702
    0xffffff80a398b880 : 0xffffff7f8098c907
    0xffffff80a398b910 : 0xffffff7f80a7ca64
    0xffffff80a398b960 : 0xffffff7f80a7cb24
    0xffffff80a398b9c0 : 0xffffff7f80d29749
    0xffffff80a398bb00 : 0xffffff7f80a9bbad
    0xffffff80a398bb30 : 0xffffff7f80996282
    0xffffff80a398bbe0 : 0xffffff7f80991b84
    0xffffff80a398bdd0 : 0xffffff7f80993639
    0xffffff80a398beb0 : 0xffffff7f8092e484
    0xffffff80a398bf00 : 0xffffff7f820a47d6
    0xffffff80a398bf50 : 0xffffff7f820a4f2a
    0xffffff80a398bf70 : 0xffffff800023db2c
    0xffffff80a398bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.1.8)[94BA87BA-B128-3310-9860-98EC67AB7FAF]@0xffffff7f809 2c000->0xffffff7f80c05fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f808b7000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[4B3F84DC-18B3-3897-BC56-4E3940878047]@0xff ffff7f8091a000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[FE536983-1897-3D6B-965E-24B5A67080DA]@0 xffffff7f808e2000
             com.apple.nvidia.nv50hal(7.1.8)[7596DB8C-AE9D-3C87-B11A-0ED8F940CAF8]@0xffffff7 f80c06000->0xffffff7f80f27fff
                dependency: com.apple.NVDAResman(7.1.8)[94BA87BA-B128-3310-9860-98EC67AB7FAF]@0xffffff7f809 2c000
             com.apple.driver.AGPM(100.12.42)[380DAA3B-4F08-3152-A3A0-E3F8B6E4B92B]@0xffffff 7f820a3000->0xffffff7f820adfff
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[FE536983-1897-3D6B-965E-24B5A67080DA]@0 xffffff7f808e2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[4B3F84DC-18B3-3897-BC56-4E3940878047]@0xff ffff7f8091a000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f808b7000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11D50
    Kernel version:
    Darwin Kernel Version 11.3.0: Thu Jan 12 18:47:41 PST 2012; root:xnu-1699.24.23~1/RELEASE_X86_64
    Kernel UUID: 7B6546C7-70E8-3ED8-A6C3-C927E4D3D0D6
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 5224512131000
    last loaded kext at 1624245923653: com.apple.driver.AppleFireWireStorage    3.0.1 (addr 0xffffff7f808b3000, size 16384)
    last unloaded kext at 1739101632802: com.apple.driver.StorageLynx    3.0.1 (addr 0xffffff7f80809000, size 8192)
    loaded kexts:
    com.regularrateandrhythm.driver.RowmoteIREmu    1.0
    com.bresink.driver.BRESINKx86Monitoring    8.0
    com.AmbrosiaSW.AudioSupport    3.2
    com.apple.driver.Oxford_Semi    3.0.1
    com.apple.driver.AppleUSBDisplays    317
    com.apple.driver.AppleHWSensor    1.9.4d0
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AGPM    100.12.42
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleHDA    2.1.7f9
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.1.7f9
    com.apple.driver.AppleIntelHDGraphics    7.1.8
    com.apple.driver.AppleIntelHDGraphicsFB    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.GeForce    7.1.8
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.5d4
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.driver.AppleLPC    1.5.3
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleUSBCardReader    3.0.1
    com.apple.iokit.SCSITaskUserClient    3.0.3
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.IOAHCIBlockStorage    2.0.1
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    513.20.19
    com.apple.iokit.AppleBCM5701Ethernet    3.0.8b2
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleAHCIPort    2.2.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleACPIButtons    1.4
    com.apple.driver.AppleRTC    1.4
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.4
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    167.3.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.1
    com.apple.driver.AppleIntelCPUPowerManagement    167.3.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport    2.1.0
    com.apple.iokit.IOFireWireSBP2    4.2.0
    com.apple.driver.AppleUSBHIDKeyboard    152.3
    com.apple.driver.AppleHIDKeyboard    152.3
    com.apple.driver.AppleUSBAudio    2.8.2f5
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.1.7f9
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0
    com.apple.iokit.IOBluetoothSerialManager    4.0.3f12
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOAudioFamily    1.8.6fc6
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.1.7f9
    com.apple.iokit.IOHDAFamily    2.1.7f9
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.1d8
    com.apple.driver.IOPlatformPluginFamily    4.7.5d4
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.nvidia.nv50hal    7.1.8
    com.apple.NVDAResman    7.1.8
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.3f12
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.3f12
    com.apple.iokit.IOBluetoothFamily    4.0.3f12
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.0.3
    com.apple.iokit.IOUSBMassStorageClass    3.0.1
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.0.3
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.driver.XsanFilter    403
    com.apple.iokit.IOAHCISerialATAPI    2.0.1
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.0.3
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    412.2
    com.apple.iokit.IOEthernetAVBController    1.0.0d5
    com.apple.iokit.IONetworkingFamily    2.0
    com.apple.iokit.IOAHCIFamily    2.0.7
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.3
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.3
    com.apple.iokit.IOStorageFamily    1.7
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.4
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4

    Please describe:
    Computer model & hardware characteristics (especially RAM).
    How much free space left on HDD.
    Any add-ons you may have added to the system (antivirus, screen eye candy, etc.)
    What applications were running when the crash occurred.
    What were you doing when the crash occurred.

  • I need some help...My 17" Macbook Pro keeps randomly shutting down. Here is the code I get after I start it up after a crash...any ideas? Interval Since Last Panic Report:  34210 sec Panics Since Last Report:          1 Anonymous UUID:

    Interval Since Last Panic Report:  34210 sec
    Panics Since Last Report:          1
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Thu Dec  5 10:41:20 2013
    panic(cpu 0 caller 0xffffff7f9efc6f1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80997da000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff808c8eb710 : 0xffffff801d81d636
    0xffffff808c8eb780 : 0xffffff7f9efc6f1a
    0xffffff808c8eb850 : 0xffffff7f9f32b26c
    0xffffff808c8eb910 : 0xffffff7f9f3fe1f6
    0xffffff808c8eb950 : 0xffffff7f9f3fe254
    0xffffff808c8eb9c0 : 0xffffff7f9f6b7278
    0xffffff808c8ebaf0 : 0xffffff7f9f426ad1
    0xffffff808c8ebb10 : 0xffffff7f9f33203f
    0xffffff808c8ebbc0 : 0xffffff7f9f32fad6
    0xffffff808c8ebdc0 : 0xffffff7f9f330b41
    0xffffff808c8ebea0 : 0xffffff7f9f2cc80a
    0xffffff808c8ebef0 : 0xffffff7f9f94c838
    0xffffff808c8ebf40 : 0xffffff7f9f94b783
    0xffffff808c8ebf60 : 0xffffff801d83e26e
    0xffffff808c8ebfb0 : 0xffffff801d8b3257
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.5)[4F710151-D347-301D-A0BA-81791B3E8D4D]@0 xffffff7f9efb9000->0xffffff7f9efcbfff
    dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f9efb4000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9de51000
    dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f9efa5000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f9e3a4000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9ef93000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9ec5d000
    com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9f2 ca000->0xffffff7f9f56bfff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9de51000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9ef93000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9ec5d000
    com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f9f56c000->0xffffff7f9f83ffff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9f2 ca000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9de51000
    com.apple.driver.AGPM(100.13.12)[40BECF44-B2F1-3933-8074-AD07B38CA43A]@0xffffff 7f9f94a000->0xffffff7f9f95bfff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9de51000
    dependency: com.apple.driver.IOPlatformPluginFamily(5.4.1d13)[04F9C88C-92F3-300B-8C68-4A0B5 F7D8C94]@0xffffff7f9ecc4000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9ef93000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9ec5d000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000001d600000
    Kernel text base: 0xffffff801d800000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 34120617850106
    last loaded kext at 33919862981698: com.apple.driver.AppleUSBCDC            4.1.23 (addr 0xffffff7f9f97b000, size 16384)
    loaded kexts:
    com.apple.driver.AppleUSBCDC            4.1.23
    com.apple.filesystems.msdosfs            1.8.1
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AGPM            100.13.12
    com.apple.driver.AppleTyMCEDriver            1.0.2d2
    com.apple.driver.AppleUpstreamUserClient            3.5.12
    com.apple.driver.AppleHDAHardwareConfigDriver            2.4.7fc4
    com.apple.iokit.IOBluetoothSerialManager            4.1.7f4
    com.apple.driver.AppleMikeyHIDDriver            124
    com.apple.GeForce            8.1.6
    com.apple.driver.AppleIntelHDGraphics            8.1.6
    com.apple.iokit.IOBluetoothUSBDFU            4.1.7f4
    com.apple.driver.AppleHDA            2.4.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleMikeyDriver            2.4.7fc4
    com.apple.driver.AppleBacklight            170.3.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.2b4
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AppleLPC            1.6.3
    com.apple.driver.AppleMuxControl            3.4.5
    com.apple.driver.ApplePolicyControl            3.4.5
    com.apple.driver.AirPort.Brcm4331            615.20.17
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.6
    com.apple.driver.AppleSMBusPCI            1.0.11d1
    com.apple.nvidia.NVDAStartup            8.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyEventDriver            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleUSBCardReader            3.3.1
    com.apple.driver.AppleFileSystemDriver            3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.driver.AppleIRController            320.15
    com.apple.iokit.SCSITaskUserClient            3.5.6
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.5
    com.apple.driver.AppleAHCIPort            2.6.6
    com.apple.driver.AppleFWOHCI            4.9.9
    com.apple.driver.AppleUSBHub            635.4.0
    com.apple.driver.AppleUSBUHCI            621.4.0
    com.apple.driver.AppleUSBEHCI            621.4.6
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.8
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.8
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient            214.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2.1
    com.apple.driver.AppleIntelCPUPowerManagement            214.0.0
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.iokit.IOSurface            86.0.4
    com.apple.nvidia.nv50hal            8.1.6
    com.apple.NVDAResman            8.1.6
    com.apple.driver.DspFuncLib            2.4.7fc4
    com.apple.iokit.IOAudioFamily            1.9.2fc7
    com.apple.kext.OSvKernDSPLib            1.12
    com.apple.iokit.IOBluetoothFamily            4.1.7f4
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.driver.AppleHDAController            2.4.7fc4
    com.apple.iokit.IOHDAFamily            2.4.7fc4
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.4.5
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.iokit.IO80211Family            530.5
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.4.1d13
    com.apple.driver.AppleSMC            3.1.5d4
    com.apple.driver.AppleSMBusController            1.0.11d1
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.kext.triggers            1.0
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.6
    com.apple.iokit.IOUSBMassStorageClass            3.5.2
    com.apple.iokit.IOUSBHIDDriver            623.4.0
    com.apple.driver.AppleUSBMergeNub            621.4.6
    com.apple.driver.AppleUSBComposite            621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.6
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOAHCISerialATAPI            2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.6
    com.apple.iokit.IOAHCIFamily            2.5.1
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBUserClient            630.4.4
    com.apple.iokit.IOUSBFamily            635.4.0
    com.apple.driver.AppleEFINVRAM            2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.3
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.8
    com.apple.iokit.IOPCIFamily            2.8
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0
    System Profile:
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 13 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 6
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 13 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 6
    Interval Since Last Panic Report:  33820 sec
    Panics Since Last Report:          3
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Thu Dec  5 11:25:48 2013
    panic(cpu 0 caller 0xffffff7f8dfcbf1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff8088a1f000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80871c2ef0 : 0xffffff800c81d636
    0xffffff80871c2f60 : 0xffffff7f8dfcbf1a
    0xffffff80871c3030 : 0xffffff7f8e32b26c
    0xffffff80871c30f0 : 0xffffff7f8e3fe1f6
    0xffffff80871c3130 : 0xffffff7f8e3fe254
    0xffffff80871c31a0 : 0xffffff7f8e6b7278
    0xffffff80871c32d0 : 0xffffff7f8e426ad1
    0xffffff80871c32f0 : 0xffffff7f8e33203f
    0xffffff80871c33a0 : 0xffffff7f8e32fad6
    0xffffff80871c35a0 : 0xffffff7f8e3313ff
    0xffffff80871c3670 : 0xffffff7f8e87493e
    0xffffff80871c3730 : 0xffffff7f8e8a0028
    0xffffff80871c37b0 : 0xffffff7f8e887460
    0xffffff80871c3810 : 0xffffff7f8e887d41
    0xffffff80871c3860 : 0xffffff7f8e8881f3
    0xffffff80871c38d0 : 0xffffff7f8e888a53
    0xffffff80871c3910 : 0xffffff7f8e853edf
    0xffffff80871c3a90 : 0xffffff7f8e884f8f
    0xffffff80871c3b50 : 0xffffff7f8e852978
    0xffffff80871c3ba0 : 0xffffff800cc6f789
    0xffffff80871c3bc0 : 0xffffff800cc70d30
    0xffffff80871c3c20 : 0xffffff800cc6e74f
    0xffffff80871c3d70 : 0xffffff800c898c21
    0xffffff80871c3e80 : 0xffffff800c820b4d
    0xffffff80871c3eb0 : 0xffffff800c810448
    0xffffff80871c3f00 : 0xffffff800c81961b
    0xffffff80871c3f70 : 0xffffff800c8a6546
    0xffffff80871c3fb0 : 0xffffff800c8cf473
          Kernel Extensions in backtrace:
    com.apple.driver.AppleMuxControl(3.4.5)[4F710151-D347-301D-A0BA-81791B3E8D4D]@0 xffffff7f8dfbe000->0xffffff7f8dfd0fff
    dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f8dfb9000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8ce51000
    dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f8dfa5000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8d3a4000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8df93000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8dc5d000
             com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8e2 ca000->0xffffff7f8e56bfff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8ce51000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8df93000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8dc5d000
    com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f8e56c000->0xffffff7f8e83ffff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8e2 ca000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8ce51000
    com.apple.GeForce(8.1.6)[7C67749B-3B6B-38A9-8203-01A139C21895]@0xffffff7f8e8400 00->0xffffff7f8e90dfff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8e2 ca000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8df93000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8ce51000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8dc5d000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000000c600000
    Kernel text base: 0xffffff800c800000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 1007163675937
    last loaded kext at 279670167764: com.apple.filesystems.msdosfs            1.8.1 (addr 0xffffff7f8e96d000, size 65536)
    loaded kexts:
    com.apple.filesystems.msdosfs            1.8.1
    com.apple.iokit.IOBluetoothSerialManager            4.1.7f4
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.driver.AGPM            100.13.12
    com.apple.driver.AppleTyMCEDriver            1.0.2d2
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AppleUpstreamUserClient            3.5.12
    com.apple.driver.AppleHDAHardwareConfigDriver            2.4.7fc4
    com.apple.driver.AppleMikeyHIDDriver            124
    com.apple.GeForce            8.1.6
    com.apple.driver.AppleIntelHDGraphics            8.1.6
    com.apple.iokit.IOBluetoothUSBDFU            4.1.7f4
    com.apple.driver.AppleHDA            2.4.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleMikeyDriver            2.4.7fc4
    com.apple.driver.AppleBacklight            170.3.5
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.2b4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.driver.AppleLPC            1.6.3
    com.apple.driver.AppleMuxControl            3.4.5
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.ApplePolicyControl            3.4.5
    com.apple.driver.AirPort.Brcm4331            615.20.17
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.6
    com.apple.driver.AppleSMBusPCI            1.0.11d1
    com.apple.nvidia.NVDAStartup            8.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyEventDriver            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleFileSystemDriver            3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.driver.AppleUSBCardReader            3.3.1
    com.apple.driver.AppleIRController            320.15
    com.apple.iokit.SCSITaskUserClient            3.5.6
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.5
    com.apple.driver.AppleUSBHub            635.4.0
    com.apple.driver.AppleFWOHCI            4.9.9
    com.apple.driver.AppleAHCIPort            2.6.6
    com.apple.driver.AppleUSBUHCI            621.4.0
    com.apple.driver.AppleUSBEHCI            621.4.6
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.8
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.8
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient            214.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2.1
    com.apple.driver.AppleIntelCPUPowerManagement            214.0.0
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.iokit.IOSurface            86.0.4
    com.apple.nvidia.nv50hal            8.1.6
    com.apple.NVDAResman            8.1.6
    com.apple.driver.DspFuncLib            2.4.7fc4
    com.apple.iokit.IOAudioFamily            1.9.2fc7
    com.apple.kext.OSvKernDSPLib            1.12
    com.apple.iokit.IOBluetoothFamily            4.1.7f4
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.driver.AppleHDAController            2.4.7fc4
    com.apple.iokit.IOHDAFamily            2.4.7fc4
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.4.5
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.iokit.IO80211Family            530.5
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.4.1d13
    com.apple.driver.AppleSMC            3.1.5d4
    com.apple.driver.AppleSMBusController            1.0.11d1
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.kext.triggers            1.0
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.6
    com.apple.iokit.IOUSBMassStorageClass            3.5.2
    com.apple.iokit.IOUSBHIDDriver            623.4.0
    com.apple.driver.AppleUSBMergeNub            621.4.6
    com.apple.driver.AppleUSBComposite            621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.6
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOAHCISerialATAPI            2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.6
    com.apple.iokit.IOUSBUserClient            630.4.4
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOAHCIFamily            2.5.1
    com.apple.iokit.IOUSBFamily            635.4.0
    com.apple.driver.AppleEFINVRAM            2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.3
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.8
    com.apple.iokit.IOPCIFamily            2.8
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0
    Interval Since Last Panic Report:  53866 sec
    Panics Since Last Report:          1
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Fri Jan 17 12:46:50 2014
    panic(cpu 2 caller 0xffffff7f8afc9f1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff8085a5e000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80840035e0 : 0xffffff800981d636
    0xffffff8084003650 : 0xffffff7f8afc9f1a
    0xffffff8084003720 : 0xffffff7f8b32b26c
    0xffffff80840037e0 : 0xffffff7f8b3fe1f6
    0xffffff8084003820 : 0xffffff7f8b3fe254
    0xffffff8084003890 : 0xffffff7f8b6b7278
    0xffffff80840039c0 : 0xffffff7f8b426ad1
    0xffffff80840039e0 : 0xffffff7f8b33203f
    0xffffff8084003a90 : 0xffffff7f8b32fad6
    0xffffff8084003c90 : 0xffffff7f8b331bdc
    0xffffff8084003d80 : 0xffffff7f8b8a6c6f
    0xffffff8084003de0 : 0xffffff7f8b8a3f07
    0xffffff8084003e20 : 0xffffff7f8b88d898
    0xffffff8084003e60 : 0xffffff7f8b86949e
    0xffffff8084003e80 : 0xffffff7f8b84a130
    0xffffff8084003ed0 : 0xffffff7f8b8474ab
    0xffffff8084003ef0 : 0xffffff8009c50e58
    0xffffff8084003f30 : 0xffffff8009c4f95a
    0xffffff8084003f80 : 0xffffff8009c4fa89
    0xffffff8084003fb0 : 0xffffff80098b3257
          Kernel Extensions in backtrace:
    com.apple.driver.AppleMuxControl(3.4.5)[4F710151-D347-301D-A0BA-81791B3E8D4D]@0 xffffff7f8afbc000->0xffffff7f8afcefff
    dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f8afb7000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f89e51000
    dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f8ad17000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8a3a4000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ad05000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ac72000
    com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8b2 ca000->0xffffff7f8b56bfff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f89e51000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ad05000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ac72000
    com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f8b56c000->0xffffff7f8b83ffff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8b2 ca000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f89e51000
    com.apple.GeForce(8.1.6)[7C67749B-3B6B-38A9-8203-01A139C21895]@0xffffff7f8b8400 00->0xffffff7f8b90dfff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f8b2 ca000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f8ad05000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f89e51000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f8ac72000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x0000000009600000
    Kernel text base: 0xffffff8009800000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 1296160322184
    last loaded kext at 290987910621: com.apple.filesystems.msdosfs            1.8.1 (addr 0xffffff7f8b96d000, size 65536)
    loaded kexts:
    com.apple.filesystems.msdosfs            1.8.1
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AGPM            100.13.12
    com.apple.driver.AppleTyMCEDriver            1.0.2d2
    com.apple.iokit.IOBluetoothSerialManager            4.1.7f4
    com.apple.driver.AppleUpstreamUserClient            3.5.12
    com.apple.driver.AppleHDAHardwareConfigDriver            2.4.7fc4
    com.apple.driver.AppleMikeyHIDDriver            124
    com.apple.GeForce            8.1.6
    com.apple.driver.AppleIntelHDGraphics            8.1.6
    com.apple.iokit.IOBluetoothUSBDFU            4.1.7f4
    com.apple.driver.AppleHDA            2.4.7fc4
    com.apple.driver.AppleMikeyDriver            2.4.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleBacklight            170.3.5
    com.apple.iokit.AppleBCM5701Ethernet            3.6.2b4
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AppleMuxControl            3.4.5
    com.apple.driver.AppleSMBusPCI            1.0.11d1
    com.apple.driver.AppleLPC            1.6.3
    com.apple.driver.AirPort.Brcm4331            615.20.17
    com.apple.driver.ApplePolicyControl            3.4.5
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.6
    com.apple.nvidia.NVDAStartup            8.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyEventDriver            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleUSBCardReader            3.3.1
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleFileSystemDriver            3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.6
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.5
    com.apple.driver.AppleAHCIPort            2.6.6
    com.apple.driver.AppleUSBHub            635.4.0
    com.apple.driver.AppleFWOHCI            4.9.9
    com.apple.driver.AppleUSBEHCI            621.4.6
    com.apple.driver.AppleUSBUHCI            621.4.0
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.8
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.8
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient            214.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2.1
    com.apple.driver.AppleIntelCPUPowerManagement            214.0.0
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.iokit.IOSurface            86.0.4
    com.apple.nvidia.nv50hal            8.1.6
    com.apple.NVDAResman            8.1.6
    com.apple.driver.DspFuncLib            2.4.7fc4
    com.apple.iokit.IOAudioFamily            1.9.2fc7
    com.apple.kext.OSvKernDSPLib            1.12
    com.apple.iokit.IOBluetoothFamily            4.1.7f4
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.driver.AppleHDAController            2.4.7fc4
    com.apple.iokit.IOHDAFamily            2.4.7fc4
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.iokit.IO80211Family            530.5
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.AppleGraphicsControl            3.4.5
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.4.1d13
    com.apple.driver.AppleSMBusController            1.0.11d1
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.driver.AppleSMC            3.1.5d4
    com.apple.kext.triggers            1.0
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.6
    com.apple.iokit.IOUSBMassStorageClass            3.5.2
    com.apple.iokit.IOUSBHIDDriver            623.4.0
    com.apple.driver.AppleUSBMergeNub            621.4.6
    com.apple.driver.AppleUSBComposite            621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.6
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOAHCISerialATAPI            2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.6
    com.apple.iokit.IOAHCIFamily            2.5.1
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBUserClient            630.4.4
    com.apple.iokit.IOUSBFamily            635.4.0
    com.apple.driver.AppleEFINVRAM            2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.3
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.8
    com.apple.iokit.IOPCIFamily            2.8
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0
    Interval Since Last Panic Report:  834 sec
    Panics Since Last Report:          1
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Anonymous UUID: FD0A243C-3325-3BE8-68B4-71E20A28CA75
    Fri Jan 17 12:53:39 2014
    panic(cpu 1 caller 0xffffff7f9093bf1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff808b672000 0x0a5480a2, D0, P2/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 1), Frame : Return Address
    0xffffff808a722ef0 : 0xffffff800f41d636
    0xffffff808a722f60 : 0xffffff7f9093bf1a
    0xffffff808a723030 : 0xffffff7f90f2b26c
    0xffffff808a7230f0 : 0xffffff7f90ffe1f6
    0xffffff808a723130 : 0xffffff7f90ffe254
    0xffffff808a7231a0 : 0xffffff7f912b7278
    0xffffff808a7232d0 : 0xffffff7f91026ad1
    0xffffff808a7232f0 : 0xffffff7f90f3203f
    0xffffff808a7233a0 : 0xffffff7f90f2fad6
    0xffffff808a7235a0 : 0xffffff7f90f313ff
    0xffffff808a723670 : 0xffffff7f9147493e
    0xffffff808a723730 : 0xffffff7f914a0028
    0xffffff808a7237b0 : 0xffffff7f91487460
    0xffffff808a723810 : 0xffffff7f91487d41
    0xffffff808a723860 : 0xffffff7f914881f3
    0xffffff808a7238d0 : 0xffffff7f91488a53
    0xffffff808a723910 : 0xffffff7f91453edf
    0xffffff808a723a90 : 0xffffff7f91484f8f
    0xffffff808a723b50 : 0xffffff7f91452978
    0xffffff808a723ba0 : 0xffffff800f86f789
    0xffffff808a723bc0 : 0xffffff800f870d30
    0xffffff808a723c20 : 0xffffff800f86e74f
    0xffffff808a723d70 : 0xffffff800f498c21
    0xffffff808a723e80 : 0xffffff800f420b4d
    0xffffff808a723eb0 : 0xffffff800f410448
    0xffffff808a723f00 : 0xffffff800f41961b
    0xffffff808a723f70 : 0xffffff800f4a6546
    0xffffff808a723fb0 : 0xffffff800f4cf473
          Kernel Extensions in backtrace:
    com.apple.driver.AppleMuxControl(3.4.5)[4F710151-D347-301D-A0BA-81791B3E8D4D]@0 xffffff7f9092e000->0xffffff7f90940fff
    dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f90929000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8fa51000
    dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f9091a000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f8ffa4000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f90908000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f90875000
    com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f90e ca000->0xffffff7f9116bfff
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8fa51000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f90908000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f90875000
    com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f9116c000->0xffffff7f9143ffff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f90e ca000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8fa51000
    com.apple.GeForce(8.1.6)[7C67749B-3B6B-38A9-8203-01A139C21895]@0xffffff7f914400 00->0xffffff7f9150dfff
    dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f90e ca000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f90908000
    dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f8fa51000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f90875000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000000f200000
    Kernel text base: 0xffffff800f400000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 398323526048
    last loaded kext at 277486843663: com.apple.filesystems.msdosfs            1.8.1 (addr 0xffffff7f9156d000, size 65536)
    loaded kexts:
    com.apple.filesystems.msdosfs            1.8.1
    com.apple.iokit.IOBluetoothSerialManager            4.1.7f4
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.driver.AGPM            100.13.12
    com.apple.driver.AppleTyMCEDriver            1.0.2d2
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AppleUpstreamUserClient            3.5.12
    com.apple.driver.AppleHDAHardwareConfigDriver            2.4.7fc4
    com.apple.driver.AppleMikeyHIDDriver            124
    com.apple.GeForce            8.1.6
    com.apple.driver.AppleIntelHDGraphics            8.1.6
    com.apple.iokit.IOBluetoothUSBDFU            4.1.7f4
    com.apple.driver.AppleHDA            2.4.7fc4
    com.apple.driver.AppleMikeyDriver            2.4.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleBacklight            170.3.5
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.2b4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AirPort.Brcm4331            615.20.17
    com.apple.driver.AppleSMBusPCI            1.0.11d1
    com.apple.driver.AppleMuxControl            3.4.5
    com.apple.driver.ApplePolicyControl            3.4.5
    com.apple.driver.AppleLPC            1.6.3
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.6
    com.apple.nvidia.NVDAStartup            8.1.6
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBCardReader            3.3.1
    com.apple.driver.AppleUSBTCKeyEventDriver            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleFileSystemDriver            3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.6
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.5
    com.apple.driver.AppleFWOHCI            4.9.9
    com.apple.driver.AppleUSBHub            635.4.0
    com.apple.driver.AppleAHCIPort            2.6.6
    com.apple.driver.AppleUSBEHCI            621.4.6
    com.apple.driver.AppleUSBUHCI            621.4.0
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.8
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.8
    com.apple.driver.AppleAPIC            1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient            214.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2.1
    com.apple.driver.AppleIntelCPUPowerManagement            214.0.0
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.iokit.IOSurface            86.0.4
    com.apple.nvidia.nv50hal            8.1.6
    com.apple.NVDAResman            8.1.6
    com.apple.driver.DspFuncLib            2.4.7fc4
    com.apple.iokit.IOAudioFamily            1.9.2fc7
    com.apple.kext.OSvKernDSPLib            1.12
    com.apple.iokit.IOBluetoothFamily            4.1.7f4
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport            4.1.7f4
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.driver.AppleHDAController            2.4.7fc4
    com.apple.iokit.IOHDAFamily            2.4.7fc4
    com.apple.iokit.IO80211Family            530.5
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.4.5
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.4.1d13
    com.apple.driver.AppleSMBusController            1.0.11d1
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.driver.AppleSMC            3.1.5d4
    com.apple.kext.triggers            1.0
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.6
    com.apple.iokit.IOUSBMassStorageClass            3.5.2
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOUSBHIDDriver            623.4.0
    com.apple.driver.AppleUSBMergeNub            621.4.6
    com.apple.driver.AppleUSBComposite            621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.6
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOAHCISerialATAPI            2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.6
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBUserClient            630.4.4
    com.apple.iokit.IOAHCIFamily            2.5.1
    com.apple.iokit.IOUSBFamily            635.4.0
    com.apple.driver.AppleEFINVRAM            2.0
    com.apple.driver.AppleEFIRuntime            2.0
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.3
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.8
    com.apple.iokit.IOPCIFamily            2.8
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0
    System Profile:
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 13 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 13 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 3

    Welcome to Apple Support Communities
    You have got a Mid 2010 15-inch MacBook Pro and the log shows that the NVIDIA GPU is damaged.
    These MacBooks Pro have got a defective GPU that may cause unexpected restarts, black screens, kernel panics, etc. See > http://support.apple.com/kb/TS4088
    Apple is repairing all these MacBooks for free if they were purchased less than 3 years ago, so make a backup of your files onto an external drive with Time Machine and take the computer to an Apple Store or reseller.

  • My macbook pro crashing, can anyone help me, see diagnostic reportInterval Since Last Panic Report:  342 sec Panics Since Last Report:          1 Anonymous UUID:                    06C9C769-B69C-A2BC-4241-FC810B400356  Sun Oct 13 21:23:34 2013 panic(cpu 2

    Interval Since Last Panic Report:  342 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    06C9C769-B69C-A2BC-4241-FC810B400356
    Sun Oct 13 21:23:34 2013
    panic(cpu 2 caller 0xffffff7f9c4aff1a): "GPU Panic: [<None>] 5 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff8096a36000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.5/src/AppleM uxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80ba42b710 : 0xffffff801a21d636
    0xffffff80ba42b780 : 0xffffff7f9c4aff1a
    0xffffff80ba42b850 : 0xffffff7f9a9ad26c
    0xffffff80ba42b910 : 0xffffff7f9aa801f6
    0xffffff80ba42b950 : 0xffffff7f9aa80254
    0xffffff80ba42b9c0 : 0xffffff7f9ad45278
    0xffffff80ba42baf0 : 0xffffff7f9aaa8ad1
    0xffffff80ba42bb10 : 0xffffff7f9a9b403f
    0xffffff80ba42bbc0 : 0xffffff7f9a9b1ad6
    0xffffff80ba42bdc0 : 0xffffff7f9a9b2b41
    0xffffff80ba42bea0 : 0xffffff7f9a94e80a
    0xffffff80ba42bef0 : 0xffffff7f9c471838
    0xffffff80ba42bf40 : 0xffffff7f9c470783
    0xffffff80ba42bf60 : 0xffffff801a23e26e
    0xffffff80ba42bfb0 : 0xffffff801a2b3257
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9a9 4c000->0xffffff7f9abeefff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9a8b2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9a938000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9a8f5000
             com.apple.driver.AppleMuxControl(3.4.5)[4F710151-D347-301D-A0BA-81791B3E8D4D]@0 xffffff7f9c4a2000->0xffffff7f9c4b4fff
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[B5B1F368-132E-3509-9ED5-93270E3ABB DD]@0xffffff7f9c49d000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9a8b2000
                dependency: com.apple.driver.AppleGraphicsControl(3.4.5)[4A2C8548-7EF1-38A9-8817-E8CB34B8DC A6]@0xffffff7f9c489000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f9a7f3000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9a938000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9a8f5000
             com.apple.nvidia.nv50hal(8.1.6)[3455BCFE-565A-3FE5-9F0B-855BCB6CC9B3]@0xffffff7 f9abfa000->0xffffff7f9aecdfff
                dependency: com.apple.NVDAResman(8.1.6)[EA4F9902-5AAE-3F1D-A846-3796221C8C91]@0xffffff7f9a9 4c000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9a8b2000
             com.apple.driver.AGPM(100.13.12)[40BECF44-B2F1-3933-8074-AD07B38CA43A]@0xffffff 7f9c46f000->0xffffff7f9c480fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[6C1D646D-7E5E-3D7F-A557-2CBA398FF878]@0xffffff 7f9a8b2000
                dependency: com.apple.driver.IOPlatformPluginFamily(5.4.1d13)[04F9C88C-92F3-300B-8C68-4A0B5 F7D8C94]@0xffffff7f9b371000
                dependency: com.apple.iokit.IONDRVSupport(2.3.7)[F16E015E-1ABE-3C40-AC71-BC54F4BE442E]@0xff ffff7f9a938000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[9928306E-3508-3DBC-80A4-D8F1D87650D7]@0 xffffff7f9a8f5000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12F45
    Kernel version:
    Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64
    Kernel UUID: EA38B02E-2B88-309F-BA68-1DE29F605DD8
    Kernel slide:     0x000000001a000000
    Kernel text base: 0xffffff801a200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 811209060849
    last loaded kext at 245919991511: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f9c5b3000, size 65536)
    last unloaded kext at 306136410519: com.apple.filesystems.msdosfs          1.8.1 (addr 0xffffff7f9c5b3000, size 57344)
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          75.19
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.13.12
    com.apple.iokit.IOBluetoothSerialManager          4.1.7f4
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.driver.AppleHDA          2.4.7fc4
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleMikeyDriver          2.4.7fc4
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.driver.AppleIntelHDGraphics          8.1.6
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.4.5
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.11d1
    com.apple.GeForce          8.1.6
    com.apple.driver.AppleLPC          1.6.3
    com.apple.driver.AppleMuxControl          3.4.5
    com.apple.driver.AppleUpstreamUserClient          3.5.12
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.6
    com.apple.driver.SMCMotionSensor          3.0.3d1
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    com.apple.driver.AppleUSBCardReader          3.3.1
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.6
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.3.5
    com.apple.iokit.AppleBCM5701Ethernet          3.6.2b4
    com.apple.driver.AppleUSBHub          635.4.0
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AirPort.Brcm4331          615.20.17
    com.apple.driver.AppleAHCIPort          2.6.6
    com.apple.driver.AppleUSBEHCI          621.4.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.8
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.8
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          214.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2.1
    com.apple.driver.AppleIntelCPUPowerManagement          214.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.1.7f4
    com.apple.driver.AppleMultitouchDriver          237.4
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.4.7fc4
    com.apple.iokit.IOAudioFamily          1.9.2fc7
    com.apple.kext.OSvKernDSPLib          1.12
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.1.7f4
    com.apple.nvidia.nv50hal          8.1.6
    com.apple.driver.AppleHDAController          2.4.7fc4
    com.apple.iokit.IOHDAFamily          2.4.7fc4
    com.apple.iokit.IOSurface          86.0.4
    com.apple.iokit.IOBluetoothFamily          4.1.7f4
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.4.1d13
    com.apple.driver.AppleGraphicsControl          3.4.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.NVDAResman          8.1.6
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleSMC          3.1.5d4
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.6
    com.apple.iokit.IOUSBMassStorageClass          3.5.2
    com.apple.iokit.IOUSBHIDDriver          623.4.0
    com.apple.driver.AppleUSBMergeNub          621.4.6
    com.apple.driver.AppleUSBComposite          621.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.6
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.6
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBUserClient          630.4.4
    com.apple.iokit.IO80211Family          530.5
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.5.1
    com.apple.iokit.IOUSBFamily          635.4.0
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.8
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i7, 2.66 GHz, 4 GB, SMC 1.58f17
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 512 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80CE, 0x4D34373142353637334648302D4346382020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f4 12974, 3 service, 21 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE SSD TS128B, 121,33 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4

    You have the MacBookPro6,2, the Edsel of Macs. It may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider, to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Note that the replacement program only applies within three years of purchase. If you wait beyond that date, Apple may refuse the service. In that case, you'll be quoted a price of about $300 (in the U.S.) for a depot repair. The model was discontinued in February 2011, so the replacement program will be ending quite soon.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Sometimes the replacement part is also defective, so be prepared for that possibility.
    If it's too late for your unit to be repaired under the program, and you don't want to pay for a new logic board, you may be able to stop the panics by disabling automatic graphics switching.
    *An SSD doesn't need to be zeroed.

  • Import running slow since last days.

    I have a issue where Oracle 9i database import is running very slow since last couple of days. The process used to be completed in 5 hours every day. But since last two days it is taking 10 to 15 hours to complete. I have checked the data-file size, and export dump-file sizes are consistent with what it used to be. There are no any significant changes in the database size no errors reported in the import and alert log files. Please help me Identify and resolve the real cause of this performance degrade.
    Thanks,
    Farhan
    Edited by: 884977 on Dec 2, 2012 11:25 AM

    --Exact OS version
    SunOS dbw01 5.10 Generic_141444-09 sun4v sparc SUNW,SPARC-Enterprise-T2000
    --Oracle database version
    Oracle9i Release 9.2.0.6.0 - 64bit Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE 9.2.0.6.0 Production
    TNS for Solaris: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    --Lines from import logfile
    Connected to: Oracle9i Release 9.2.0.6.0 - 64bit Production
    JServer Release 9.2.0.6.0 - Production
    Export file created by EXPORT:V09.02.00 via direct path
    import done in US7ASCII character set and AL16UTF16 NCHAR character set
    import server uses WE8ISO8859P1 character set (possible charset conversion)
    export client uses AL32UTF8 character set (possible charset conversion)
    . importing CFD_USER's objects into CFD_USER
    . . importing table "CFD_ACCOUNT_POLICY" 613 rows imported
    . . importing table "CFD_ACTIVE_EMPLOYEE_COUNT" 0 rows imported
    . . importing table "CFD_ADDRESS" 1435608 rows imported
    . . importing table "CFD_APPEAL" 1688 rows imported
    . . importing table "CFD_APPEALS_DOCUMENTS_LNK" 5155 rows imported
    . . importing table "CFD_APPEAL_NOTES_LNK" 2564 rows imported
    . . importing table "CFD_CALC_METHOD_CHANGE_HELPER" 38323 rows imported
    . . importing table "CFD_CODE" 379 rows imported
    . . importing table "CFD_CONSTRAINT_CONTEXT" 2823 rows imported
    . . importing table "CFD_CONSTRAINT_CRITERIA" 34070 rows imported
    . . importing table "CFD_CONTACT_INFORMATION_MV" 32018 rows imported
    --Command used
    imp CFDa_user/xxxxxxxx parfile=/export/home/oracle/shells/cfdtables.par file=/oradata/dump/cfdtables.dmp log=/oradata/dump/CFD_tablesimp.log ignore=y recordlength=65535 trace=y
    Thanks,

Maybe you are looking for

  • Microphone and speaker no longer working after update to 4.3.3

    2 hours ago i have updated my iPhone 4 to iOS 4.3.3 It is a standard, never jailbreaked or whatever, iPhone 4, which was running 4.3.2 After the update suddenly i heard no sounds when pressing any buttons. I checked the settings, but everything was s

  • Adobe Reader on Windows 7 64BIT

    Hi All since version 10 (X) of adobe reader our windows 7 64bit machines take an age to open PDF's over 10 seconds for most, regardless of if the file is on the local machine or network They currently have version 10.1.0 installed. On all our vista p

  • Import process in cin for complite process

    sir can some one explain me total process in journal entries (from po to utliz) in capital import process. when i am posting excise in j1iex_p it is crediting below gl acc i could nt understand actual process ,when i am doing miro all expencess is po

  • How to create calendar type sheet?

    Hi, Does anybody knows how to create a calendar like sheet? I think there is a function that automatically put the dates into the header but I cannot find it. I really don't want to write down each day from now to next year... Thanks to anybody that

  • Need to close Mozilla Firefox so I can uninstall another program

    I want to get rid of ask toolbar but can't uninstalled until firefox is closed