HomeSort by: relevance | last modified time | path
    Searched defs:fcfs (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
bufq_fcfs.c 95 BUFQ_DEFINE(fcfs, 10, bufq_fcfs_init);
100 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_put
102 TAILQ_INSERT_TAIL(&fcfs->bq_head, bp, b_actq);
108 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_get
111 bp = TAILQ_FIRST(&fcfs->bq_head);
114 TAILQ_REMOVE(&fcfs->bq_head, bp, b_actq);
122 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_cancel
125 TAILQ_FOREACH(bp, &fcfs->bq_head, b_actq) {
127 TAILQ_REMOVE(&fcfs->bq_head, bp, b_actq);
145 struct bufq_fcfs *fcfs; local in function:bufq_fcfs_init
    [all...]
bufq_fcfs.c 95 BUFQ_DEFINE(fcfs, 10, bufq_fcfs_init);
100 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_put
102 TAILQ_INSERT_TAIL(&fcfs->bq_head, bp, b_actq);
108 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_get
111 bp = TAILQ_FIRST(&fcfs->bq_head);
114 TAILQ_REMOVE(&fcfs->bq_head, bp, b_actq);
122 struct bufq_fcfs *fcfs = bufq_private(bufq); local in function:bufq_fcfs_cancel
125 TAILQ_FOREACH(bp, &fcfs->bq_head, b_actq) {
127 TAILQ_REMOVE(&fcfs->bq_head, bp, b_actq);
145 struct bufq_fcfs *fcfs; local in function:bufq_fcfs_init
    [all...]

Completed in 52 milliseconds