App Memory Leak When Open iPhoto

Hi everyone,
Does anyone have experienced app memory leak when open iPhoto?  My free memory immediate dropped from 5000 mb to 15mb when I open iPhoto and the app never open.  If I force to quit iPhoto, all return to normal and everything work fine.  I only have iPhoto app running, not sure what caused the memory leak??? 
Looking for help. 
Thanks
JHML

Actually the new library was a test to see if the problem occurred only with your current library or with all libraries.  The fact that switching libraries cleared up the problem is just serendipitous. 

Similar Messages

  • Memory leak when LineUnavailableException thrown

    I think I've found a Java bug that I'd like to run past you folks first before submitting it; perhaps you've come across this and can confirm it also?
    I play audio clips (using javax.sound in 1.3.1_02 and 1.4.0-b92) in my app on certain events but if the audio system is unavailable a LineUnavailableException gets thrown when I do clip.open(stream). I retry playing the audio pausing each time, until I reach a timeout and then give up.
    Every time the exception is thrown I can see the JVM swallow more memory (about 500k on WinNT 4.0); which is a major problem if the app ends up retrying lots of audio.
    This is VERY easy to reproduce with the Java Sound Demo! All you need do is keep the audio system busy - play some MP3s/a CD etc then set up some AU/WAVs in the Java Sound Demo on a loop and watch it throw LineUnavailableExceptions in your cmd window! Bring up Task Manager then watch the JVM grow in size as it gobbles up memory and doesn't release it. It'll go from 15Mb to 50Mb in 60 seconds. It also seems to bypass the -Xmx max JVM memory setting also, presumably due to the allocs happening in native code??
    Anyone else seen this or care to reproduce just in case I'm going mad?
    cheers,
    - Justin

    Note that there was a similar bug reported which this seems very related to...
    "Memory leaks on opening and closing source DataLines"
    http://developer.java.sun.com/developer/bugParade/bugs/4319431.html
    - Justin

  • Memory Leak when running Contacts

    I am having a big memory leak when running the app Contacts on a MB Air. It gobbles up 2 GB of ram in just a few minutes forcing a reboot. I have re-installed Mountain Lion 10.8.2 and it still leaks memory. Watching Activity Monitor shows the rapid increase in Ram being gobbled up by Contacts. Used Mackeeper to clear cache as well as ran Cocktail, all to no avail. Any tips would be greatly appreciated.

    The size of oracle.exe is not an indication of how the Java VM GC works; so you are not comparing apples to apples. It'll be too long to explain here but in my upcoming book (see hereafter), I gave a detailled explanation of the various memory areas the Java VM uses and how these are GCed and also how you can meausre their size (not all, though).
    In short you want to use OracleRuntime methods such as
    OracleRuntime.getSessionSize(); --> get he current size of Sessionspace
    OracleRuntime.getNewspaceSize(); --> get he current size of Newspace
    there are other memory areas described in the book
    http://www.oracle.com/technology/pub/articles/mensah_dws.html
    http://www.elsevier.com/wps/find/bookdescription.cws_home/706089/description#description
    Sample chapter: http://www.oracle.com/technology/books/pdfs/mensah_ch1.pdf
    Kuassi

  • TestStand 2010 Memory Leak when calling sequence in New Thread or New Execution

    Version:  TestStand 4.5.0.310
    OS:  Windows XP
    Steps to reproduce:
    1) Unzip 2 attached sequences into this folder:  C:\New Thread Memory Leak
    2) Open "New Thread Memory Leak - Client" SEQ file in TestStand 2010
    3) Open Task Manager, click Processes tab, sort A-Z (important), and highlight the "SeqEdit.exe" process.  Note the memory useage.
    4) Be ready to click Terminate All in TestStand after you see the memory start jumping.
    5) Run the "New Thread Memory Leak - Client" sequence.
    6) After seeing the memory consumption increase rapidly in Task Manager, press Terminate All in TestStand.
    7) Right click the "While Loop - No Wait (New Thread)" step and set Run Mode » Skip
    8) Right click the "While Loop - No Wait (New Execution)" step and set Run Mode » Normal
    9) Repeat steps 3 through 6
    I've removed all steps from the While Loop to isolate the problem.  I've also tried the other methods you'll see in the ZIP file but all cause the memory leak (with the exception of the Message Popup).
    I have not installed the f1 patch, but none of the bug fixes listed appear to address this issue.  NI Applications Engineering has been able to reproduce the issue (with Windows 7) and is working on it in parallel.  That said, are we missing something??
    Any ideas?
    Certified LabVIEW Architect
    Wait for Flag / Set Flag
    Separate Views from Implementation for Strict Type Defs
    Solved!
    Go to Solution.
    Attachments:
    New Thread Memory Leak.zip ‏14 KB

    Good point Doug.  In this case parallel sequences are being launched at the beginning of the sequential process model, but I'll keep that in mind for later.  Take away:  be intentional about when to wait at the end of the sequence for threads to complete.
    Certified LabVIEW Architect
    Wait for Flag / Set Flag
    Separate Views from Implementation for Strict Type Defs

  • Memory leak when using Threads?

    I did an experiment and noticed a memory leak when I was using threads.. Here's what I did.
    ======================================
    while( true )
         Scanner sc = new Scanner(System.in);
         String answer;
         System.out.print("Press Enter to continue...");
         answer = sc.next();
         new TestThread();
    ========================================
    And TestThead is the following
    ========================================
    import java.io.*;
    import java.net.*;
    public class TestThread extends Thread
    public TestThread() { start(); }
    public void run() {  }
    =====================================
    When I open windows Task Manager, every time a new thread starts and stops, the java.exe increases the Mem Usage.. Its a memory leak!? What is going on in this situation.. If I start a thread and the it stops, and then I start a new thread, why does it use more memory?
    -Brian

    MoveScanner sc = new
    Scanner(System.in);out of the
    loop.Scanner sc = new Scanner(System.in);
    while (true) {
    That won't matter in any meaningful way.
    Every loop iteration creates a new Scanner, but it also makes a Scanner eligible for GC, so the net memory requirement of the program is constant.
    Now, of course, it's possible that the VM won't bother GCing until 64 MB worth of Scanners have been created, but we don't care about that. If we're allowing the GC 64 MB, then we don't care how it uses it or when it cleans it up.

  • Memory Leak when TOMCAT connects to Oracle 10g RAC using JDBC Thin driver.

    We had experienced Memory leak when a Oracle 10g (10.2.0.3) RAC node was evicted. TOMCAT app server is connecting to the Oracle 10g RAC database instances using JDBC 10.2.0.3 thin driver.
    Anyone had similar experience?
    Any ideas? Any bugs reported/fixed?
    Thanks,
    Raj

    If you're doing XA, we absolutely do not support
    driver-level load-balancing OR failover. Use neither.
    For non-XA, you can use driver-level failover. For
    non-XA, you could set load-balancing, but it won't
    help because we get connections from the driver,
    and keep them indefinitely, so the driver never gets
    the chance to affect which connections the pool
    uses after that.

  • I have 15000 photos in my 1Phooto library in 58 events. I have also made 27 slide shows from some of these events. When opening iPhoto, the photoscome up slmost instantly but the side bar seems to take forever to come up.  Is there s limit to the amount o

    I have 15000 photos in my 1Phooto library in 58 events. I have also made 27 slide shows from some of these events. When opening iPhoto, the photoscome up slmost instantly but the side bar seems to take forever to come up.  Is there s limit to the amount of photos yu can have or to the amount if items in the side bar?

    Try this basic troubleshooting technique:  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - reboot
    4 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • When opening iPhoto 9.5.1 a dialog box appears: "A photo has been found in the iPhoto library that was not imported". "Would you like to import it?" After appearing twice iPhoto then opens normally with no changes and works OK. Why dose this happen.

    Unwanted dialog box when opening iPhoto.

    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. Make no other changes. Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.

  • I have unlocked my iPhone 3G with Vodafone via iTunes, but now the downloaded apps crash immediately when opened. I've tried a Restore, but this didn't help. I've also tried removing all apps and re-installing them, but they still don't work. Any ideas?

    I have unlocked my iPhone 3G with Vodafone via iTunes, but now the downloaded apps crash immediately when opened. I've tried a Restore, but this didn't help. I've also tried removing all apps and re-installing them, but they still don't work. Any ideas? Thanks.

    yep, unfortunately can't reset without the passcode either.
    With regards to doing a restore, do you mean:
    open itunes on my computer
    click on my device on the left
    go to the device summary
    click restore
    it then asks if i want to back up before i restore (to which i say no)
    then it asks me if i'm sure I want to restore to factory settings and that all of me media and data will be erased and replaced with the newest version ( to which I say yes)
    then it takes about 90 mins to do this but when I look at my phone, everything is exactly the same.
    Am I missing something? Obviously I'm technologically challenged, but I HAVE to get to the bottom of this!

  • HT1338 I have just completed the recent software update. When opening iPhoto the updates applied themselves and stalled at step 5 at 99% and will not finish. any recommendations would be greatly appreciated.

    I have just completed the recent software update. When opening iPhoto the updates applied themselves and stalled at step 5 at 99% and will not finish. any recommendations would be greatly appreciated.

    I have just completed the recent software update. When opening iPhoto the updates applied themselves and stalled at step 5 at 99% and will not finish. any recommendations would be greatly appreciated.

  • I have a MacPro with OSX 10.9.4 and I photo 9.5.  When opening IPhoto I got a message I needed to upgrade my IPhoto with an upgrade installer.  Now IPhoto is just spinning and will not let me quit or Upgrade.

    I have a MacPro with OSX 10.9.4 and I photo 9.5.  When opening IPhoto I got a message I needed to upgrade my IPhoto with an upgrade installer.  Now IPhoto is just spinning and will not let me quit or Upgrade.

    BAckup your iPhoto library, depress and hold the option and command keys while launching iPhoto until the first aid window comes up and repair permissions and if necessary rebuild your database
    LN

  • When opening iPhoto it try to update in 9 steps and it stops by step 5 at 99%  the only thing i can do than is force a stop please help

    when opening iPhoto it try to update in 9 steps and it stops by step 5 at 99%  the only thing i can do than is force a stop please help

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    If that fails:
    Restore from your back up

  • 3rd party apps close immediately when opened

    Hello All,
    I saw that this issue: "3rd party apps close immediately when opened" was happening often on older iPAD posts, however, was not able to find a solution.  I cannot open any 3rd party apps, but email, photos, etc work fine.  thanks for the help!

    If it's happening on all the apps that you've downloaded from the App Store, but not the Apple built-in ones, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted.

  • Photoshop CS6 memory leak when idle and nothing open

    Photoshop CS6 runs away with memory after being used and then going idle. If I open up PS and leave it, it will be ok but as soon as I open any file it will go up in memory usage (which is normal) but when I close all files and hide PS the memory will stay high never goes back down. When I close PS and re-open (no files open) again it idles at 300Mb memory but when I open a file then close it and then hide/idle PS it raises and stays around 1.25-1.5 GB if not more.
    I have tried to Purge All, and even hide all menus to no avail. I have even tried to close Suitcase (eleminiate any font issues) and still same problem. I am running PS bone stock, no extra plug-ins. 
    Any ideas on why it would be doing this would be greatly appreciated!
    My Computer:
    Photoshop 13.0.1
    MacBookPro
    OS 10.6.8
    CPU: 2.66 GHz Intel Core 2 Duo
    Mem: 4 GB 1067 MHz DDR3
    HD: 300GB (30GB Free)

    Photoshop is not supposed to free memory when you close documents -- that's normal, because the memory gets reused.
    Yes, opening a file makes the memory usage go up - because space is needed for the document and it's window.
    None of what you said describes a leak, and sounds like perfectly normal behavior.

  • Macbook Pro unstable crashing when opening iPhoto, FB flash apps and others.

    I have a 2010 Macbook Pro that crashes when I open iPhoto or use Facebook flash apps.  I can't seem to find a solution.  I have included the last panic report.  I can use safari without a problem as long as I don't go on flash heavy sites.  I have tried uninstalling and reinstalling flash with no success.  I am not sure what to do next.  This started when I first updated to Lion and has persisted.  I have done a clean install of Mountain Lion but the problem still continues.
    Interval Since Last Panic Report:  142682 sec
    Panics Since Last Report:          5
    Anonymous UUID:                    33117B64-B3FB-5583-9E63-F9E64369095C
    Sun Sep 30 20:11:26 2012
    panic(cpu 1 caller 0xffffff7f9a601b25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80b99ff000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address
    0xffffff809630b260 : 0xffffff8019e1d626
    0xffffff809630b2d0 : 0xffffff7f9a601b25
    0xffffff809630b360 : 0xffffff7f9a6fb4b3
    0xffffff809630b3c0 : 0xffffff7f9a6fb527
    0xffffff809630b430 : 0xffffff7f9aa10853
    0xffffff809630b570 : 0xffffff7f9a721659
    0xffffff809630b5a0 : 0xffffff7f9a60b8da
    0xffffff809630b650 : 0xffffff7f9a606fac
    0xffffff809630b840 : 0xffffff7f9a608ade
    0xffffff809630b920 : 0xffffff7f9b6c4ad5
    0xffffff809630b960 : 0xffffff7f9b6da507
    0xffffff809630b980 : 0xffffff7f9b6f9353
    0xffffff809630b9c0 : 0xffffff7f9b6f93b1
    0xffffff809630ba00 : 0xffffff7f9b6dfc43
    0xffffff809630ba50 : 0xffffff7f9b69a0fc
    0xffffff809630bae0 : 0xffffff7f9b695efa
    0xffffff809630bb10 : 0xffffff7f9b693aab
    0xffffff809630bb40 : 0xffffff801a2650c3
    0xffffff809630bbc0 : 0xffffff801a267153
    0xffffff809630bc20 : 0xffffff801a264b8f
    0xffffff809630bd70 : 0xffffff8019e981e1
    0xffffff809630be80 : 0xffffff8019e20aed
    0xffffff809630beb0 : 0xffffff8019e10448
    0xffffff809630bf00 : 0xffffff8019e1961b
    0xffffff809630bf70 : 0xffffff8019ea5b16
    0xffffff809630bfb0 : 0xffffff8019eced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a59a 000->0xffffff7f9a89cfff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f9a586000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f9a543000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f9 a8aa000->0xffffff7f9abccfff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a5 9a000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f9b67b000 ->0xffffff7f9b73dfff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a5 9a000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f9a586000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f9a543000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000019c00000
    Kernel text base: 0xffffff8019e00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 4766437242003
    last loaded kext at 3248528788987: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f9c2d6000, size 229376)
    last unloaded kext at 300628673108: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f9aeda000, size 65536)
    loaded kexts:
    com.symantec.kext.fw          1.0.3f5
    com.symantec.kext.filesecurity          1.3.3f65
    com.squirrels.airparrot.framebuffer          3
    com.squirrels.driver.AirParrotSpeakers          1.7
    com.symantec.kext.ips          3.2f8
    com.symantec.kext.pf          4.1.1f13
    com.symantec.kext.internetSecurity          1.3.2f5
    com.apple.filesystems.smbfs          1.8
    com.apple.filesystems.afpfs          10.0
    com.apple.nke.asp_tcp          7.0.0
    com.apple.filesystems.ntfs          3.10
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    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.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.security.SecureRemotePassword          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    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.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

    I have a 2010 Macbook Pro that crashes when I open iPhoto or use Facebook flash apps.  I can't seem to find a solution.  I have included the last panic report.  I can use safari without a problem as long as I don't go on flash heavy sites.  I have tried uninstalling and reinstalling flash with no success.  I am not sure what to do next.  This started when I first updated to Lion and has persisted.  I have done a clean install of Mountain Lion but the problem still continues.
    Interval Since Last Panic Report:  142682 sec
    Panics Since Last Report:          5
    Anonymous UUID:                    33117B64-B3FB-5583-9E63-F9E64369095C
    Sun Sep 30 20:11:26 2012
    panic(cpu 1 caller 0xffffff7f9a601b25): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80b99ff000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address
    0xffffff809630b260 : 0xffffff8019e1d626
    0xffffff809630b2d0 : 0xffffff7f9a601b25
    0xffffff809630b360 : 0xffffff7f9a6fb4b3
    0xffffff809630b3c0 : 0xffffff7f9a6fb527
    0xffffff809630b430 : 0xffffff7f9aa10853
    0xffffff809630b570 : 0xffffff7f9a721659
    0xffffff809630b5a0 : 0xffffff7f9a60b8da
    0xffffff809630b650 : 0xffffff7f9a606fac
    0xffffff809630b840 : 0xffffff7f9a608ade
    0xffffff809630b920 : 0xffffff7f9b6c4ad5
    0xffffff809630b960 : 0xffffff7f9b6da507
    0xffffff809630b980 : 0xffffff7f9b6f9353
    0xffffff809630b9c0 : 0xffffff7f9b6f93b1
    0xffffff809630ba00 : 0xffffff7f9b6dfc43
    0xffffff809630ba50 : 0xffffff7f9b69a0fc
    0xffffff809630bae0 : 0xffffff7f9b695efa
    0xffffff809630bb10 : 0xffffff7f9b693aab
    0xffffff809630bb40 : 0xffffff801a2650c3
    0xffffff809630bbc0 : 0xffffff801a267153
    0xffffff809630bc20 : 0xffffff801a264b8f
    0xffffff809630bd70 : 0xffffff8019e981e1
    0xffffff809630be80 : 0xffffff8019e20aed
    0xffffff809630beb0 : 0xffffff8019e10448
    0xffffff809630bf00 : 0xffffff8019e1961b
    0xffffff809630bf70 : 0xffffff8019ea5b16
    0xffffff809630bfb0 : 0xffffff8019eced53
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a59a 000->0xffffff7f9a89cfff
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f9a586000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f9a543000
             com.apple.nvidia.nv50hal(8.0)[9F3D09B5-3158-3D9E-BDA3-E71576AAD3B7]@0xffffff7f9 a8aa000->0xffffff7f9abccfff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a5 9a000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
             com.apple.GeForce(8.0)[2E56ED9A-D848-3795-9E52-56BABDC9000C]@0xffffff7f9b67b000 ->0xffffff7f9b73dfff
                dependency: com.apple.NVDAResman(8.0.0)[A4C53A36-22B6-3075-82B9-9DE612A9C015]@0xffffff7f9a5 9a000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f9a586000
                dependency: com.apple.iokit.IOPCIFamily(2.7.1)[9901C237-547C-3B52-99DE-C4870A19E2B5]@0xffff ff7f9a508000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f9a543000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12C54
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000019c00000
    Kernel text base: 0xffffff8019e00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 4766437242003
    last loaded kext at 3248528788987: com.apple.filesystems.smbfs          1.8 (addr 0xffffff7f9c2d6000, size 229376)
    last unloaded kext at 300628673108: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f9aeda000, size 65536)
    loaded kexts:
    com.symantec.kext.fw          1.0.3f5
    com.symantec.kext.filesecurity          1.3.3f65
    com.squirrels.airparrot.framebuffer          3
    com.squirrels.driver.AirParrotSpeakers          1.7
    com.symantec.kext.ips          3.2f8
    com.symantec.kext.pf          4.1.1f13
    com.symantec.kext.internetSecurity          1.3.2f5
    com.apple.filesystems.smbfs          1.8
    com.apple.filesystems.afpfs          10.0
    com.apple.nke.asp_tcp          7.0.0
    com.apple.filesystems.ntfs          3.10
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMuxControl          3.2.11
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyboard          235.4
    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.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AirPort.Brcm4331          602.15.22
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.security.SecureRemotePassword          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    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.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.1
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0

Maybe you are looking for