/src/sys/dev/pci/ |
virtiovar.h | 221 int virtio_enqueue_prep(struct virtio_softc*, struct virtqueue*, int*);
|
ld_virtio.c | 504 r = virtio_enqueue_prep(vsc, vq, &slot); 610 r = virtio_enqueue_prep(vsc, vq, &slot); 767 r = virtio_enqueue_prep(vsc, vq, &slot); 772 r = virtio_enqueue_prep(vsc, vq, &slot); 917 r = virtio_enqueue_prep(vsc, vq, &slot); 1061 r = virtio_enqueue_prep(vsc, vq, &slot);
|
viornd.c | 103 if (virtio_enqueue_prep(vsc, vq, &slot)) {
|
viomb.c | 305 if (virtio_enqueue_prep(vsc, vq, &slot) != 0) { 411 if (virtio_enqueue_prep(vsc, vq, &slot) != 0) {
|
vioscsi.c | 562 if ((r = virtio_enqueue_prep(vsc, vq, &slot)) != 0) {
|
vio9p.c | 356 error = virtio_enqueue_prep(vsc, vq, &slot); 358 log(LOG_ERR, "%s: virtio_enqueue_prep failed\n",
|
if_vioif.c | 1759 r = virtio_enqueue_prep(vsc, vq, &slot); 2004 r = virtio_enqueue_prep(vsc, vq, &slot); 2384 r = virtio_enqueue_prep(vsc, vq, &slot);
|
viogpu.c | 505 error = virtio_enqueue_prep(vsc, vq, &slot);
|
virtio.c | 1034 * r = virtio_enqueue_prep(sc, vq, &slot); // allocate a slot 1061 virtio_enqueue_prep(struct virtio_softc *sc, struct virtqueue *vq, int *slotp) function in typeref:typename:int
|
/src/sys/dev/virtio/ |
viocon.c | 371 while ((r = virtio_enqueue_prep(vsc, vq, &slot)) == 0) { 452 ret = virtio_enqueue_prep(vsc, vq, &slot);
|