]> git.proxmox.com Git - mirror_qemu.git/blame - tests/libqos/virtio-blk.h
qdev: add qdev_add_vm_change_state_handler()
[mirror_qemu.git] / tests / libqos / virtio-blk.h
CommitLineData
a3713493
EGE
1/*
2 * libqos driver framework
3 *
4 * Copyright (c) 2018 Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
5 *
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 as published by the Free Software Foundation.
9 *
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.
14 *
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/>
17 */
18
f91005e1
MA
19#ifndef TESTS_LIBQOS_VIRTIO_BLK_H
20#define TESTS_LIBQOS_VIRTIO_BLK_H
21
a3713493
EGE
22#include "libqos/qgraph.h"
23#include "libqos/virtio.h"
24#include "libqos/virtio-pci.h"
25
26typedef struct QVirtioBlk QVirtioBlk;
27typedef struct QVirtioBlkPCI QVirtioBlkPCI;
28typedef struct QVirtioBlkDevice QVirtioBlkDevice;
29
30/* virtqueue is created in each test */
31struct QVirtioBlk {
32 QVirtioDevice *vdev;
33};
34
35struct QVirtioBlkPCI {
36 QVirtioPCIDevice pci_vdev;
37 QVirtioBlk blk;
38};
39
40struct QVirtioBlkDevice {
41 QOSGraphObject obj;
42 QVirtioBlk blk;
43};
f91005e1
MA
44
45#endif