Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Apr 2018 16:05:42 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 227404] UP FreeBSD VM always hangs on reboot since 20180329-r331740
Message-ID:  <bug-227404-227-4lRd2r76BJ@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-227404-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-227404-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227404

--- Comment #8 from commit-hook@freebsd.org ---
A commit references this bug:

Author: tijl
Date: Sun Apr 22 16:05:30 UTC 2018
New revision: 332871
URL: https://svnweb.freebsd.org/changeset/base/332871

Log:
  Make bufdaemon and bufspacedaemon use kthread_suspend_check instead of
  kproc_suspend_check.  In r329612 bufspacedaemon was turned into a thread
  of the bufdaemon process causing both to call kproc_suspend_check with the
  same proc argument and that function contains the following while loop:

  while (SIGISMEMBER(p->p_siglist, SIGSTOP)) {
        wakeup(&p->p_siglist);
        msleep(&p->p_siglist, &p->p_mtx, PPAUSE, "kpsusp", 0);
  }

  So one thread wakes up the other and the other wakes up the first again,
  locking up UP machines on shutdown.

  Also register the shutdown handlers with SHUTDOWN_PRI_LAST + 100 so they
  run after the syncer has shutdown, because the syncer can cause a
  situation where bufdaemon help is needed to proceed.

  PR:           227404
  Reviewed by:  kib
  Tested by:    cy, rmacklem

Changes:
  head/sys/kern/vfs_bio.c

--=20
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-227404-227-4lRd2r76BJ>