/linux-6.6.21/tools/virtio/ |
D | vringh_test.c | 197 struct vringh_iov riov, wiov; in parallel_test() local 219 vringh_iov_init(&riov, in parallel_test() 226 err = vringh_getdesc_user(&vrh, &riov, &wiov, in parallel_test() 254 if (riov.used) { in parallel_test() 255 rlen = vringh_iov_pull_user(&riov, rbuf, in parallel_test() 260 assert(riov.i == riov.used); in parallel_test() 446 struct vringh_iov riov, wiov; in main() local 499 err = vringh_getdesc_user(&vrh, &riov, &wiov, getrange, &head); in main() 520 vringh_iov_init(&riov, host_riov, ARRAY_SIZE(host_riov)); in main() 523 err = vringh_getdesc_user(&vrh, &riov, &wiov, getrange, &head); in main() [all …]
|
/linux-6.6.21/drivers/net/caif/ |
D | caif_virtio.c | 49 struct vringh_kiov riov; member 257 struct vringh_kiov *riov = &cfv->ctx.riov; in cfv_rx_poll() local 266 if (riov->i == riov->used) { in cfv_rx_poll() 276 riov, in cfv_rx_poll() 285 buf = phys_to_virt((unsigned long) riov->iov[riov->i].iov_base); in cfv_rx_poll() 289 riov->iov[riov->i].iov_len); in cfv_rx_poll() 306 ++riov->i; in cfv_rx_poll() 338 cfv->ndev->stats.rx_dropped = riov->used - riov->i; in cfv_rx_poll() 715 vringh_kiov_init(&cfv->ctx.riov, NULL, 0); in cfv_probe() 765 vringh_kiov_cleanup(&cfv->ctx.riov); in cfv_remove()
|
/linux-6.6.21/include/linux/ |
D | vringh.h | 159 struct vringh_iov *riov, 166 ssize_t vringh_iov_pull_user(struct vringh_iov *riov, void *dst, size_t len); 233 struct vringh_kiov *riov, 238 ssize_t vringh_iov_pull_kern(struct vringh_kiov *riov, void *dst, size_t len); 310 struct vringh_kiov *riov, 316 struct vringh_kiov *riov,
|
/linux-6.6.21/drivers/vhost/ |
D | vringh.c | 294 struct vringh_kiov *riov, in __vringh_iov() argument 316 if (WARN_ON(!riov && !wiov)) in __vringh_iov() 319 if (riov) in __vringh_iov() 320 riov->i = riov->used = riov->consumed = 0; in __vringh_iov() 376 iov = riov; in __vringh_iov() 704 struct vringh_iov *riov, in vringh_getdesc_user() argument 742 err = __vringh_iov(vrh, *head, (struct vringh_kiov *)riov, in vringh_getdesc_user() 760 ssize_t vringh_iov_pull_user(struct vringh_iov *riov, void *dst, size_t len) in vringh_iov_pull_user() argument 762 return vringh_iov_xfer(NULL, (struct vringh_kiov *)riov, in vringh_iov_pull_user() 977 struct vringh_kiov *riov, in vringh_getdesc_kern() argument [all …]
|
/linux-6.6.21/tools/testing/selftests/mm/ |
D | memfd_secret.c | 88 struct iovec liov, riov; in try_process_vm_read() local 97 liov.iov_len = riov.iov_len = sizeof(buf); in try_process_vm_read() 99 riov.iov_base = mem; in try_process_vm_read() 101 if (process_vm_readv(getppid(), &liov, 1, &riov, 1, 0) < 0) { in try_process_vm_read()
|
/linux-6.6.21/drivers/vdpa/mlx5/core/ |
D | mlx5_vdpa.h | 62 struct vringh_kiov riov; member
|
/linux-6.6.21/drivers/vdpa/mlx5/net/ |
D | mlx5_vnet.c | 1810 read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->riov, (void *)mac, ETH_ALEN); in handle_ctrl_mac() 1948 read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->riov, (void *)&mq, sizeof(mq)); in handle_ctrl_mq() 1987 read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->riov, &vlan, sizeof(vlan)); in handle_ctrl_vlan() 1998 read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->riov, &vlan, sizeof(vlan)); in handle_ctrl_vlan() 2041 err = vringh_getdesc_iotlb(&cvq->vring, &cvq->riov, &cvq->wiov, &cvq->head, in mlx5_cvq_kick_handler() 2046 read = vringh_iov_pull_iotlb(&cvq->vring, &cvq->riov, &ctrl, sizeof(ctrl)); in mlx5_cvq_kick_handler() 2070 vringh_kiov_cleanup(&cvq->riov); in mlx5_cvq_kick_handler()
|