mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Workaround bad locking design:
do not try to lock/unlock destroyed/non-existsing mutex. PR: kern/103569 Reviewed by: guido Approved by: glebius (mentor) Silence from: darrenr MFC: 2 week
This commit is contained in:
parent
32d5d9ffc9
commit
29453026ea
1 changed files with 9 additions and 3 deletions
|
|
@ -481,7 +481,8 @@ int mode;
|
|||
}
|
||||
|
||||
SPL_NET(s);
|
||||
READ_ENTER(&ipf_global);
|
||||
if (fr_running > 0)
|
||||
READ_ENTER(&ipf_global);
|
||||
|
||||
error = fr_ioctlswitch(unit, data, cmd, mode);
|
||||
if (error != -1) {
|
||||
|
|
@ -514,7 +515,10 @@ int mode;
|
|||
else
|
||||
(void) ipldetach();
|
||||
} else {
|
||||
error = ipldetach();
|
||||
if (fr_running <= 0)
|
||||
error = 0;
|
||||
else
|
||||
error = ipldetach();
|
||||
if (error == 0)
|
||||
fr_running = -1;
|
||||
}
|
||||
|
|
@ -627,7 +631,9 @@ int mode;
|
|||
break;
|
||||
}
|
||||
|
||||
RWLOCK_EXIT(&ipf_global);
|
||||
if (fr_running > 0)
|
||||
if (mtx_owned(&(&ipf_global)->ipf_lk))
|
||||
RWLOCK_EXIT(&ipf_global);
|
||||
SPL_X(s);
|
||||
|
||||
return error;
|
||||
|
|
|
|||
Loading…
Reference in a new issue