Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dtty_outq.c60 #define TTYOUTQ_INSERT_TAIL(to, tob) do { \ argument
62 tob->tob_next = to->to_firstblock; \
63 to->to_firstblock = tob; \
65 tob->tob_next = to->to_lastblock->tob_next; \
66 to->to_lastblock->tob_next = tob; \
76 #define TTYOUTQ_RECYCLE(to, tob) do { \ argument
78 uma_zfree(ttyoutq_zone, tob); \
80 TTYOUTQ_INSERT_TAIL(to, tob); \
94 struct ttyoutq_block *tob; in ttyoutq_setsize() local
110 tob = uma_zalloc(ttyoutq_zone, M_WAITOK); in ttyoutq_setsize()
[all …]