Home
last modified time | relevance | path

Searched refs:twe_aen_tail (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/dev/raid/twe/
H A Dtwe.c1492 if (nextnext == sc->twe_aen_tail) in twe_enqueue_aen()
1496 if (next != sc->twe_aen_tail) { in twe_enqueue_aen()
1524 if (sc->twe_aen_tail == sc->twe_aen_head) { in twe_dequeue_aen()
1527 result = sc->twe_aen_queue[sc->twe_aen_tail]; in twe_dequeue_aen()
1528 sc->twe_aen_tail = ((sc->twe_aen_tail + 1) % TWE_Q_LENGTH); in twe_dequeue_aen()
1544 for (i = sc->twe_aen_tail; (i != sc->twe_aen_head) && missing; i = (i + 1) % TWE_Q_LENGTH) { in twe_find_aen()
1923 twe_printf(sc, "AEN queue head %d tail %d\n", sc->twe_aen_head, sc->twe_aen_tail); in twe_print_controller()
H A Dtwevar.h140 int twe_aen_head, twe_aen_tail; /* ringbuffer pointers for AEN queue */ member