Home
last modified time | relevance | path

Searched refs:backlog (Results 26 – 50 of 197) sorted by relevance

12345678

/openbmc/linux/include/crypto/
H A Dalgapi.h118 struct list_head *backlog; member
232 return queue->backlog == &queue->list ? NULL : in crypto_get_backlog()
233 container_of(queue->backlog, struct crypto_async_request, list); in crypto_get_backlog()
/openbmc/linux/include/net/
H A Dinet_common.h42 int inet_listen(struct socket *sock, int backlog);
43 int __inet_listen_sk(struct sock *sk, int backlog);
/openbmc/linux/drivers/crypto/marvell/cesa/
H A Dcesa.c39 struct crypto_async_request **backlog) in mv_cesa_dequeue_req_locked() argument
43 *backlog = crypto_get_backlog(&engine->queue); in mv_cesa_dequeue_req_locked()
54 struct crypto_async_request *req = NULL, *backlog = NULL; in mv_cesa_rearm_engine() local
60 req = mv_cesa_dequeue_req_locked(engine, &backlog); in mv_cesa_rearm_engine()
68 if (backlog) in mv_cesa_rearm_engine()
69 crypto_request_complete(backlog, -EINPROGRESS); in mv_cesa_rearm_engine()
H A Dtdma.c136 struct crypto_async_request *backlog = NULL; in mv_cesa_tdma_process() local
149 &backlog); in mv_cesa_tdma_process()
170 if (backlog) in mv_cesa_tdma_process()
171 crypto_request_complete(backlog, -EINPROGRESS); in mv_cesa_tdma_process()
/openbmc/linux/drivers/crypto/
H A Dmxs-dcp.c395 struct crypto_async_request *backlog; in dcp_chan_thread_aes() local
404 backlog = crypto_get_backlog(&sdcp->queue[chan]); in dcp_chan_thread_aes()
408 if (!backlog && !arq) { in dcp_chan_thread_aes()
415 if (backlog) in dcp_chan_thread_aes()
416 crypto_request_complete(backlog, -EINPROGRESS); in dcp_chan_thread_aes()
692 struct crypto_async_request *backlog; in dcp_chan_thread_sha() local
700 backlog = crypto_get_backlog(&sdcp->queue[chan]); in dcp_chan_thread_sha()
704 if (!backlog && !arq) { in dcp_chan_thread_sha()
711 if (backlog) in dcp_chan_thread_sha()
712 crypto_request_complete(backlog, -EINPROGRESS); in dcp_chan_thread_sha()
/openbmc/linux/net/rxrpc/
H A Daf_rxrpc.c210 static int rxrpc_listen(struct socket *sock, int backlog) in rxrpc_listen() argument
217 _enter("%p,%d", rx, backlog); in rxrpc_listen()
230 if (backlog == INT_MAX) in rxrpc_listen()
231 backlog = max; in rxrpc_listen()
232 else if (backlog < 0 || backlog > max) in rxrpc_listen()
235 sk->sk_max_ack_backlog = backlog; in rxrpc_listen()
243 if (backlog == 0) { in rxrpc_listen()
/openbmc/linux/drivers/crypto/intel/qat/qat_common/
H A Dqat_comp_algs.c67 alg_req->backlog = &inst->backlog; in qat_alg_send_dc_message()
257 struct qat_instance_backlog *backlog = qat_req->alg_req.backlog; in qat_comp_alg_callback() local
261 qat_alg_send_backlog(backlog); in qat_comp_alg_callback()
H A Dqat_compression.h21 struct qat_instance_backlog backlog; member
H A Dqat_crypto.h24 struct qat_instance_backlog backlog; member
/openbmc/linux/net/sched/
H A Dsch_fifo.c22 if (likely(sch->qstats.backlog + qdisc_pkt_len(skb) <= sch->limit)) in bfifo_enqueue()
45 prev_backlog = sch->qstats.backlog; in pfifo_tail_enqueue()
51 qdisc_tree_reduce_backlog(sch, 0, prev_backlog - sch->qstats.backlog); in pfifo_tail_enqueue()
H A Dsch_fq_codel.c179 sch->qstats.backlog -= len; in fq_codel_drop()
220 prev_backlog = sch->qstats.backlog; in fq_codel_enqueue()
233 prev_backlog -= sch->qstats.backlog; in fq_codel_enqueue()
268 sch->qstats.backlog -= qdisc_pkt_len(skb); in dequeue_func()
303 skb = codel_dequeue(sch, &sch->qstats.backlog, &q->cparams, in fq_codel_dequeue()
666 qs.backlog = q->backlogs[idx]; in fq_codel_dump_class_stats()
/openbmc/linux/net/tipc/
H A Dlink.c193 } backlog[5]; member
943 avail[imp] = l->backlog[imp].limit - l->backlog[imp].len; in link_prepare_wakeup()
1001 l->backlog[imp].len = 0; in tipc_link_reset()
1002 l->backlog[imp].target_bskb = NULL; in tipc_link_reset()
1068 if (unlikely(l->backlog[imp].len >= l->backlog[imp].limit)) { in tipc_link_xmit()
1107 l->backlog[imp].target_bskb = skb; in tipc_link_xmit()
1108 l->backlog[imp].len++; in tipc_link_xmit()
1119 l->backlog[imp].target_bskb = NULL; in tipc_link_xmit()
1192 l->backlog[imp].len--; in tipc_link_advance_backlog()
1194 l->backlog[imp].target_bskb = NULL; in tipc_link_advance_backlog()
[all …]
/openbmc/linux/crypto/
H A Dalgapi.c945 queue->backlog = &queue->list; in crypto_init_queue()
962 if (queue->backlog == &queue->list) in crypto_enqueue_request()
963 queue->backlog = &request->list; in crypto_enqueue_request()
978 queue->backlog = queue->backlog->prev; in crypto_enqueue_request_head()
994 if (queue->backlog != &queue->list) in crypto_dequeue_request()
995 queue->backlog = queue->backlog->next; in crypto_dequeue_request()
H A Dcrypto_engine.c76 struct crypto_async_request *async_req, *backlog; in crypto_pump_requests() local
122 backlog = crypto_get_backlog(&engine->queue); in crypto_pump_requests()
195 if (backlog) in crypto_pump_requests()
196 crypto_request_complete(backlog, -EINPROGRESS); in crypto_pump_requests()
/openbmc/qemu/hw/char/
H A Dxen_console.c57 int backlog; member
174 if (!con->backlog) { in xencons_send()
175 con->backlog = 1; in xencons_send()
179 if (con->backlog && len == size) { in xencons_send()
180 con->backlog = 0; in xencons_send()
/openbmc/linux/drivers/infiniband/hw/qedr/
H A Dqedr_iw_cm.h37 int qedr_iw_create_listen(struct iw_cm_id *cm_id, int backlog);
/openbmc/linux/include/uapi/linux/
H A Dgen_stats.h61 __u32 backlog; member
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_skc_to_unix_sock.c13 int BPF_PROG(unix_listen, struct socket *sock, int backlog) in BPF_PROG() argument
/openbmc/linux/drivers/infiniband/hw/irdma/
H A Dcm.h255 int backlog; member
337 int backlog; member
397 int irdma_create_listen(struct iw_cm_id *cm_id, int backlog);
/openbmc/linux/drivers/xen/
H A Dpvcalls-front.h12 int pvcalls_front_listen(struct socket *sock, int backlog);
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/fpga/
H A Dconn.h75 struct list_head backlog; member
/openbmc/linux/drivers/crypto/cavium/nitrox/
H A Dnitrox_reqmgr.c232 INIT_LIST_HEAD(&sr->backlog); in backlog_list_add()
235 list_add_tail(&sr->backlog, &cmdq->backlog_head); in backlog_list_add()
329 list_for_each_entry_safe(sr, tmp, &cmdq->backlog_head, backlog) { in post_backlog_cmds()
336 list_del(&sr->backlog); in post_backlog_cmds()
/openbmc/linux/drivers/crypto/ccree/
H A Dcc_request_mgr.c34 struct list_head backlog; member
129 INIT_LIST_HEAD(&req_mgr_h->backlog); in cc_req_mgr_init()
337 list_add_tail(&bli->list, &mgr->backlog); in cc_enqueue_backlog()
356 bli = list_first_entry(&mgr->backlog, struct cc_bl_item, list); in cc_proc_backlog()
/openbmc/openbmc/poky/
H A D.gitignore31 bitbake/lib/toaster/contrib/tts/backlog.txt
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dtc_sample.sh476 local backlog pct occ
499 backlog=$(tc -j -p -s qdisc show dev $rp2 | jq '.[0]["backlog"]')
510 pct=$((100 * (occ - backlog) / backlog))
512 …check_err $? "Recorded a congestion of $backlog bytes, but sampled congestion is $occ bytes, which…

12345678