[Bug 268393] system always reboots once from a powered off state

From: <bugzilla-noreply_at_freebsd.org>
Date: Wed, 30 Aug 2023 17:58:28 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=268393

Oleh Hushchenkov <o.hushchenkov@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |o.hushchenkov@gmail.com

--- Comment #58 from Oleh Hushchenkov <o.hushchenkov@gmail.com> ---
(In reply to Warner Losh from comment #54)

I just removed
  intsts != 0xffffffff &&
from
  while (intsts != 0xffffffff && (intsts & HDAC_INTSTS_GIS) != 0) {
to get
  while ((intsts & HDAC_INTSTS_GIS) != 0) {
and no more hangs on cold boot. Sound also works.

Reverting https://reviews.freebsd.org/D34117 should also fix the issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.