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

Function bdirtywakeup

freebsd/kern/vfs_bio.c:519–528  ·  view source on GitHub ↗

* bdirtywakeup: * * Wakeup any bwillwrite() waiters. */

Source from the content-addressed store, hash-verified

517 * Wakeup any bwillwrite() waiters.
518 */
519static void
520bdirtywakeup(void)
521{
522 mtx_lock(&bdirtylock);
523 if (bdirtywait) {
524 bdirtywait = 0;
525 wakeup(&bdirtywait);
526 }
527 mtx_unlock(&bdirtylock);
528}
529
530/*
531 * bd_clear:

Callers 2

bdirtysubFunction · 0.85
buf_daemonFunction · 0.85

Calls 3

mtx_lockFunction · 0.70
wakeupFunction · 0.70
mtx_unlockFunction · 0.70

Tested by

no test coverage detected