Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F107797876
D32972.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D32972.diff
View Options
diff --git a/sys/kern/kern_linker.c b/sys/kern/kern_linker.c
--- a/sys/kern/kern_linker.c
+++ b/sys/kern/kern_linker.c
@@ -106,7 +106,8 @@
linker_file_t linker_kernel_file;
static struct sx kld_sx; /* kernel linker lock */
-static bool kld_busy;
+static u_int kld_busy;
+static struct thread *kld_busy_owner;
/*
* Load counter used by clients to determine if a linker file has been
@@ -1065,7 +1066,9 @@
if ((flags & LINKER_UB_LOCKED) == 0)
sx_xlock(&kld_sx);
- while (kld_busy) {
+ while (kld_busy > 0) {
+ if (kld_busy_owner == curthread)
+ break;
error = sx_sleep(&kld_busy, &kld_sx,
(flags & LINKER_UB_PCATCH) != 0 ? PCATCH : 0,
"kldbusy", 0);
@@ -1075,7 +1078,8 @@
return (error);
}
}
- kld_busy = true;
+ kld_busy++;
+ kld_busy_owner = curthread;
if ((flags & LINKER_UB_UNLOCK) != 0)
sx_xunlock(&kld_sx);
return (0);
@@ -1090,9 +1094,15 @@
if ((flags & LINKER_UB_LOCKED) == 0)
sx_xlock(&kld_sx);
- MPASS(kld_busy);
- kld_busy = false;
- wakeup(&kld_busy);
+ MPASS(kld_busy > 0);
+ if (kld_busy_owner != curthread)
+ panic("linker_kldload_unbusy done by not owning thread %p",
+ kld_busy_owner);
+ kld_busy--;
+ if (kld_busy == 0) {
+ kld_busy_owner = NULL;
+ wakeup(&kld_busy);
+ }
sx_xunlock(&kld_sx);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Jan 19, 6:53 AM (20 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15930913
Default Alt Text
D32972.diff (1 KB)
Attached To
Mode
D32972: linker_kldload_busy(): allow recursion
Attached
Detach File
Event Timeline
Log In to Comment