Searched refs:daemonq (Results 1 – 4 of 4) sorted by relevance
53 struct daemonq *daemonq; /* daemon's work queue */ variable54 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 …]
268 struct daemonq { struct269 struct daemonq *next; /* pointer to next element in queue */ argument
246 extern struct daemonq *daemonq; /* daemon's work queue */247 extern struct daemonq *dqend; /* and the end of the queue */
102 daemonq = NULL; /* initialize daemon's work queue */ in vinumattach()