aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2023-02-03 00:37:31 +0000
committerBrooks Davis <brooks@FreeBSD.org>2023-02-03 00:37:31 +0000
commit5c274b362256b1e0f680dacd9ef5a78bb21fedcd (patch)
tree0a723eb146318426da8ed1948cfd48ef38ffd383
parent7926a01ed7ae7cefd81ef4cc2142c35b84d81913 (diff)
downloadsrc-5c274b362256b1e0f680dacd9ef5a78bb21fedcd.tar.gz
src-5c274b362256b1e0f680dacd9ef5a78bb21fedcd.zip
whitespace: rewrap to match case directly above
It's easier to visually diff the two case blocks if there aren't gratutious whitespace differences. Sponsored by: DARPA
-rw-r--r--sys/kern/kern_thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c
index 03fb20bd81d9..ad54783dd4a9 100644
--- a/sys/kern/kern_thread.c
+++ b/sys/kern/kern_thread.c
@@ -1151,8 +1151,8 @@ restart:
* boundary, TDF_ALLPROCSUSP is used to avoid immediate
* un-suspend.
*/
- if (TD_IS_SUSPENDED(td2) && (td2->td_flags &
- TDF_ALLPROCSUSP) == 0) {
+ if (TD_IS_SUSPENDED(td2) &&
+ (td2->td_flags & TDF_ALLPROCSUSP) == 0) {
wakeup_swapper |= thread_unsuspend_one(td2, p, false);
thread_lock(td2);
goto restart;