virtio-blk.h 971 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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

P
Paolo Bonzini 已提交
18
#include "hw/virtio/virtio.h"
19 20 21

typedef struct VirtIOBlockDataPlane VirtIOBlockDataPlane;

22
void virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *conf,
23 24
                                  VirtIOBlockDataPlane **dataplane,
                                  Error **errp);
25
void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane *s);
26
void virtio_blk_data_plane_notify(VirtIOBlockDataPlane *s, VirtQueue *vq);
27

28 29 30
int virtio_blk_data_plane_start(VirtIODevice *vdev);
void virtio_blk_data_plane_stop(VirtIODevice *vdev);

31
#endif /* HW_DATAPLANE_VIRTIO_BLK_H */