Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Dec 2014 09:48:24 +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: r275820 - head/sys/kern
Message-ID:  <201412160948.sBG9mOoj075517@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue Dec 16 09:48:23 2014
New Revision: 275820
URL: https://svnweb.freebsd.org/changeset/base/275820

Log:
  Add missed break.
  
  CID:	1258586
  Sponsored by:	The FreeBSD Foundation
  MFC after:	4 days

Modified:
  head/sys/kern/kern_thread.c

Modified: head/sys/kern/kern_thread.c
==============================================================================
--- head/sys/kern/kern_thread.c	Tue Dec 16 09:21:56 2014	(r275819)
+++ head/sys/kern/kern_thread.c	Tue Dec 16 09:48:23 2014	(r275820)
@@ -618,6 +618,7 @@ weed_inhib(int mode, struct thread *td2,
 			wakeup_swapper |= thread_unsuspend_one(td2, p);
 		if (TD_ON_SLEEPQ(td2) && (td2->td_flags & TDF_SINTR) != 0)
 			wakeup_swapper |= sleepq_abort(td2, ERESTART);
+		break;
 	case SINGLE_ALLPROC:
 		/*
 		 * ALLPROC suspend tries to avoid spurious EINTR for



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