VMware vSphere

 View Only
Expand all | Collapse all

NMI IPI: Panic requested by another pcpu

elozano69

elozano69Sep 24, 2018 06:49 PM

paulboniotti198

paulboniotti198Dec 03, 2018 11:15 AM

Scott Vessey

Scott VesseyJul 28, 2019 07:20 AM

  • 1.  NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 06:49 PM

    Has anyone experience this pink screen?



  • 2.  RE: NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 07:18 PM

    Going by the functions reported in the stack, looks like the host has crashed in the ahci driver module during extensive logging. Do you have any logs set to verbose or debug level logging? Any other recent changes made to your environment?

    Cheers,

    Supreet



  • 3.  RE: NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 09:31 PM

    Actually this is a new installation, this pink screen is happening every 2-3 days. i have not set any logs as you mention



  • 4.  RE: NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 09:35 PM

    What hardware are you running ESXi on here?



  • 5.  RE: NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 09:42 PM

    It is a Power Edge T640



  • 6.  RE: NMI IPI: Panic requested by another pcpu

    Posted Sep 24, 2018 09:46 PM

    You checked to ensure you have completely up-to-date BIOS and firmware on this server?



  • 7.  RE: NMI IPI: Panic requested by another pcpu

    Posted Oct 23, 2018 01:36 AM

    Hello, I was wondering if you found a resolution to this issue?  We are running VMware ESXi 6.7 on a PowerEdge T640 and it just started presenting this very same error.



  • 8.  RE: NMI IPI: Panic requested by another pcpu

    Posted Nov 15, 2018 10:34 AM

    Not sure if tis the same but at least it begins with the same issue...

    I am running a newer Intel Server which is have "the same" issue...



  • 9.  RE: NMI IPI: Panic requested by another pcpu

    Posted Nov 26, 2019 09:33 PM

    I have PSOD very similar to yours, however I am running an Cisco UCS blade. Did you find out anything for your PSOD? Cisco pointed me here, but I don't have any AHCI drivers installed.



  • 10.  RE: NMI IPI: Panic requested by another pcpu

    Posted Mar 09, 2020 02:25 PM

    I just got this same PSOD running on a UCS blade, firmware 4.04(d) and ESXi 6.7 Update 3.  Did you find anything for this?



  • 11.  RE: NMI IPI: Panic requested by another pcpu

    Broadcom Employee
    Posted Mar 09, 2020 05:57 PM

    Hi ElizabethFoster,

    Your PSOD screen shows Memory Controller Read Error messages which suggest hardware problems.  If the firmware is up-to-date and supported, I would next recommend running hardware diagnostics.

    --

    Darius



  • 12.  RE: NMI IPI: Panic requested by another pcpu

    Posted Nov 25, 2018 04:50 AM

    Dear Sir.

    I Found This Same Screen.

    Use Exsi 14 Day. I Found This Screen.

    Thak You

    Nisit



  • 13.  RE: NMI IPI: Panic requested by another pcpu

    Posted Dec 03, 2018 11:15 AM

    You found the solution for this psod



  • 14.  RE: NMI IPI: Panic requested by another pcpu

    Posted Mar 18, 2019 03:46 PM

    I experienced the exact same issue. In my case it was caused by a faulty driver/controller/device (AHCI / DVDROM). I solved it by disabling 'vmw_ahci' and 'ahci' drivers since I didn't use the DVDROM anyway. The SSD and HDD are on a separate RAID controller, so if that's the same in your case:

    esxcli system module set --enabled=false --module=vmw_ahci

    esxcli system module set --enabled=false --module=ahci

    and reboot the server. The servers which have the same experience are stable now.

    I also wrote an article about this on my blog, feel free to read:

    Solving PSOD 'Panic Requested by another PCPU' - Jume - My Virtualization Blog



  • 15.  RE: NMI IPI: Panic requested by another pcpu

    Posted Jul 27, 2019 06:58 PM

    Thank you for this post.

    After crashing 3 times in 60 minutes, the server has been stable for 24 hours now.



  • 16.  RE: NMI IPI: Panic requested by another pcpu

    Posted Jul 28, 2019 07:20 AM

    Moderator note: Moved to ESXi



  • 17.  RE: NMI IPI: Panic requested by another pcpu

    Posted Dec 09, 2022 11:49 AM

    I know this is an old post but it's what comes up when you google the issue. There's a KB article that covers exactly what is going on - https://kb.vmware.com/s/article/67560 but it is exceptionally poorly written.

    There are two solutions to fix this, either remove/replace the CD/DVD drive or disable AHCI, assuming AHCI isn't being used for anything else. Unfortunately this bug can't be fixed via firmware updates so these drives are trash.

    The fix is exactly what bouke posted, disable AHCI using the following commands:
    esxcli system module set --enabled=false --module=vmw_ahci
    esxcli system module set --enabled=false --module=ahci

    If you want to confirm you have the problematic drive you can run this PowerCLI command to find you CD/DVD drive model.
    Get-VMHost | where {$_ | get-scsilun -LunType cdrom} | Select Name,@{N="Vendor";E={$_ | Get-ScsiLun -LunType cdrom | select Vendor}},@{N="Model";E={$_ | Get-ScsiLun -LunType cdrom | select Model}}

    If it says DU-8A5LH then it's a ticking time bomb waiting to PSOD at any moment (even when not using the drive).