Merge remote-tracking branch 'remotes/kraxel/tags/ui-20210311-pull-request' into...
[qemu/ar7.git] / tests / qtest / libqos / virtio-blk.h
blobdcef38851ea141f65c3ca43512268cab7c95ab2d
1 /*
2 * libqos driver framework
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
19 #ifndef TESTS_LIBQOS_VIRTIO_BLK_H
20 #define TESTS_LIBQOS_VIRTIO_BLK_H
22 #include "qgraph.h"
23 #include "virtio.h"
24 #include "virtio-pci.h"
26 typedef struct QVirtioBlk QVirtioBlk;
27 typedef struct QVirtioBlkPCI QVirtioBlkPCI;
28 typedef struct QVirtioBlkDevice QVirtioBlkDevice;
30 /* virtqueue is created in each test */
31 struct QVirtioBlk {
32 QVirtioDevice *vdev;
35 struct QVirtioBlkPCI {
36 QVirtioPCIDevice pci_vdev;
37 QVirtioBlk blk;
40 struct QVirtioBlkDevice {
41 QOSGraphObject obj;
42 QVirtioBlk blk;
45 #endif