Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 May 2015 19:09:04 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283320 - head/sys/kern
Message-ID:  <201505231909.t4NJ94ct032002@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sat May 23 19:09:04 2015
New Revision: 283320
URL: https://svnweb.freebsd.org/changeset/base/283320

Log:
  If thread requested to not stop on non-boundary, then not only
  stopping signals should obey, but also all forms of single-threading.
  Otherwise, thread might sleep interruptible while owning some
  resources, and single-threading thread could try to access them.
  An example is owning vnode lock while dumping core.
  
  Submitted by:	Conrad Meyer
  Review:	https://reviews.freebsd.org/D2612
  Tested by:	pho
  MFC after:	1 week

Modified:
  head/sys/kern/kern_thread.c

Modified: head/sys/kern/kern_thread.c
==============================================================================
--- head/sys/kern/kern_thread.c	Sat May 23 17:48:09 2015	(r283319)
+++ head/sys/kern/kern_thread.c	Sat May 23 19:09:04 2015	(r283320)
@@ -868,12 +868,9 @@ thread_suspend_check(int return_instead)
 			return (ERESTART);
 
 		/*
-		 * Ignore suspend requests for stop signals if they
-		 * are deferred.
+		 * Ignore suspend requests if they are deferred.
 		 */
-		if ((P_SHOULDSTOP(p) == P_STOPPED_SIG ||
-		    (p->p_flag & P_TOTAL_STOP) != 0) &&
-		    (td->td_flags & TDF_SBDRY) != 0) {
+		if ((td->td_flags & TDF_SBDRY) != 0) {
 			KASSERT(return_instead,
 			    ("TDF_SBDRY set for unsafe thread_suspend_check"));
 			return (0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505231909.t4NJ94ct032002>