search for: handle_blk

Displaying 4 results from an estimated 4 matches for "handle_blk".

2010 Mar 23
1
[RFC] vhost-blk implementation
...< 8; + int ret = 0; + + if (type & VIRTIO_BLK_T_FLUSH) { + ret = vfs_fsync(file, file->f_path.dentry, 1); + } else if (type & VIRTIO_BLK_T_OUT) { + ret = vfs_writev(file, iov, in, &pos); + } else { + ret = vfs_readv(file, iov, in, &pos); + } + return ret; +} + +static void handle_blk(struct vhost_blk *blk) +{ + struct vhost_virtqueue *vq = &blk->dev.vqs[0]; + unsigned head, out, in; + struct virtio_blk_outhdr hdr; + int r, nvecs; + uint8_t status = 0; + + use_mm(blk->dev.mm); + mutex_lock(&vq->mutex); + + vhost_disable_notify(vq); + + for (;;) { + head = vhost...
2010 Mar 23
1
[RFC] vhost-blk implementation
...< 8; + int ret = 0; + + if (type & VIRTIO_BLK_T_FLUSH) { + ret = vfs_fsync(file, file->f_path.dentry, 1); + } else if (type & VIRTIO_BLK_T_OUT) { + ret = vfs_writev(file, iov, in, &pos); + } else { + ret = vfs_readv(file, iov, in, &pos); + } + return ret; +} + +static void handle_blk(struct vhost_blk *blk) +{ + struct vhost_virtqueue *vq = &blk->dev.vqs[0]; + unsigned head, out, in; + struct virtio_blk_outhdr hdr; + int r, nvecs; + uint8_t status = 0; + + use_mm(blk->dev.mm); + mutex_lock(&vq->mutex); + + vhost_disable_notify(vq); + + for (;;) { + head = vhost...
2010 Apr 07
0
[RFC] vhost-blk implementation (v2)
...t_io(&read_queue); + start_io(&write_queue); +#endif + queue_work(vblk_workqueue, &vbio->work); + } else if (vbio->type & VIRTIO_BLK_T_OUT) { + insert_to_queue(vbio, &write_queue); + } else { + insert_to_queue(vbio, &read_queue); + } + return 0; +} + + +static void handle_blk(struct vhost_blk *blk) +{ + struct vhost_virtqueue *vq = &blk->dev.vqs[0]; + unsigned head, out, in; + struct virtio_blk_outhdr hdr; + int nvecs; + + use_mm(blk->dev.mm); + mutex_lock(&vq->mutex); + + vhost_disable_notify(vq); + + for (;;) { + head = vhost_get_vq_desc(&blk-&gt...
2010 Apr 07
0
[RFC] vhost-blk implementation (v2)
...t_io(&read_queue); + start_io(&write_queue); +#endif + queue_work(vblk_workqueue, &vbio->work); + } else if (vbio->type & VIRTIO_BLK_T_OUT) { + insert_to_queue(vbio, &write_queue); + } else { + insert_to_queue(vbio, &read_queue); + } + return 0; +} + + +static void handle_blk(struct vhost_blk *blk) +{ + struct vhost_virtqueue *vq = &blk->dev.vqs[0]; + unsigned head, out, in; + struct virtio_blk_outhdr hdr; + int nvecs; + + use_mm(blk->dev.mm); + mutex_lock(&vq->mutex); + + vhost_disable_notify(vq); + + for (;;) { + head = vhost_get_vq_desc(&blk-&gt...