Page MenuHomeFreeBSD

D5516.id13956.diff
No OneTemporary

D5516.id13956.diff

Index: head/sys/kern/kern_condvar.c
===================================================================
--- head/sys/kern/kern_condvar.c
+++ head/sys/kern/kern_condvar.c
@@ -122,7 +122,7 @@
"Waiting on \"%s\"", cvp->cv_description);
class = LOCK_CLASS(lock);
- if (cold || panicstr) {
+ if (cold || SCHEDULER_STOPPED()) {
/*
* During autoconfiguration, just give interrupts
* a chance, then just return. Don't run any other
@@ -183,7 +183,7 @@
("cv_wait_unlock cannot be used with Giant"));
class = LOCK_CLASS(lock);
- if (cold || panicstr) {
+ if (cold || SCHEDULER_STOPPED()) {
/*
* During autoconfiguration, just give interrupts
* a chance, then just return. Don't run any other
@@ -240,7 +240,7 @@
"Waiting on \"%s\"", cvp->cv_description);
class = LOCK_CLASS(lock);
- if (cold || panicstr) {
+ if (cold || SCHEDULER_STOPPED()) {
/*
* After a panic, or during autoconfiguration, just give
* interrupts a chance, then just return; don't run any other
@@ -307,7 +307,7 @@
"Waiting on \"%s\"", cvp->cv_description);
class = LOCK_CLASS(lock);
- if (cold || panicstr) {
+ if (cold || SCHEDULER_STOPPED()) {
/*
* After a panic, or during autoconfiguration, just give
* interrupts a chance, then just return; don't run any other
@@ -376,7 +376,7 @@
"Waiting on \"%s\"", cvp->cv_description);
class = LOCK_CLASS(lock);
- if (cold || panicstr) {
+ if (cold || SCHEDULER_STOPPED()) {
/*
* After a panic, or during autoconfiguration, just give
* interrupts a chance, then just return; don't run any other

File Metadata

Mime Type
text/plain
Expires
Wed, Apr 29, 1:47 AM (2 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
32317958
Default Alt Text
D5516.id13956.diff (1 KB)

Event Timeline