net: tap: using bool instead of bitfield
[qemu.git] / hw / dataplane / virtio-blk.h
blob1e8fdfe4183adf0a8222b0981f3515503a08fccd
1 /*
2 * Dedicated thread for virtio-blk I/O processing
4 * Copyright 2012 IBM, Corp.
5 * Copyright 2012 Red Hat, Inc. and/or its affiliates
7 * Authors:
8 * Stefan Hajnoczi <stefanha@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
15 #ifndef HW_DATAPLANE_VIRTIO_BLK_H
16 #define HW_DATAPLANE_VIRTIO_BLK_H
18 #include "hw/virtio.h"
20 typedef struct VirtIOBlockDataPlane VirtIOBlockDataPlane;
22 bool virtio_blk_data_plane_create(VirtIODevice *vdev, VirtIOBlkConf *blk,
23 VirtIOBlockDataPlane **dataplane);
24 void virtio_blk_data_plane_destroy(VirtIOBlockDataPlane *s);
25 void virtio_blk_data_plane_start(VirtIOBlockDataPlane *s);
26 void virtio_blk_data_plane_stop(VirtIOBlockDataPlane *s);
27 void virtio_blk_data_plane_drain(VirtIOBlockDataPlane *s);
29 #endif /* HW_DATAPLANE_VIRTIO_BLK_H */