mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
fix assert and conditionally allow mutexes to be held across epoch_wait_preempt
This commit is contained in:
parent
503b10da57
commit
74333b3dee
2 changed files with 13 additions and 13 deletions
|
|
@ -375,9 +375,11 @@ epoch_block_handler_preempt(struct ck_epoch *global __unused, ck_epoch_record_t
|
|||
struct turnstile *ts;
|
||||
struct lock_object *lock;
|
||||
int spincount, gen;
|
||||
int locksheld __unused;
|
||||
|
||||
record = __containerof(cr, struct epoch_record, er_record);
|
||||
td = curthread;
|
||||
locksheld = td->td_locks;
|
||||
spincount = 0;
|
||||
counter_u64_add(block_count, 1);
|
||||
if (record->er_cpuid != curcpu) {
|
||||
|
|
@ -470,8 +472,8 @@ epoch_block_handler_preempt(struct ck_epoch *global __unused, ck_epoch_record_t
|
|||
turnstile_unlock(ts, lock);
|
||||
thread_lock(td);
|
||||
critical_exit();
|
||||
KASSERT(td->td_locks == 0,
|
||||
("%d locks held", td->td_locks));
|
||||
KASSERT(td->td_locks == locksheld,
|
||||
("%d extra locks held", td->td_locks - locksheld));
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
|
@ -499,23 +501,20 @@ epoch_wait_preempt(epoch_t epoch)
|
|||
int old_cpu;
|
||||
int old_pinned;
|
||||
u_char old_prio;
|
||||
#ifdef INVARIANTS
|
||||
int locks;
|
||||
|
||||
locks = curthread->td_locks;
|
||||
#endif
|
||||
int locks __unused;
|
||||
|
||||
MPASS(cold || epoch != NULL);
|
||||
INIT_CHECK(epoch);
|
||||
|
||||
MPASS(epoch->e_flags & EPOCH_PREEMPT);
|
||||
WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
|
||||
"epoch_wait() can sleep");
|
||||
|
||||
td = curthread;
|
||||
#ifdef INVARIANTS
|
||||
locks = curthread->td_locks;
|
||||
MPASS(epoch->e_flags & EPOCH_PREEMPT);
|
||||
if ((epoch->e_flags & EPOCH_LOCKED) == 0)
|
||||
WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, NULL,
|
||||
"epoch_wait() can be long running");
|
||||
KASSERT(td->td_epochnest == 0, ("epoch_wait() in the middle of an epoch section"));
|
||||
#endif
|
||||
thread_lock(td);
|
||||
|
||||
DROP_GIANT();
|
||||
|
||||
old_cpu = PCPU_GET(cpuid);
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@ struct epoch;
|
|||
typedef struct epoch *epoch_t;
|
||||
|
||||
#define EPOCH_PREEMPT 0x1
|
||||
#define EPOCH_LOCKED 0x2
|
||||
|
||||
extern epoch_t global_epoch;
|
||||
extern epoch_t global_epoch_preempt;
|
||||
|
|
|
|||
Loading…
Reference in a new issue