Home
last modified time | relevance | path

Searched refs:TAILQ_EMPTY (Results 1 – 25 of 125) sorted by relevance

12345

/f-stack/freebsd/kern/
H A Dsubr_turnstile.c505 MPASS(TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE])); in turnstile_dtor()
506 MPASS(TAILQ_EMPTY(&ts->ts_pending)); in turnstile_dtor()
769 KASSERT(TAILQ_EMPTY(&ts->ts_pending), in turnstile_wait()
858 TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE]); in turnstile_signal()
957 MPASS(!TAILQ_EMPTY(&ts->ts_pending)); in turnstile_unpend()
967 TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE])) in turnstile_unpend()
1000 while (!TAILQ_EMPTY(&pending_threads)) { in turnstile_unpend()
1034 MPASS(TAILQ_EMPTY(&ts->ts_pending)); in turnstile_disown()
1036 !TAILQ_EMPTY(&ts->ts_blocked[TS_SHARED_QUEUE])); in turnstile_disown()
1091 return (TAILQ_EMPTY(&ts->ts_blocked[queue])); in turnstile_empty()
[all …]
H A Dsys_socket.c645 if (!TAILQ_EMPTY(&sb->sb_aiojobq)) in soaio_process_job()
718 while (!TAILQ_EMPTY(&sb->sb_aiojobq) && soaio_ready(so, sb)) { in soaio_process_sb()
732 if (!TAILQ_EMPTY(&sb->sb_aiojobq)) in soaio_process_sb()
793 if (TAILQ_EMPTY(&sb->sb_aiojobq)) in soo_aio_cancel()
H A Dsubr_autoconf.c161 while (!TAILQ_EMPTY(&intr_config_hook_list)) { in boot_run_interrupt_driven_config_hooks()
/f-stack/freebsd/netinet/
H A Dsctp_ss_functions.c86 while (!TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_clear()
126 if (!TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_default_add()
141 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_default_is_empty()
160 if (TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_default_remove()
312 if (!TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_rr_add()
315 if (TAILQ_EMPTY(&asoc->ss_data.out.wheel)) { in sctp_ss_rr_add()
452 if (!TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_prio_add()
487 if (TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_prio_remove()
642 if (!TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_fb_add()
667 if (TAILQ_EMPTY(&strq->outqueue) && in sctp_ss_fb_remove()
[all …]
H A Dsctp_timer.c458 TAILQ_EMPTY(&asoc->strmout[chk->rec.data.sid].outqueue)) { in sctp_recover_sent_list()
704 if (TAILQ_EMPTY(&stcb->asoc.send_queue)) { in sctp_mark_all_for_resend()
1188 if (TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) { in sctp_asconf_timer()
1378 if (!TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { in sctp_audit_stream_queues_for_size()
1393 if ((TAILQ_EMPTY(&stcb->asoc.send_queue)) && in sctp_audit_stream_queues_for_size()
1394 (TAILQ_EMPTY(&stcb->asoc.sent_queue))) { in sctp_audit_stream_queues_for_size()
1443 (TAILQ_EMPTY(&stcb->asoc.send_queue)) && in sctp_heartbeat_timer()
1444 (TAILQ_EMPTY(&stcb->asoc.sent_queue))) { in sctp_heartbeat_timer()
1565 if (TAILQ_EMPTY(&asoc->send_queue) && in sctp_autoclose_timer()
1566 TAILQ_EMPTY(&asoc->sent_queue)) { in sctp_autoclose_timer()
H A Dsctp_indata.c343 if (!TAILQ_EMPTY(q)) { in sctp_place_control_in_stream()
362 if (TAILQ_EMPTY(q)) { in sctp_place_control_in_stream()
812 if (!TAILQ_EMPTY(&control->reasm)) { in sctp_handle_old_unordered_data()
2116 TAILQ_EMPTY(&asoc->resetHead) && in sctp_process_a_data_chunk()
2319 if (TAILQ_EMPTY(&asoc->resetHead)) { in sctp_process_a_data_chunk()
4199 if (TAILQ_EMPTY(&asoc->sent_queue)) { in sctp_express_handle_sack()
4292 if (TAILQ_EMPTY(&asoc->send_queue) && TAILQ_EMPTY(&asoc->sent_queue)) { in sctp_express_handle_sack()
4539 if (TAILQ_EMPTY(&asoc->sent_queue) && in sctp_handle_sack()
4540 TAILQ_EMPTY(&asoc->send_queue) && in sctp_handle_sack()
4960 if (TAILQ_EMPTY(&asoc->send_queue) && TAILQ_EMPTY(&asoc->sent_queue)) { in sctp_handle_sack()
[all …]
/f-stack/freebsd/netgraph/atm/sscop/
H A Dng_sscop_cust.h141 #define MSGQ_EMPTY(Q) TAILQ_EMPTY(Q)
183 #define SIGQ_EMPTY(Q) TAILQ_EMPTY(Q)
202 while (!TAILQ_EMPTY(F)) { \
213 while (!TAILQ_EMPTY(F)) { \
/f-stack/freebsd/security/audit/
H A Daudit_trigger.c90 while (!TAILQ_EMPTY(&trigger_list)) { in audit_close()
107 while (TAILQ_EMPTY(&trigger_list)) { in audit_read()
/f-stack/dpdk/lib/librte_eal/freebsd/
H A Deal_interrupts.c116 !TAILQ_EMPTY(&src->callbacks)) { in rte_intr_callback_register()
145 if (TAILQ_EMPTY(&src->callbacks)) in rte_intr_callback_register()
195 if (TAILQ_EMPTY(&(src->callbacks))) { in rte_intr_callback_register()
335 if (TAILQ_EMPTY(&src->callbacks)) { in rte_intr_callback_unregister()
564 if (TAILQ_EMPTY(&src->callbacks)) { in eal_intr_process_interrupts()
/f-stack/tools/compat/include/sys/
H A Dselinfo.h51 #define SEL_WAITING(si) (!TAILQ_EMPTY(&(si)->si_tdlist))
/f-stack/freebsd/sys/
H A Dselinfo.h53 #define SEL_WAITING(si) (!TAILQ_EMPTY(&(si)->si_tdlist))
H A Dqueue.h659 if (!TAILQ_EMPTY(head) && \
705 if (!TAILQ_EMPTY(head2)) { \
715 #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) macro
824 (TAILQ_EMPTY(head) ? NULL : __containerof((head)->tqh_last, QUEUE_TYPEOF(type), field.tqe_next))
/f-stack/app/micro_thread/
H A Dkqueue_proxy.h54 #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) macro
68 if (!TAILQ_EMPTY(head2)) { \
H A Dmt_mbuf_pool.h150 if (!TAILQ_EMPTY(&_msg_queue)) { in GetMsgBuf()
/f-stack/freebsd/net/altq/
H A Daltq_var.h155 #ifndef TAILQ_EMPTY
156 #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) macro
/f-stack/freebsd/contrib/ngatm/netnatm/sig/
H A Dsig_uni.c545 "work queue: %sempty\n", TAILQ_EMPTY(&uni->workq)? "" : "not "); in uni_status()
548 TAILQ_EMPTY(&uni->delq)? "" : "not "); in uni_status()
563 if (TAILQ_EMPTY(&uni->delq)) in uni_undel()
664 idle = TAILQ_EMPTY(&uni->calls) && in uni_set_config()
665 TAILQ_EMPTY(&uni->workq) && in uni_set_config()
666 TAILQ_EMPTY(&uni->delq); in uni_set_config()
/f-stack/dpdk/drivers/bus/fslmc/portal/
H A Ddpaa2_hw_dpbp.c114 if (TAILQ_EMPTY(&dpbp_dev_list)) in dpaa2_dpbp_supported()
/f-stack/dpdk/drivers/event/dlb/pf/base/
H A Ddlb_osdep_list.h83 return TAILQ_EMPTY(head); in dlb_list_empty()
/f-stack/dpdk/drivers/event/dlb2/pf/base/
H A Ddlb2_osdep_list.h83 return TAILQ_EMPTY(head); in dlb2_list_empty()
/f-stack/dpdk/lib/librte_vhost/
H A Diotlb.c74 if (!TAILQ_EMPTY(&vq->iotlb_pending_list)) in vhost_user_iotlb_pending_insert()
167 if (!TAILQ_EMPTY(&vq->iotlb_list)) in vhost_user_iotlb_cache_insert()
/f-stack/freebsd/netpfil/pf/
H A Dpf_ruleset.c268 if (!TAILQ_EMPTY(ruleset->rules[i].active.ptr) || in pf_remove_if_empty_kruleset()
269 !TAILQ_EMPTY(ruleset->rules[i].inactive.ptr) || in pf_remove_if_empty_kruleset()
/f-stack/freebsd/mips/include/
H A Dpmap.h166 #define pmap_page_is_mapped(m) (!TAILQ_EMPTY(&(m)->md.pv_list))
/f-stack/dpdk/lib/librte_eal/windows/include/sys/
H A Dqueue.h630 if (!TAILQ_EMPTY(head) && \
676 if (!TAILQ_EMPTY(head2)) { \
686 #define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) macro
795 (TAILQ_EMPTY(head) ? NULL : __containerof((head)->tqh_last, QUEUE_TYPEOF(type), field.tqe_next))
/f-stack/freebsd/netgraph/
H A Dng_ppp.c1679 if (TAILQ_EMPTY(&priv->frags)) in ng_ppp_check_packet()
1713 KASSERT(!TAILQ_EMPTY(&priv->frags) && qent->first, in ng_ppp_get_packet()
1717 KASSERT(!TAILQ_EMPTY(&priv->frags), in ng_ppp_get_packet()
1755 if (TAILQ_EMPTY(&priv->frags)) in ng_ppp_frag_trim()
1776 KASSERT(!TAILQ_EMPTY(&priv->frags), in ng_ppp_frag_trim()
1798 if (TAILQ_EMPTY(&priv->fragsfree)) { in ng_ppp_frag_drop()
1802 KASSERT(!TAILQ_EMPTY(&priv->frags), in ng_ppp_frag_drop()
1901 if (TAILQ_EMPTY(&priv->frags)) in ng_ppp_frag_checkstale()
1935 KASSERT(!TAILQ_EMPTY(&priv->frags), in ng_ppp_frag_checkstale()
/f-stack/dpdk/drivers/bus/fslmc/
H A Dfslmc_bus.c387 if (TAILQ_EMPTY(&rte_fslmc_bus.device_list)) in rte_fslmc_probe()
575 if (TAILQ_EMPTY(&rte_fslmc_bus.device_list)) in rte_dpaa2_get_iommu_class()

12345