/Linux-v5.10/net/rds/ |
D | ib_recv.c | 49 struct rds_ib_recv_work *recv; in rds_ib_recv_init_ring() local 52 for (i = 0, recv = ic->i_recvs; i < ic->i_recv_ring.w_nr; i++, recv++) { in rds_ib_recv_init_ring() 55 recv->r_ibinc = NULL; in rds_ib_recv_init_ring() 56 recv->r_frag = NULL; in rds_ib_recv_init_ring() 58 recv->r_wr.next = NULL; in rds_ib_recv_init_ring() 59 recv->r_wr.wr_id = i; in rds_ib_recv_init_ring() 60 recv->r_wr.sg_list = recv->r_sge; in rds_ib_recv_init_ring() 61 recv->r_wr.num_sge = RDS_IB_RECV_SGE; in rds_ib_recv_init_ring() 63 sge = &recv->r_sge[0]; in rds_ib_recv_init_ring() 68 sge = &recv->r_sge[1]; in rds_ib_recv_init_ring() [all …]
|
/Linux-v5.10/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
D | gt215.c | 54 pmu->recv.message = message; in gt215_pmu_send() 55 pmu->recv.process = process; in gt215_pmu_send() 77 wait_event(pmu->recv.wait, (pmu->recv.process == 0)); in gt215_pmu_send() 78 reply[0] = pmu->recv.data[0]; in gt215_pmu_send() 79 reply[1] = pmu->recv.data[1]; in gt215_pmu_send() 105 pmu->recv.base)); in gt215_pmu_recv() 116 if (pmu->recv.process) { in gt215_pmu_recv() 117 if (process == pmu->recv.process && in gt215_pmu_recv() 118 message == pmu->recv.message) { in gt215_pmu_recv() 119 pmu->recv.data[0] = data0; in gt215_pmu_recv() [all …]
|
D | base.c | 57 struct nvkm_pmu *pmu = container_of(work, typeof(*pmu), recv.work); in nvkm_pmu_recv() 58 return pmu->func->recv(pmu); in nvkm_pmu_recv() 87 flush_work(&pmu->recv.work); in nvkm_pmu_fini() 171 INIT_WORK(&pmu->recv.work, nvkm_pmu_recv); in nvkm_pmu_ctor() 172 init_waitqueue_head(&pmu->recv.wait); in nvkm_pmu_ctor()
|
/Linux-v5.10/sound/soc/sh/ |
D | dma-sh7760.c | 123 int recv = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? 0:1; in camelot_pcm_open() local 129 dmairq = (recv) ? cam->txid + 2 : cam->txid; in camelot_pcm_open() 130 if (recv) { in camelot_pcm_open() 157 int recv = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? 0:1; in camelot_pcm_close() local 160 dmairq = (recv) ? cam->txid + 2 : cam->txid; in camelot_pcm_close() 162 if (recv) in camelot_pcm_close() 179 int recv = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? 0:1; in camelot_hw_params() local 182 if (recv) { in camelot_hw_params() 246 int recv = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? 0:1; in camelot_trigger() local 250 if (recv) in camelot_trigger() [all …]
|
D | ssi.c | 134 unsigned int bits, channels, swl, recv, i; in ssi_hw_params() local 138 recv = (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) ? 0 : 1; in ssi_hw_params() 147 if (!recv) in ssi_hw_params()
|
/Linux-v5.10/tools/testing/selftests/net/ |
D | tls.c | 94 EXPECT_NE(recv(self->cfd, buf, send_len, 0), -1); in TEST_F() 209 EXPECT_EQ(recv(self->cfd, recv_buf, to_send, MSG_WAITALL), to_send); in TEST_F() 213 EXPECT_EQ(recv(self->cfd, buf, st.st_size, MSG_WAITALL), st.st_size); in TEST_F() 245 EXPECT_EQ(recv(self->cfd, buf, test_payload_size, MSG_WAITALL), in chunked_sendfile() 281 EXPECT_NE(recv(self->cfd, recv_mem, send_len, 0), -1); in TEST_F() 293 EXPECT_NE(recv(self->cfd, buf, send_len, 0), -1); in TEST_F() 304 EXPECT_EQ(recv(self->cfd, buf, send_len, MSG_DONTWAIT), -1); in TEST_F() 306 EXPECT_EQ(recv(self->cfd, buf, send_len * 2, MSG_WAITALL), in TEST_F() 318 EXPECT_EQ(recv(self->cfd, buf, send_len, MSG_DONTWAIT), -1); in TEST_F() 336 EXPECT_EQ(recv(self->cfd, buf, send_len, MSG_WAITALL), send_len); in TEST_F() [all …]
|
/Linux-v5.10/drivers/bluetooth/ |
D | hci_h4.c | 101 { H4_RECV_ACL, .recv = hci_recv_frame }, 102 { H4_RECV_SCO, .recv = hci_recv_frame }, 103 { H4_RECV_EVENT, .recv = hci_recv_frame }, 104 { H4_RECV_ISO, .recv = hci_recv_frame }, 138 .recv = h4_recv, 259 (&pkts[i])->recv(hdev, skb); in h4_recv_buf() 267 (&pkts[i])->recv(hdev, skb); in h4_recv_buf()
|
D | h4_recv.h | 17 int (*recv)(struct hci_dev *hdev, struct sk_buff *skb); member 135 (&pkts[i])->recv(hdev, skb); in h4_recv_buf() 140 (&pkts[i])->recv(hdev, skb); in h4_recv_buf()
|
D | hci_mrvl.c | 243 { H4_RECV_ACL, .recv = hci_recv_frame }, 244 { H4_RECV_SCO, .recv = hci_recv_frame }, 245 { H4_RECV_EVENT, .recv = hci_recv_frame }, 246 { HCI_RECV_FW_REQ, .recv = mrvl_recv_fw_req }, 247 { HCI_RECV_CHIP_VER, .recv = mrvl_recv_chip_ver }, 391 .recv = mrvl_recv,
|
D | hci_ath.c | 185 { H4_RECV_ACL, .recv = hci_recv_frame }, 186 { H4_RECV_SCO, .recv = hci_recv_frame }, 187 { H4_RECV_EVENT, .recv = hci_recv_frame }, 255 .recv = ath_recv,
|
D | hci_ll.c | 415 { H4_RECV_ACL, .recv = hci_recv_frame }, 416 { H4_RECV_SCO, .recv = hci_recv_frame }, 417 { H4_RECV_EVENT, .recv = hci_recv_frame }, 418 { LL_RECV_SLEEP_IND, .recv = ll_recv_frame }, 419 { LL_RECV_SLEEP_ACK, .recv = ll_recv_frame }, 420 { LL_RECV_WAKE_IND, .recv = ll_recv_frame }, 421 { LL_RECV_WAKE_ACK, .recv = ll_recv_frame }, 803 .recv = ll_recv,
|
D | hci_ag6xx.c | 96 { H4_RECV_ACL, .recv = hci_recv_frame }, 97 { H4_RECV_SCO, .recv = hci_recv_frame }, 98 { H4_RECV_EVENT, .recv = hci_recv_frame }, 309 .recv = ag6xx_recv,
|
D | hci_nokia.c | 615 { H4_RECV_ACL, .recv = hci_recv_frame }, 616 { H4_RECV_SCO, .recv = hci_recv_frame }, 617 { H4_RECV_EVENT, .recv = hci_recv_frame }, 618 { NOKIA_RECV_ALIVE, .recv = nokia_recv_alive_packet }, 619 { NOKIA_RECV_NEG, .recv = nokia_recv_negotiation_packet }, 620 { NOKIA_RECV_RADIO, .recv = nokia_recv_radio }, 675 .recv = nokia_recv,
|
/Linux-v5.10/drivers/isdn/hardware/mISDN/ |
D | netjet.c | 77 struct tiger_dma recv; member 259 card->recv.dmacur = inl(card->base + NJ_DMA_WRITE_ADR); in mode_tiger() 261 card->recv.idx = (card->recv.dmacur - card->recv.dmastart) >> 2; in mode_tiger() 268 card->recv.idx); in mode_tiger() 342 card->recv.start = card->dma_p + (NJ_DMA_SIZE / 2); in inittiger() 343 card->recv.dmastart = (u32)card->dma + (NJ_DMA_SIZE / 2); in inittiger() 344 card->recv.dmaend = card->recv.dmastart + in inittiger() 346 card->recv.dmairq = card->recv.dmastart + in inittiger() 348 card->recv.size = NJ_DMA_RXSIZE; in inittiger() 353 card->recv.dmastart, card->recv.dmairq, in inittiger() [all …]
|
/Linux-v5.10/drivers/usb/storage/ |
D | karma.c | 39 char *recv; member 115 data->recv, RIO_RECV_LEN, NULL); in rio_karma_send_command() 119 if (data->recv[5] == seq) in rio_karma_send_command() 172 kfree(data->recv); in rio_karma_destructor() 183 data->recv = kmalloc(RIO_RECV_LEN, GFP_NOIO); in rio_karma_init() 184 if (!data->recv) { in rio_karma_init()
|
/Linux-v5.10/net/sunrpc/ |
D | xprtsock.c | 471 if (!transport->recv.copied) { in xs_read_header() 472 if (buf->head[0].iov_len >= transport->recv.offset) in xs_read_header() 474 &transport->recv.xid, in xs_read_header() 475 transport->recv.offset); in xs_read_header() 476 transport->recv.copied = transport->recv.offset; in xs_read_header() 483 return transport->recv.fraghdr & cpu_to_be32(RPC_LAST_STREAM_FRAGMENT); in xs_read_stream_request_done() 504 want = transport->recv.len - transport->recv.offset; in xs_read_stream_request() 507 transport->recv.copied + want, in xs_read_stream_request() 508 transport->recv.copied, in xs_read_stream_request() 510 transport->recv.offset += read; in xs_read_stream_request() [all …]
|
/Linux-v5.10/drivers/infiniband/core/ |
D | mad.c | 1871 struct ib_mad_private *recv, in handle_ib_smi() argument 1875 struct ib_smp *smp = (struct ib_smp *)recv->mad; in handle_ib_smi() 1900 memcpy(response, recv, mad_priv_size(response)); in handle_ib_smi() 1918 static bool generate_unmatched_resp(const struct ib_mad_private *recv, in generate_unmatched_resp() argument 1922 const struct ib_mad_hdr *recv_hdr = (const struct ib_mad_hdr *)recv->mad; in generate_unmatched_resp() 1927 memcpy(response, recv, mad_priv_size(response)); in generate_unmatched_resp() 1942 (struct opa_smp *)recv->mad); in generate_unmatched_resp() 1958 struct ib_mad_private *recv, in handle_opa_smi() argument 1962 struct opa_smp *smp = (struct opa_smp *)recv->mad; in handle_opa_smi() 1989 memcpy(response, recv, mad_priv_size(response)); in handle_opa_smi() [all …]
|
/Linux-v5.10/Documentation/admin-guide/blockdev/drbd/ |
D | node-states-8.dot | 7 Secondary -> Primary [ label = "recv state packet" ] 8 Primary -> Secondary [ label = "recv state packet" ]
|
/Linux-v5.10/drivers/soc/ixp4xx/ |
D | ixp4xx-npe.c | 446 u32 *recv = msg; in npe_recv_message() local 453 recv[cnt++] = __raw_readl(&npe->regs->in_out_fifo); in npe_recv_message() 464 debug_msg(npe, "Received [%08X]\n", recv[0]); in npe_recv_message() 467 debug_msg(npe, "Received [%08X:%08X]\n", recv[0], recv[1]); in npe_recv_message() 485 u32 *send = msg, recv[2]; in npe_send_recv_message() local 489 if ((result = npe_recv_message(npe, recv, what)) != 0) in npe_send_recv_message() 492 if ((recv[0] != send[0]) || (recv[1] != send[1])) { in npe_send_recv_message()
|
/Linux-v5.10/drivers/char/tpm/st33zp24/ |
D | st33zp24.c | 72 tpm_dev->ops->recv(tpm_dev->phy_id, TPM_INT_STATUS, &interrupt, 1); in clear_interruption() 101 tpm_dev->ops->recv(tpm_dev->phy_id, TPM_STS, &data, 1); in st33zp24_status() 116 status = tpm_dev->ops->recv(tpm_dev->phy_id, TPM_ACCESS, &data, 1); in check_locality() 186 status = tpm_dev->ops->recv(tpm_dev->phy_id, TPM_STS + 1, in get_burstcount() 192 status = tpm_dev->ops->recv(tpm_dev->phy_id, TPM_STS + 2, in get_burstcount() 318 ret = tpm_dev->ops->recv(tpm_dev->phy_id, TPM_DATA_FIFO, in recv_data() 495 .recv = st33zp24_recv,
|
/Linux-v5.10/drivers/isdn/mISDN/ |
D | stack.c | 389 dev->teimgr->recv = mISDN_queue_message; in create_stack() 392 dev->D.recv = l1_receive; in create_stack() 397 newst->own.recv = mISDN_queue_message; in create_stack() 434 ch->recv = mISDN_queue_message; in connect_layer1() 475 ch->recv = rq.ch->send; in connect_Bstack() 477 rq.ch->recv = ch->send; in connect_Bstack() 490 ch->recv = rq2.ch->send; in connect_Bstack() 500 rq2.ch->recv = rq.ch->send; in connect_Bstack() 502 rq.ch->recv = rq2.ch->send; in connect_Bstack() 533 ch->recv = mISDN_queue_message; in create_l2entity() [all …]
|
/Linux-v5.10/tools/testing/selftests/pidfd/ |
D | pidfd_getfd_test.c | 68 while ((ret = recv(sk, &buf, sizeof(buf), 0)) > 0) { in __child() 162 ret = recv(sk_pair[0], &self->remote_fd, sizeof(self->remote_fd), 0); in FIXTURE_SETUP() 190 ASSERT_EQ(1, recv(self->sk, &c, 1, 0)); in TEST_F()
|
/Linux-v5.10/Documentation/devicetree/bindings/net/ |
D | hisilicon-hip04-net.txt | 12 channel, recv channel start from channel * number (RX_DESC_NUM) 24 Have 2048 recv channels shared by all ethernet controllers, only if no overlap. 25 Each controller's recv channel start from channel * number (RX_DESC_NUM).
|
/Linux-v5.10/net/nfc/nci/ |
D | uart.c | 379 if (nu->ops.recv(nu, nu->rx_skb) != 0) in nci_uart_default_recv_buf() 398 !nu->ops.recv || !nu->ops.close) in nci_uart_register() 407 if (!nu->ops.recv) in nci_uart_register() 408 nu->ops.recv = nci_uart_default_recv; in nci_uart_register()
|
/Linux-v5.10/Documentation/crypto/ |
D | userspace-if.rst | 63 obtained with the read()/recv() system call family. 79 particular cipher instance. When invoking send/write or recv/read 89 buffer used by the read/recv system call may be one and the same. This 129 With the recv() system call, the application can read the message digest 163 struct cmsghdr data structure. See recv(2) and cmsg(3) for more 165 send/recv system call family. That cmsghdr data structure holds the 186 With the recv() system call, the application can read the result of the 222 struct cmsghdr data structure. See recv(2) and cmsg(3) for more 224 send/recv system call family. That cmsghdr data structure holds the 249 With the recv() system call, the application can read the result of the [all …]
|