MCPcopy Create free account
hub / github.com/F-Stack/f-stack / ccp_queue_release

Function ccp_queue_release

freebsd/crypto/ccp/ccp.c:685–695  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

683}
684
685void
686ccp_queue_release(struct ccp_queue *qp)
687{
688
689 mtx_assert(&qp->cq_lock, MA_OWNED);
690 if (qp->cq_tail != qp->cq_acq_tail) {
691 wmb();
692 ccp_queue_write_tail(qp);
693 }
694 mtx_unlock(&qp->cq_lock);
695}
696
697void
698ccp_queue_abort(struct ccp_queue *qp)

Callers 1

ccp_processFunction · 0.85

Calls 3

mtx_assertFunction · 0.85
ccp_queue_write_tailFunction · 0.85
mtx_unlockFunction · 0.50

Tested by

no test coverage detected