Home
last modified time | relevance | path

Searched refs:daemonq (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/dev/raid/vinum/
HDvinumdaemon.c53 struct daemonq *daemonq; /* daemon's work queue */ variable
54 struct daemonq *dqend; /* and the end of the que…
63 struct daemonq intq[INTQSIZE]; /* queue elements for int…
64 struct daemonq *intqp; /* and pointer in it */
69 struct daemonq *request; in vinum_daemon()
88 while (daemonq != NULL) { /* we have work to do, */ in vinum_daemon()
90 request = daemonq; /* get the request */ in vinum_daemon()
91 daemonq = daemonq->next; /* and detach it */ in vinum_daemon()
92 if (daemonq == NULL) /* got to the end, */ in vinum_daemon()
123 if ((daemonq == NULL) /* no more requests */ in vinum_daemon()
[all …]
HDrequest.h268 struct daemonq { struct
269 struct daemonq *next; /* pointer to next element in queue */ argument
HDvinumext.h246 extern struct daemonq *daemonq; /* daemon's work queue */
247 extern struct daemonq *dqend; /* and the end of the queue */
HDvinum.c102 daemonq = NULL; /* initialize daemon's work queue */ in vinumattach()