mbuf: Add mbufq_empty
Complement to the existing mbufq_full Reviewed by: bz Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D43337
This commit is contained in:
@@ -1607,6 +1607,12 @@ mbufq_last(const struct mbufq *mq)
|
||||
return (STAILQ_LAST(&mq->mq_head, mbuf, m_stailqpkt));
|
||||
}
|
||||
|
||||
static inline bool
|
||||
mbufq_empty(const struct mbufq *mq)
|
||||
{
|
||||
return (mq->mq_len == 0);
|
||||
}
|
||||
|
||||
static inline int
|
||||
mbufq_full(const struct mbufq *mq)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user