Home
last modified time | relevance | path

Searched refs:sc_worker (Results 1 – 8 of 8) sorted by relevance

/freebsd-11-stable/sys/geom/mirror/
HDg_mirror.c1863 &sc->sc_worker); in g_mirror_try_destroy()
1866 wakeup(&sc->sc_worker); in g_mirror_try_destroy()
1867 sc->sc_worker = NULL; in g_mirror_try_destroy()
3093 error = kproc_create(g_mirror_worker, sc, &sc->sc_worker, 0, 0, in g_mirror_create()
3161 G_MIRROR_DEBUG(4, "%s: Sleeping %p.", __func__, &sc->sc_worker); in g_mirror_destroy()
3162 while (sc->sc_worker != NULL) in g_mirror_destroy()
3163 tsleep(&sc->sc_worker, PRIBIO, "m:destroy", hz / 5); in g_mirror_destroy()
3164 G_MIRROR_DEBUG(4, "%s: Woken up %p.", __func__, &sc->sc_worker); in g_mirror_destroy()
HDg_mirror.h200 struct proc *sc_worker; member
/freebsd-11-stable/sys/geom/raid3/
HDg_raid3.c1999 &sc->sc_worker); in g_raid3_try_destroy()
2002 wakeup(&sc->sc_worker); in g_raid3_try_destroy()
2003 sc->sc_worker = NULL; in g_raid3_try_destroy()
3195 error = kproc_create(g_raid3_worker, sc, &sc->sc_worker, 0, 0, in g_raid3_create()
3279 G_RAID3_DEBUG(4, "%s: Sleeping %p.", __func__, &sc->sc_worker); in g_raid3_destroy()
3280 while (sc->sc_worker != NULL) in g_raid3_destroy()
3281 tsleep(&sc->sc_worker, PRIBIO, "r3:destroy", hz / 5); in g_raid3_destroy()
3282 G_RAID3_DEBUG(4, "%s: Woken up %p.", __func__, &sc->sc_worker); in g_raid3_destroy()
HDg_raid3.h210 struct proc *sc_worker; member
/freebsd-11-stable/sys/geom/journal/
HDg_journal.c2105 sc->sc_worker = NULL; in g_journal_worker()
2106 wakeup(&sc->sc_worker); in g_journal_worker()
2241 sc->sc_worker = NULL; in g_journal_create()
2351 error = kproc_create(g_journal_worker, sc, &sc->sc_worker, 0, 0, in g_journal_create()
2414 while (sc->sc_worker != NULL) in g_journal_destroy()
2415 msleep(&sc->sc_worker, &sc->sc_mtx, PRIBIO, "gj:destroy", 0); in g_journal_destroy()
HDg_journal.h165 struct proc *sc_worker; member
/freebsd-11-stable/sys/geom/raid/
HDg_raid.h324 struct proc *sc_worker; /* Worker process. */ member
HDg_raid.c1901 error = kproc_create(g_raid_worker, sc, &sc->sc_worker, 0, 0, in g_raid_create_node()