| /linux/include/trace/events/ |
| H A D | scmi.h | 39 bool poll, int inflight), 40 TP_ARGS(transfer_id, msg_id, protocol_id, seq, poll, inflight), 48 __field(int, inflight) 57 __entry->inflight = inflight; 62 __entry->transfer_id, __entry->poll, __entry->inflight) 95 int status, int inflight), 96 TP_ARGS(transfer_id, msg_id, protocol_id, seq, status, inflight), 104 __field(int, inflight) 113 __entry->inflight = inflight; 118 __entry->transfer_id, __entry->status, __entry->inflight)
|
| H A D | page_pool.h | 17 s32 inflight, u32 hold, u32 release), 19 TP_ARGS(pool, inflight, hold, release), 23 __field(s32, inflight) 31 __entry->inflight = inflight; 38 __entry->pool, __entry->inflight, __entry->hold,
|
| H A D | wbt.h | 132 int step, unsigned int inflight), 134 TP_ARGS(bdi, status, step, inflight), 140 __field(unsigned int, inflight) 148 __entry->inflight = inflight; 152 __entry->status, __entry->step, __entry->inflight)
|
| /linux/block/ |
| H A D | genhd.c | 129 unsigned int inflight[2], bool mq_driver) in bdev_count_inflight_rw() 136 blk_mq_in_driver_rw(part, inflight); in bdev_count_inflight_rw() 150 inflight[READ] = read > 0 ? read : 0; in bdev_count_inflight_rw() 151 inflight[WRITE] = write > 0 ? write : 0; in bdev_count_inflight_rw() 165 unsigned int inflight[2] = {0}; in bdev_count_inflight() local 167 bdev_count_inflight_rw(part, inflight, false); in bdev_count_inflight() 169 return inflight[READ] + inflight[WRITE]; in bdev_count_inflight() 1067 unsigned int inflight; in part_stat_show() local 1069 inflight = bdev_count_inflight(bdev); in part_stat_show() 1070 if (inflight) { in part_stat_show() [all …]
|
| H A D | blk-iolatency.c | 276 atomic_dec(&rqw->inflight); in iolat_cleanup_cb() 305 atomic_inc(&rqw->inflight); in __blkcg_iolatency_throttle() 591 int inflight = 0; in blkcg_iolatency_done_bio() local 613 inflight = atomic_dec_return(&rqw->inflight); in blkcg_iolatency_done_bio() 614 WARN_ON_ONCE(inflight < 0); in blkcg_iolatency_done_bio()
|
| H A D | blk-rq-qos.h | 24 atomic_t inflight; member 84 atomic_set(&rq_wait->inflight, 0); in rq_wait_init()
|
| /linux/drivers/crypto/chelsio/ |
| H A D | chcr_core.c | 56 if (atomic_read(&dev->inflight)) { in detach_work_fn() 60 atomic_read(&dev->inflight)); in detach_work_fn() 65 atomic_read(&dev->inflight)); in detach_work_fn() 103 atomic_set(&dev->inflight, 0); in chcr_dev_add() 122 atomic_set(&dev->inflight, 0); in chcr_dev_init() 232 if (atomic_read(&dev->inflight) != 0) { in chcr_detach_device()
|
| H A D | chcr_core.h | 99 atomic_t inflight; member
|
| /linux/net/core/ |
| H A D | page_pool.c | 693 s32 inflight; in page_pool_inflight() local 695 inflight = _distance(hold_cnt, release_cnt); in page_pool_inflight() 698 trace_page_pool_release(pool, inflight, hold_cnt, release_cnt); in page_pool_inflight() 699 WARN(inflight < 0, "Negative(%d) inflight packet-pages", in page_pool_inflight() 700 inflight); in page_pool_inflight() 702 inflight = max(0, inflight); in page_pool_inflight() 705 return inflight; in page_pool_inflight() 1209 int inflight; in page_pool_release() local 1212 inflight = page_pool_inflight(pool, true); in page_pool_release() 1216 if (!inflight) in page_pool_release() [all …]
|
| H A D | page_pool_user.c | 219 size_t inflight, refsz; in page_pool_nl_fill() local 240 inflight = page_pool_inflight(pool, false); in page_pool_nl_fill() 242 if (nla_put_uint(rsp, NETDEV_A_PAGE_POOL_INFLIGHT, inflight) || in page_pool_nl_fill() 244 inflight * refsz)) in page_pool_nl_fill()
|
| /linux/tools/testing/selftests/net/af_unix/ |
| H A D | scm_rights.c | 270 int inflight, int receiver) in __send_fd() argument 275 self->fd[inflight * 2], in __send_fd() 276 self->fd[inflight * 2], in __send_fd() 314 #define send_fd(inflight, receiver) \ argument 315 __send_fd(_metadata, self, variant, inflight, receiver)
|
| /linux/net/unix/ |
| H A D | garbage.c | 214 struct unix_sock *inflight = unix_get_socket(fpl->fp[j++]); in unix_add_edges() local 217 if (!inflight) in unix_add_edges() 221 edge->predecessor = inflight; in unix_add_edges() 233 fpl->inflight = true; in unix_add_edges() 263 fpl->inflight = false; in unix_del_edges() 314 if (fpl->inflight) in unix_destroy_fpl()
|
| /linux/drivers/infiniband/ulp/rtrs/ |
| H A D | rtrs-clt-stats.c | 102 atomic_read(&stats->inflight), sum.failover_cnt); in rtrs_clt_stats_rdma_to_str() 158 atomic_set(&s->inflight, 0); in rtrs_clt_reset_all_stats() 182 atomic_inc(&stats->inflight); in rtrs_clt_update_all_stats()
|
| H A D | README | 100 corresponding path is disconnected, all the inflight IO are failed over to a 131 inflight IO and for the error code. 149 inflight IO and for the error code. The new rkey is sent back using 171 outstanding inflight IO and the error code. 192 outstanding inflight IO and the error code. The new rkey is sent back using
|
| /linux/io_uring/ |
| H A D | tctx.c | 66 percpu_counter_destroy(&tctx->inflight); in __io_uring_free() 87 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL); in io_uring_alloc_task_context() 96 percpu_counter_destroy(&tctx->inflight); in io_uring_alloc_task_context() 182 percpu_counter_destroy(&tctx->inflight); in __io_uring_add_tctx_node()
|
| /linux/drivers/gpu/drm/i915/gt/ |
| H A D | intel_timeline.c | 424 unsigned long count, ready, inflight; in intel_gt_show_timelines() local 441 inflight = 0; in intel_gt_show_timelines() 450 inflight++; in intel_gt_show_timelines() 455 count, ready, inflight); in intel_gt_show_timelines()
|
| /linux/drivers/crypto/cavium/cpt/ |
| H A D | cpt_hw_types.h | 443 u64 inflight:8; member 445 u64 inflight:8;
|
| /linux/net/sctp/ |
| H A D | output.c | 675 size_t datasize, rwnd, inflight, flight_size; in sctp_packet_can_append_data() local 694 inflight = q->outstanding_bytes; in sctp_packet_can_append_data() 699 if (datasize > rwnd && inflight > 0) in sctp_packet_can_append_data() 727 if ((sctp_sk(asoc->base.sk)->nodelay || inflight == 0) && in sctp_packet_can_append_data()
|
| /linux/drivers/crypto/marvell/octeontx/ |
| H A D | otx_cpt_hw_types.h | 581 u64 inflight:8; member 583 u64 inflight:8;
|
| /linux/include/net/ |
| H A D | scm.h | 35 bool inflight; member
|
| /linux/include/crypto/ |
| H A D | if_alg.h | 163 unsigned int inflight; member
|
| /linux/drivers/scsi/ |
| H A D | xen-scsifront.c | 83 bool inflight; member 223 shadow->inflight = true; in scsifront_do_request() 370 !info->shadow[ring_rsp->rqid]->inflight) { in scsifront_do_response() 375 shadow->inflight = false; in scsifront_do_response()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-class-rtrs-client | 34 min-inflight (1): 142 Description: Contains statistics regarding rdma operations and inflight operations.
|
| H A D | sysfs-class-rtrs-server | 51 Description: Contains statistics regarding rdma operations and inflight operations.
|
| /linux/drivers/crypto/marvell/octeontx2/ |
| H A D | otx2_cpt_hw_types.h | 409 u64 inflight:9; member
|