Home
last modified time | relevance | path

Searched refs:prod (Results 1 – 25 of 158) sorted by relevance

1234567

/kernel/linux/linux-5.10/virt/lib/
Dirqbypass.c30 static int __connect(struct irq_bypass_producer *prod, in __connect() argument
35 if (prod->stop) in __connect()
36 prod->stop(prod); in __connect()
40 if (prod->add_consumer) in __connect()
41 ret = prod->add_consumer(prod, cons); in __connect()
44 ret = cons->add_producer(cons, prod); in __connect()
45 if (ret && prod->del_consumer) in __connect()
46 prod->del_consumer(prod, cons); in __connect()
51 if (prod->start) in __connect()
52 prod->start(prod); in __connect()
[all …]
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
Dlgs8gxx.c47 if (priv->config->prod != LGS8GXX_PROD_LGS8G75 && reg >= 0xC0) in lgs8gxx_write_reg()
75 if (priv->config->prod != LGS8GXX_PROD_LGS8G75 && reg >= 0xC0) in lgs8gxx_read_reg()
133 (config->prod == LGS8GXX_PROD_LGS8G52)) { in lgs8gxx_set_ad_mode()
163 if (priv->config->prod == LGS8GXX_PROD_LGS8G75) { in lgs8gxx_set_if_freq()
185 if (priv->config->prod == LGS8GXX_PROD_LGS8G75) in lgs8gxx_get_afc_phase()
207 u8 prod = priv->config->prod; in lgs8gxx_set_mode_auto() local
209 if (prod == LGS8GXX_PROD_LGS8913) in lgs8gxx_set_mode_auto()
212 if (prod == LGS8GXX_PROD_LGS8G75) { in lgs8gxx_set_mode_auto()
218 } else if (prod == LGS8GXX_PROD_LGS8913 || in lgs8gxx_set_mode_auto()
219 prod == LGS8GXX_PROD_LGS8GL5 || in lgs8gxx_set_mode_auto()
[all …]
/kernel/linux/linux-5.10/drivers/xen/xenbus/
Dxenbus_comms.c66 static int check_indexes(XENSTORE_RING_IDX cons, XENSTORE_RING_IDX prod) in check_indexes() argument
68 return ((prod - cons) <= XENSTORE_RING_SIZE); in check_indexes()
72 XENSTORE_RING_IDX prod, in get_output_chunk() argument
75 *len = XENSTORE_RING_SIZE - MASK_XENSTORE_IDX(prod); in get_output_chunk()
76 if ((XENSTORE_RING_SIZE - (prod - cons)) < *len) in get_output_chunk()
77 *len = XENSTORE_RING_SIZE - (prod - cons); in get_output_chunk()
78 return buf + MASK_XENSTORE_IDX(prod); in get_output_chunk()
82 XENSTORE_RING_IDX prod, in get_input_chunk() argument
86 if ((prod - cons) < *len) in get_input_chunk()
87 *len = prod - cons; in get_input_chunk()
[all …]
/kernel/linux/linux-5.10/drivers/zorro/
Dnames.c20 __u16 prod; member
40 #define PRODUCT( manuf, prod, name ) static char __prodstr_##manuf##prod[] __initdata = name; argument
46 #define PRODUCT( manuf, prod, name ) { 0x##prod, 0, __prodstr_##manuf##prod }, argument
52 #define PRODUCT( manuf, prod, name ) argument
78 if (prod_p->prod == in zorro_name_device()
/kernel/linux/linux-5.10/drivers/net/can/softing/
Dsofting_cs.c30 .manf = 0x0168, .prod = 0x001,
42 .manf = 0x0168, .prod = 0x002,
54 .manf = 0x0168, .prod = 0x004,
66 .manf = 0x0168, .prod = 0x005,
78 .manf = 0x0168, .prod = 0x081,
90 .manf = 0x0168, .prod = 0x084,
102 .manf = 0x0168, .prod = 0x085,
114 .manf = 0x0168, .prod = 0x102,
126 .manf = 0x0168, .prod = 0x105,
151 *softingcs_find_platform_data(unsigned int manf, unsigned int prod) in softingcs_find_platform_data() argument
[all …]
/kernel/linux/linux-5.10/fs/xfs/
Dxfs_rtalloc.c231 xfs_extlen_t prod, /* extent product factor */ in xfs_rtallocate_extent_block() argument
309 if (prod > 1) { in xfs_rtallocate_extent_block()
310 div_u64_rem(bestlen, prod, &p); in xfs_rtallocate_extent_block()
350 xfs_extlen_t prod, /* extent product factor */ in xfs_rtallocate_extent_exact() argument
358 ASSERT(minlen % prod == 0 && maxlen % prod == 0); in xfs_rtallocate_extent_exact()
392 if (prod > 1 && (i = maxlen % prod)) { in xfs_rtallocate_extent_exact()
429 xfs_extlen_t prod, /* extent product factor */ in xfs_rtallocate_extent_near() argument
441 ASSERT(minlen % prod == 0 && maxlen % prod == 0); in xfs_rtallocate_extent_near()
460 rbpp, rsb, prod, &r); in xfs_rtallocate_extent_near()
503 rsb, prod, &r); in xfs_rtallocate_extent_near()
[all …]
/kernel/linux/linux-5.10/drivers/iommu/arm/arm-smmu-v3/
Darm-smmu-v3.c116 u32 space, prod, cons; in queue_has_space() local
118 prod = Q_IDX(q, q->prod); in queue_has_space()
121 if (Q_WRP(q, q->prod) == Q_WRP(q, q->cons)) in queue_has_space()
122 space = (1 << q->max_n_shift) - (prod - cons); in queue_has_space()
124 space = cons - prod; in queue_has_space()
131 return Q_IDX(q, q->prod) == Q_IDX(q, q->cons) && in queue_full()
132 Q_WRP(q, q->prod) != Q_WRP(q, q->cons); in queue_full()
137 return Q_IDX(q, q->prod) == Q_IDX(q, q->cons) && in queue_empty()
138 Q_WRP(q, q->prod) == Q_WRP(q, q->cons); in queue_empty()
141 static bool queue_consumed(struct arm_smmu_ll_queue *q, u32 prod) in queue_consumed() argument
[all …]
/kernel/linux/linux-5.10/net/smc/
Dsmc_cdc.h46 union smc_cdc_cursor prod; member
72 union smcd_cdc_cursor prod; member
216 smc_host_cursor_to_cdc(&peer->prod, &local->prod, save, conn); in smc_host_msg_to_cdc()
249 smc_cdc_cursor_to_host(&local->prod, &peer->prod, conn); in smcr_cdc_msg_to_host()
261 temp.wrap = peer->prod.wrap; in smcd_cdc_msg_to_host()
262 temp.count = peer->prod.count; in smcd_cdc_msg_to_host()
263 smc_curs_copy(&local->prod, &temp, conn); in smcd_cdc_msg_to_host()
Dsmc_tx.c292 union smc_host_cursor *prod, in smc_tx_advance_cursors() argument
296 smc_curs_add(conn->peer_rmbe_size, prod, len); in smc_tx_advance_cursors()
406 union smc_host_cursor sent, prep, prod, cons; in smc_tx_rdma_writes() local
424 smc_curs_copy(&prod, &conn->local_tx_ctrl.prod, conn); in smc_tx_rdma_writes()
434 dst_off = prod.count; in smc_tx_rdma_writes()
435 if (prod.wrap == cons.wrap) { in smc_tx_rdma_writes()
442 conn->peer_rmbe_size - prod.count, len); in smc_tx_rdma_writes()
470 smc_tx_advance_cursors(conn, &prod, &sent, len); in smc_tx_rdma_writes()
472 smc_curs_copy(&conn->local_tx_ctrl.prod, &prod, conn); in smc_tx_rdma_writes()
606 union smc_host_cursor cfed, cons, prod; in smc_tx_consumer_update() local
[all …]
Dsmc_cdc.c95 pend->p_cursor = conn->local_tx_ctrl.prod; in smc_cdc_add_pending_send()
232 curs.acurs.counter = atomic64_read(&conn->local_tx_ctrl.prod.acurs); in smcd_cdc_msg_send()
233 cdc.prod.wrap = curs.wrap; in smcd_cdc_msg_send()
234 cdc.prod.count = curs.count; in smcd_cdc_msg_send()
273 smc_curs_copy(&conn->urg_curs, &conn->local_rx_ctrl.prod, conn); in smc_cdc_handle_urg_data_arrival()
315 smc_curs_copy(&prod_old, &conn->local_rx_ctrl.prod, conn); in smc_cdc_msg_recv_action()
332 &conn->local_rx_ctrl.prod); in smc_cdc_msg_recv_action()
404 smcd_curs_copy(&cdc.prod, &data_cdc->prod, conn); in smcd_cdc_rx_tsklet()
/kernel/linux/linux-5.10/net/9p/
Dtrans_xen.c129 RING_IDX cons, prod; in p9_xen_write_todo() local
132 prod = ring->intf->out_prod; in p9_xen_write_todo()
136 xen_9pfs_queued(prod, cons, XEN_9PFS_RING_SIZE(ring)) >= size; in p9_xen_write_todo()
142 RING_IDX cons, prod, masked_cons, masked_prod; in p9_xen_request() local
167 prod = ring->intf->out_prod; in p9_xen_request()
171 xen_9pfs_queued(prod, cons, XEN_9PFS_RING_SIZE(ring)) < size) { in p9_xen_request()
176 masked_prod = xen_9pfs_mask(prod, XEN_9PFS_RING_SIZE(ring)); in p9_xen_request()
185 prod += size; in p9_xen_request()
186 ring->intf->out_prod = prod; in p9_xen_request()
198 RING_IDX cons, prod, masked_cons, masked_prod; in p9_xen_response() local
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/
Dbnxt_xdp.c30 u16 prod; in bnxt_xmit_bd() local
32 prod = txr->tx_prod; in bnxt_xmit_bd()
33 tx_buf = &txr->tx_buf_ring[prod]; in bnxt_xmit_bd()
35 txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; in bnxt_xmit_bd()
39 txbd->tx_bd_opaque = prod; in bnxt_xmit_bd()
42 prod = NEXT_TX(prod); in bnxt_xmit_bd()
43 txr->tx_prod = prod; in bnxt_xmit_bd()
/kernel/linux/linux-5.10/tools/lib/bpf/
Dxsk.h116 static inline size_t xsk_ring_prod__reserve(struct xsk_ring_prod *prod, in xsk_ring_prod__reserve() argument
119 if (xsk_prod_nb_free(prod, nb) < nb) in xsk_ring_prod__reserve()
122 *idx = prod->cached_prod; in xsk_ring_prod__reserve()
123 prod->cached_prod += nb; in xsk_ring_prod__reserve()
128 static inline void xsk_ring_prod__submit(struct xsk_ring_prod *prod, size_t nb) in xsk_ring_prod__submit() argument
135 *prod->producer += nb; in xsk_ring_prod__submit()
/kernel/linux/linux-5.10/include/xen/interface/io/
Dring.h413 static inline RING_IDX name##_queued(RING_IDX prod, \
419 if (prod == cons) \
422 prod = name##_mask(prod, ring_size); \
425 if (prod == cons) \
428 if (prod > cons) \
429 size = prod - cons; \
431 size = ring_size - (cons - prod); \
/kernel/linux/linux-5.10/Documentation/hwmon/
Dtmp401.rst12 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp401.html
20 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp411.html
28 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp431.html
36 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp432.html
44 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp435.html
Dtmp421.rst12 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
20 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
28 Datasheet: http://focus.ti.com/docs/prod/folders/print/tmp421.html
/kernel/linux/linux-5.10/arch/sparc/kernel/
Dvisemul.c605 u32 prod = src1 * src2; in pmul() local
606 u16 scaled = ((prod & 0x00ffff00) >> 8); in pmul()
609 if (prod & 0x80) in pmul()
630 u32 prod = src1 * src2; in pmul() local
631 u16 scaled = ((prod & 0x00ffff00) >> 8); in pmul()
634 if (prod & 0x80) in pmul()
655 u32 prod; in pmul() local
660 prod = src1 * src2; in pmul()
661 scaled = ((prod & 0x00ffff00) >> 8); in pmul()
664 if (prod & 0x80) in pmul()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/acr/
Dhsfw.c35 kfree(hsfw->sig.prod.data); in nvkm_acr_hsfw_del()
102 hsfw->sig.prod.size = fwhdr->sig_prod_size; in nvkm_acr_hsfw_load_image()
103 hsfw->sig.prod.data = kmemdup(fw->data + fwhdr->sig_prod_offset + sig, in nvkm_acr_hsfw_load_image()
104 hsfw->sig.prod.size, GFP_KERNEL); in nvkm_acr_hsfw_load_image()
105 if (!hsfw->sig.prod.data) { in nvkm_acr_hsfw_load_image()
/kernel/linux/linux-5.10/include/linux/qed/
Dqed_chain.h208 u32 prod = qed_chain_get_prod_idx(chain); in qed_chain_get_elem_used() local
213 if (prod < cons) in qed_chain_get_elem_used()
214 prod += (u32)U16_MAX + 1; in qed_chain_get_elem_used()
216 used = (u16)(prod - cons); in qed_chain_get_elem_used()
218 used -= (u16)(prod / elem_per_page - cons / elem_per_page); in qed_chain_get_elem_used()
230 u64 prod = qed_chain_get_prod_idx_u32(chain); in qed_chain_get_elem_used_u32() local
235 if (prod < cons) in qed_chain_get_elem_used_u32()
236 prod += (u64)U32_MAX + 1; in qed_chain_get_elem_used_u32()
238 used = (u32)(prod - cons); in qed_chain_get_elem_used_u32()
240 used -= (u32)(prod / elem_per_page - cons / elem_per_page); in qed_chain_get_elem_used_u32()
/kernel/linux/linux-5.10/sound/usb/line6/
Dvariax.c180 #define LINE6_DEVICE(prod) USB_DEVICE(0x0e41, prod) argument
181 #define LINE6_IF_NUM(prod, n) USB_DEVICE_INTERFACE_NUMBER(0x0e41, prod, n) argument
/kernel/linux/linux-5.10/drivers/tty/hvc/
Dhvc_xen.c84 XENCONS_RING_IDX cons, prod; in __write_console() local
89 prod = intf->out_prod; in __write_console()
92 if ((prod - cons) > sizeof(intf->out)) { in __write_console()
97 while ((sent < len) && ((prod - cons) < sizeof(intf->out))) in __write_console()
98 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++]; in __write_console()
101 intf->out_prod = prod; in __write_console()
140 XENCONS_RING_IDX cons, prod; in domU_read_console() local
150 prod = intf->in_prod; in domU_read_console()
153 if ((prod - cons) > sizeof(intf->in)) { in domU_read_console()
158 while (cons != prod && recv < len) in domU_read_console()
/kernel/linux/linux-5.10/tools/usb/usbip/libsrc/
Dusbip_common.c281 const char *prod, *vend; in usbip_names_get_product() local
283 prod = names_product(vendor, product); in usbip_names_get_product()
284 if (!prod) in usbip_names_get_product()
285 prod = "unknown product"; in usbip_names_get_product()
292 snprintf(buff, size, "%s : %s (%04x:%04x)", vend, prod, vendor, product); in usbip_names_get_product()
/kernel/linux/linux-5.10/drivers/infiniband/hw/bnxt_re/
Dqplib_res.h75 ((HWQ_CMP(hwq->prod, hwq)\
162 u32 prod; /* raw */ member
338 idx += hwq->prod; in bnxt_qplib_get_prod_qe()
380 hwq->prod = (hwq->prod + cnt) % hwq->depth; in bnxt_qplib_hwq_incr_prod()
421 key |= ((info->hwq->prod / info->max_slot)) & DBC_DBC_INDEX_MASK; in bnxt_qplib_ring_prod_db()
/kernel/linux/linux-5.10/drivers/net/xen-netback/
Drx.c60 RING_IDX prod, cons; in xenvif_rx_ring_slots_available() local
68 prod = queue->rx.sring->req_prod; in xenvif_rx_ring_slots_available()
71 if (prod - cons >= needed) in xenvif_rx_ring_slots_available()
74 queue->rx.sring->req_event = prod + 1; in xenvif_rx_ring_slots_available()
80 } while (queue->rx.sring->req_prod != prod); in xenvif_rx_ring_slots_available()
511 RING_IDX prod, cons; in xenvif_rx_queue_slots() local
513 prod = queue->rx.sring->req_prod; in xenvif_rx_queue_slots()
516 return prod - cons; in xenvif_rx_queue_slots()
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx4/
Den_tx.c190 ring->prod = 0; in mlx4_en_activate_tx_ring()
228 return ring->prod - ring->cons > ring->full_size; in mlx4_en_is_tx_ring_full()
370 ring->cons, ring->prod); in mlx4_en_free_tx_buf()
372 if ((u32) (ring->prod - ring->cons) > ring->size) { in mlx4_en_free_tx_buf()
378 while (ring->cons != ring->prod) { in mlx4_en_free_tx_buf()
929 (u32)(ring->prod - ring_cons - 1)); in mlx4_en_xmit()
932 index = ring->prod & ring->size_mask; in mlx4_en_xmit()
933 bf_index = ring->prod; in mlx4_en_xmit()
1016 ((ring->prod & ring->size) ? in mlx4_en_xmit()
1035 ((ring->prod & ring->size) ? in mlx4_en_xmit()
[all …]

1234567