2012-11-14 18:39:30 +04:00
|
|
|
/*
|
|
|
|
* Dedicated thread for virtio-blk I/O processing
|
|
|
|
*
|
|
|
|
* Copyright 2012 IBM, Corp.
|
|
|
|
* Copyright 2012 Red Hat, Inc. and/or its affiliates
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HW_DATAPLANE_VIRTIO_BLK_H
|
|
|
|
#define HW_DATAPLANE_VIRTIO_BLK_H
|
|
|
|
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/virtio/virtio.h"
|
2012-11-14 18:39:30 +04:00
|
|
|
|
|
|
|
typedef struct VirtIOBlockDataPlane VirtIOBlockDataPlane;
|
|
|
|
|
2014-10-07 15:59:17 +04:00
|
|
|
void virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *conf,
|
2013-06-07 18:18:50 +04:00
|
|
|
VirtIOBlockDataPlane **dataplane,
|
|
|
|
Error **errp);
|
2012-11-14 18:39:30 +04:00
|
|
|
void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane *s);
|
|
|
|
void virtio_blk_data_plane_start(VirtIOBlockDataPlane *s);
|
|
|
|
void virtio_blk_data_plane_stop(VirtIOBlockDataPlane *s);
|
|
|
|
void virtio_blk_data_plane_drain(VirtIOBlockDataPlane *s);
|
2016-06-21 15:13:12 +03:00
|
|
|
void virtio_blk_data_plane_notify(VirtIOBlockDataPlane *s, VirtQueue *vq);
|
2012-11-14 18:39:30 +04:00
|
|
|
|
|
|
|
#endif /* HW_DATAPLANE_VIRTIO_BLK_H */
|