Merge remote-tracking branch 'quintela/stats.next' into staging
[qemu.git] / hw / virtio-rng.h
blobf42d748eba3a550a1bec0bc9a7911a641162e4c4
1 /*
2 * Virtio RNG Support
4 * Copyright Red Hat, Inc. 2012
5 * Copyright Amit Shah <amit.shah@redhat.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or
8 * (at your option) any later version. See the COPYING file in the
9 * top-level directory.
12 #ifndef _QEMU_VIRTIO_RNG_H
13 #define _QEMU_VIRTIO_RNG_H
15 #include "qemu/rng.h"
16 #include "qemu/rng-random.h"
18 /* The Virtio ID for the virtio rng device */
19 #define VIRTIO_ID_RNG 4
21 struct VirtIORNGConf {
22 RngBackend *rng;
23 uint64_t max_bytes;
24 uint32_t period_ms;
25 RndRandom *default_backend;
28 #endif